待提交,和审核通过单窗更新数据后给出更新提示

This commit is contained in:
wulin 2020-08-26 16:31:24 +08:00
parent 02a59e9885
commit be11d45587

View File

@ -21,7 +21,7 @@
<span slot="footer" class="dialog-footer">
<el-button type="primary" v-if="auth.approvelCommit === 1 && status !== 5 " @click="commitRecord(2)">通过</el-button>
<el-button type="primary" v-if="auth.waitCommit===1 && status !== 5 " @click="commitRecord(3)">提交</el-button>
<el-button type="primary" v-if="auth.waitCommit===1 && status !== 5 " @click="commitRecord(3)">提交</el-button>
<el-button type="primary" v-if="status === 5 && auth.reject == 1" @click="commitRecord(5)">驳回</el-button>
</span>
</el-dialog>
@ -103,6 +103,7 @@ export default {
}).then(data => {
if (data && data.code === 0) {
this.$emit('refreshDataList', this.recordResultId)
this.alertInfo('更新成功')
} else {
this.alertInfo(data.msg)
}