江蘇農(nóng)發(fā)市場(chǎng)經(jīng)營(yíng)管理有限公司:2011年11月6日,本人高小梅與江蘇農(nóng)發(fā)市場(chǎng)經(jīng)營(yíng)管理有限公司簽訂了江蘇沿海國(guó)際農(nóng)產(chǎn)品交易中心11幢113號(hào)商鋪十年期委托經(jīng)營(yíng)管理合同,2014年11月6日至2021年11月6日,貴公司欠本人高小梅商鋪?zhàn)饨?8174.2元,滯納金27018.48元,合計(jì)85192.68元,請(qǐng)貴公司在2024年12月31日前付清。特此公告!
公告人:高小梅
//處理封面圖,替換video標(biāo)簽中的picpath為poster屬性
var videos = document.getElementsByTagName("video");
for (var i = 0; i < videos.length; i++) {
var picpath = videos[i].getAttribute("picpath");
if (picpath && picpath.indexOf('圖片存儲(chǔ);') > -1) {
picpath = '../../xy/image.do?path=' + picpath;
}
videos[i].poster = picpath;
videos[i].style.width = '400px';
}
// 沒(méi)有地址不顯示pdf
var pdfDom = document.getElementById("pdf-d");
var pdfUrl = pdfDom.getAttribute('href')
if(!pdfUrl){
pdfDom.style.display = "none";
}
// 處理文件名
window.addEventListener('DOMContentLoaded', (event) => {
const link = document.getElementById('pdf-d');
const url = link.href; // 獲取href屬性的值
const fileName = url.substring(url.length - 16); // 取URL最后16個(gè)字符作為文件名
link.setAttribute('download', fileName); // 設(shè)置download屬性
});
// 處理新圖說(shuō)
setTimeout(function () {
// 處理新圖說(shuō)
var picture = document.querySelectorAll('.picture-illustrating');
var originalTitleElement = '';
for (var i = 0; i < picture.length; i++) {
var originalTitle = picture[i].getAttribute("data-original-title");
if (originalTitle) {
picture[i].style.marginBottom = '';
originalTitleElement = document.createElement("div");
originalTitleElement.className = 'picture-illustrating-content';
var eleParent = picture[i].parentNode;
if (eleParent.tagName != 'P') eleParent = eleParent.parentNode;
if (eleParent.querySelectorAll('.picture-illustrating-content').length) break;
originalTitleElement.innerHTML = originalTitle;
eleParent.appendChild(originalTitleElement);
}
}
}, 300);