|
|
@ -46,7 +46,7 @@ |
|
|
<el-table v-loading="loading" :data="list"> |
|
|
<el-table v-loading="loading" :data="list"> |
|
|
<el-table-column :label="$t('page.system.systemLog.czr')" prop="qmrMc" width="200" /> |
|
|
<el-table-column :label="$t('page.system.systemLog.czr')" prop="qmrMc" width="200" /> |
|
|
<el-table-column :label="$t('page.system.systemLog.czlx')" :prop="$i18n.locale === 'zh_CN'?'jcmc':'jcmcEn'" width="200" /> |
|
|
<el-table-column :label="$t('page.system.systemLog.czlx')" :prop="$i18n.locale === 'zh_CN'?'jcmc':'jcmcEn'" width="200" /> |
|
|
<el-table-column :label="$t('page.system.systemLog.czxq')" align="center"> |
|
|
|
|
|
|
|
|
<el-table-column :label="$t('page.system.systemLog.czxq')"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<span>{{initNr(scope.row)}}</span> |
|
|
<span>{{initNr(scope.row)}}</span> |
|
|
</template> |
|
|
</template> |
|
|
@ -122,9 +122,9 @@ export default { |
|
|
_.forEach(list,(o,index)=>{ |
|
|
_.forEach(list,(o,index)=>{ |
|
|
nr+=o.name+':'+o.value+(index===list.length-1?'':';') |
|
|
nr+=o.name+':'+o.value+(index===list.length-1?'':';') |
|
|
}) |
|
|
}) |
|
|
return nr |
|
|
|
|
|
|
|
|
return (row.name || '')+nr+(row.remark?(';'+this.$t('form.remark')+":"+row.remark):'') |
|
|
}else{ |
|
|
}else{ |
|
|
return row.jcnr |
|
|
|
|
|
|
|
|
return (row.name || '')+(row.jcnr || '')+(row.remark?(';'+this.$t('form.remark')+":"+row.remark):'') |
|
|
} |
|
|
} |
|
|
}else{ |
|
|
}else{ |
|
|
if(this.isJSON(row.jcnrEn)){ |
|
|
if(this.isJSON(row.jcnrEn)){ |
|
|
@ -133,9 +133,9 @@ export default { |
|
|
_.forEach(list,(o,index)=>{ |
|
|
_.forEach(list,(o,index)=>{ |
|
|
nr+=o.name+':'+o.value+(index===list.length-1?'':';') |
|
|
nr+=o.name+':'+o.value+(index===list.length-1?'':';') |
|
|
}) |
|
|
}) |
|
|
return nr |
|
|
|
|
|
|
|
|
return (row.name || '')+nr+(row.remark?(';'+this.$t('form.remark')+":"+row.remark):'') |
|
|
}else{ |
|
|
}else{ |
|
|
return row.jcnrEn |
|
|
|
|
|
|
|
|
return (row.name || '')+(row.jcnrEn || '')+(row.remark?(';'+this.$t('form.remark')+":"+row.remark):'') |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
|