fix:会议后台接口提交

pg_adapter
wangxy 8 months ago
parent 2a2ef88116
commit 8fac5179cd

@ -93,7 +93,7 @@
align: 'center', align: 'center',
formatter: function(value, row, index) { formatter: function(value, row, index) {
var actions = []; var actions = [];
if (row.destoryState || row.destoryState===null){ if (row.destoryState===null){
actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.id + '\')"><i class="fa fa-edit"></i>变更</a> '); actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.id + '\')"><i class="fa fa-edit"></i>变更</a> ');
actions.push('<a class="btn btn-danger btn-xs ' + destoryFlag + '" href="javascript:void(0)" onclick="destory(\'' + row.id + '\')"><i class="fa fa-remove"></i>报废</a>'); actions.push('<a class="btn btn-danger btn-xs ' + destoryFlag + '" href="javascript:void(0)" onclick="destory(\'' + row.id + '\')"><i class="fa fa-remove"></i>报废</a>');
}else{ }else{

@ -47,7 +47,7 @@
var destoryFlag = [[${@permission.hasPermi('system:destoryproperty:destory')}]]; var destoryFlag = [[${@permission.hasPermi('system:destoryproperty:destory')}]];
var removeFlag = [[${@permission.hasPermi('system:destoryproperty:remove')}]]; var removeFlag = [[${@permission.hasPermi('system:destoryproperty:remove')}]];
var propertyTypeDatas = [[${@dict.getType('sys_sm_property')}]]; var propertyTypeDatas = [[${@dict.getType('sys_sm_property')}]];
var destoryTypeDatas = [[${@dict.getType('sys_baofei_type')}]]; var destoryTypeDatas = [[${@dict.getType('sys_property_destory')}]];
var prefix = ctx + "system/propertyDestory"; var prefix = ctx + "system/propertyDestory";
$(function() { $(function() {
@ -82,8 +82,8 @@
title: '资产SN码' title: '资产SN码'
}, },
{ {
field: 'destoryType', field: 'destoryState',
title: '报废状态', title: '销毁状态',
formatter: function(value, row, index) { formatter: function(value, row, index) {
return $.table.selectDictLabel(destoryTypeDatas, value); return $.table.selectDictLabel(destoryTypeDatas, value);
} }

Loading…
Cancel
Save