方城縣人民政府網站
| |
|
| |
|
| | | | |
| | | |
|
| | |
|
|
|
|
|
|
使用說明
1、標題、內容長度不能小于2個字節
2、按受理號查詢為精確查詢,必須輸入完整的受理號
|
當年收到信件: 126 件 辦結信件: 124 件 辦結率: 99%
|
';
//htmls = htmls + '
回復時間:' + ((data.data.result_content)?(data.data.result_time):'')+'
';
var index = layer.open({
type: 1,
area: ['800px', '600px'],
fix: false, //不固定
maxmin: true,
shade: 0.4,
title: mstitle,
content: htmls
});
//layer.full(index);
}
function toast1(content) {
tzAlert.open({
width:'600px',
center: false,
title: {
html: '內容詳情'
},
tips: {
html: ''
},
maskClose: true,
mask: {
use: true,
background: 'rgba(0,0,0,.6)'
},
copy: {
use: false,
onlyText: true, // 是否僅復制文本,否則會復制dom元素
useTips: true,
isDbClick: true // 雙擊
},
cancel: {
use: false,
},
content: {
html: content
},
onMounted: function () {
console.log(5555)
console.log($('.d-container').parent('.alert-content'))
$('.d-container').parent('.alert-content').addClass('rrr')
}
});
}
function getWzInfo(id){
$.ajax({
type: 'get',
url: '/get_wzinfo/',
//contentType: 'application/json; charset=utf-8',
dataType: 'json',
data: {
id:id
},
success: function (data) {
if (data.code == 1) {
var html = ''
html = html + '
標題:' + data.data.title+'
';
html = html + '
內容:' + data.data.content+'
';
html = html + '
回復:' + ((data.data.result_content)?(data.data.result_content):'暫無回復')+'
';
html = html + '
回復時間:' + ((data.data.result_content)?(data.data.result_time):'')+'
';
//增加成功
toast1(html)
// console.log($('.d-container').find('.alert-content'))
// set
} else if (data.code == 0) {
alert(data.msg);
}
},
error: function (data) {
alert(data.msg);
}
});
}