【修改】修改名称
This commit is contained in:
@@ -49,7 +49,7 @@
|
||||
prop="approvalOpinion"
|
||||
align="center"
|
||||
show-overflow-tooltip
|
||||
label="审批意见">
|
||||
label="审核意见">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
show-overflow-tooltip
|
||||
|
||||
@@ -22,10 +22,10 @@
|
||||
<el-row :gutter="24">
|
||||
<el-col :span="24">
|
||||
<el-form-item :prop="!formdisableflag?'approvalOpinion':''" label-width="132px" class="add-form-item">
|
||||
<template slot="label">审批意见:</template>
|
||||
<template slot="label">审核意见:</template>
|
||||
<el-input :disabled="formdisableflag" :maxlength='1000'
|
||||
v-model="examineForm.approvalOpinion"
|
||||
placeholder="请输入审批意见"
|
||||
placeholder="请输入审核意见"
|
||||
:autosize="{ minRows: 2, maxRows: 4}"
|
||||
type="textarea"
|
||||
/>
|
||||
@@ -118,7 +118,7 @@ export default {
|
||||
{ required: true, message: '审核结果不能为空', trigger: 'change' }
|
||||
],
|
||||
approvalOpinion: [
|
||||
{ type: 'string', max: 500, message: '审批意见不能超过500个字符', trigger: 'blur' }
|
||||
{ type: 'string', max: 500, message: '审核意见不能超过500个字符', trigger: 'blur' }
|
||||
]
|
||||
},
|
||||
formdisableflag: false
|
||||
@@ -134,6 +134,10 @@ export default {
|
||||
},
|
||||
methods: {
|
||||
handleTransfer(){
|
||||
if(this.examineForm.approvalOpinion==''){
|
||||
this.$message.warning("请您填写审核意见")
|
||||
return
|
||||
}
|
||||
this.$emit('handleTransfer')
|
||||
},
|
||||
handleSubmit(type) {
|
||||
@@ -141,7 +145,7 @@ export default {
|
||||
// 校验原因是否填写
|
||||
this.examineForm.flag=2
|
||||
if(this.examineForm.approvalOpinion==''){
|
||||
this.$message.warning("请您填写原因")
|
||||
this.$message.warning("请您填写审核意见")
|
||||
return
|
||||
}
|
||||
}else{
|
||||
|
||||
@@ -22,10 +22,10 @@
|
||||
<el-row :gutter="24">
|
||||
<el-col :span="24">
|
||||
<el-form-item :prop="!formdisableflag?'approvalOpinion':''" label-width="132px" class="add-form-item">
|
||||
<template slot="label">审批意见:</template>
|
||||
<template slot="label">审核意见:</template>
|
||||
<el-input :disabled="formdisableflag" :maxlength='1000'
|
||||
v-model="examineForm.approvalOpinion"
|
||||
placeholder="请输入审批意见"
|
||||
placeholder="请输入审核意见"
|
||||
:autosize="{ minRows: 2, maxRows: 4}"
|
||||
type="textarea"
|
||||
/>
|
||||
@@ -118,7 +118,7 @@ export default {
|
||||
{ required: true, message: '审核结果不能为空', trigger: 'change' }
|
||||
],
|
||||
approvalOpinion: [
|
||||
{ type: 'string', max: 500, message: '审批意见不能超过500个字符', trigger: 'blur' }
|
||||
{ type: 'string', max: 500, message: '审核意见不能超过500个字符', trigger: 'blur' }
|
||||
]
|
||||
},
|
||||
formdisableflag: false
|
||||
@@ -134,7 +134,10 @@ export default {
|
||||
},
|
||||
methods: {
|
||||
handleTransfer(){
|
||||
|
||||
if(this.examineForm.approvalOpinion==''){
|
||||
this.$message.warning("请您填写审核意见")
|
||||
return
|
||||
}
|
||||
this.$emit('handleTransfer')
|
||||
},
|
||||
handleSubmit(type) {
|
||||
@@ -143,7 +146,7 @@ export default {
|
||||
// 校验原因是否填写
|
||||
this.examineForm.flag=2
|
||||
if(this.examineForm.approvalOpinion==''){
|
||||
this.$message.warning("请您填写原因")
|
||||
this.$message.warning("请您填写审核意见")
|
||||
return
|
||||
}
|
||||
}else{
|
||||
|
||||
@@ -62,7 +62,7 @@
|
||||
</template>
|
||||
</vxe-column>
|
||||
<vxe-column show-overflow show-header-overflow field="approvalOpinion"
|
||||
title="审批意见"></vxe-column>
|
||||
title="审核意见"></vxe-column>
|
||||
<vxe-column show-overflow show-header-overflow field="status"
|
||||
title="状态">
|
||||
<template #default="{ row }">
|
||||
|
||||
Reference in New Issue
Block a user