'案件详情'

main
石超 1 year ago
parent efe484fbcb
commit 737e32db0c

@ -226,6 +226,7 @@
if(_type == 3){
swal({
title:'确定要关闭该线索吗?',
icon:'warning',
buttons:{
cancel: "取消",
confirm: {
@ -270,7 +271,7 @@
<dt>案件编号:</dt>
<dd>${info.case_no}</dd>
<dt>案件详情:</dt>
<dd>${info.case_name || '无'}</dd>
<dd>${info.case_description || '无'}</dd>
<dt>违规类型:</dt>
<dd>${info.typename || '无'}</dd>
</dl>
@ -443,7 +444,7 @@
shrinkToFit: true,
rowNum: 14,
// rowList: [10, 20, 30],
colNames: ['案件编号', '案件名称', '案件类型', '县', '镇', '判读人', '判读时间', '状态', '操作'],
colNames: ['案件编号', '案件描述', '案件类型', '县', '镇', '判读人', '判读时间', '状态', '操作'],
ondblClickRow: function (rowid, iRow, iCol, e) {
$('#myModal').modal('show')
showModal(rowid)
@ -456,8 +457,8 @@
width: 100,
},
{
name: 'case_name',
index: 'case_name',
name: 'case_description',
index: 'case_description',
align: 'center',
},
{

@ -119,7 +119,7 @@
<dt>案件编号:</dt>
<dd>${info.case_no}</dd>
<dt>案件详情:</dt>
<dd>${info.case_name || '无'}</dd>
<dd>${info.case_description || '无'}</dd>
<dt>违规类型:</dt>
<dd>${info.typename || '无'}</dd>
</dl>
@ -222,13 +222,13 @@
$("#table_list_1").jqGrid({
url: baseURL + '/api/DroneCaseinfo/LoadCaseInfoLists?is_Reviewer=1&is_examine=1',
loadBeforeSend: function (jqXHR) {
jqXHR.setRequestHeader("X-Token",localStorage.getItem('token'));
jqXHR.setRequestHeader("X-Token", localStorage.getItem('token'));
},
jsonReader: {
root: "root",
page: "page",
total: "total",
records: "totalCount"
root: "root",
page: "page",
total: "total",
records: "totalCount"
},
datatype: "json",
height: "100%",
@ -240,7 +240,7 @@
$('#myModal').modal('show')
showModal(rowid)
},
colNames: ['案件编号', '案件名称', '案件类型', '县','镇', '判读人','判读时间', '是否通过','是否审核','操作'],
colNames: ['案件编号','案件描述','案件类型', '县', '镇', '判读人', '判读时间', '是否通过', '是否审核', '操作'],
colModel: [
{
name: 'case_no',
@ -249,10 +249,11 @@
width: 100,
},
{
name: 'case_name',
index: 'case_name',
name: 'case_description',
index: 'case_description',
align: 'center',
},
{
name: 'typename',
index: 'typename',

Loading…
Cancel
Save