Commit 39658774 authored by 罗林杰's avatar 罗林杰

修改人工驳回

parent eb174f5f
...@@ -118,7 +118,7 @@ ...@@ -118,7 +118,7 @@
</el-table-column> </el-table-column>
<el-table-column label="权重" prop="weight" :show-overflow-tooltip="true" min-width="55"> <el-table-column label="权重" prop="weight" :show-overflow-tooltip="true" min-width="55">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.weight || '-' }} {{ scope.row.weight ? scope.row.weight : '0' }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column align="center" prop="publishStatus" label="发布状态" min-width="80" show-overflow-tooltip> <el-table-column align="center" prop="publishStatus" label="发布状态" min-width="80" show-overflow-tooltip>
......
...@@ -572,10 +572,12 @@ export default { ...@@ -572,10 +572,12 @@ export default {
type: 'warning' type: 'warning'
}) })
} }
let remarksObj = ''
remarksObj = '[{ \"msg\": "' + this.form.remarks + '" }]'
const form = { const form = {
businessId: this.form.businessId, businessId: this.form.businessId,
examStatus: row, examStatus: row,
remarks: this.form.remarks remarks: remarksObj
} }
updateOpmArticle(form).then(response => { updateOpmArticle(form).then(response => {
this.msgSuccess('操作成功') this.msgSuccess('操作成功')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment