Commit 92e32b67 authored by jiaxu.yan's avatar jiaxu.yan

fix: 70587 70588

parent 6b0c5cd7
......@@ -156,6 +156,7 @@ export default {
fileName(newValue) {
this.model.fileName = newValue
this.model.enterpriseName = this.enterpriseName
this.model.taskId = this.$route.query.taskId
},
'dialogManger.dialogEditId'(newValue) {
this.model.fetch(
......@@ -166,9 +167,6 @@ export default {
)
}
},
created() {
this.model.taskId = this.$route.query.taskId
},
methods: {
handleUpdateFile(newValue) {
this.$emit('fileNameUpdate', newValue)
......
......@@ -354,7 +354,11 @@ export default {
{ required: true, message: '请选择审查结果', trigger: 'blur' }
],
fileName: [
{ required: true, message: '请输入文件名称', trigger: 'blur' }
{
required: true,
message: '请输入文件名称',
trigger: ['change']
}
],
catalogue: [
{
......
......@@ -156,6 +156,7 @@ export default {
fileName(newValue) {
this.model.fileName = newValue
this.model.enterpriseName = this.enterpriseName
this.model.taskId = this.$route.query.taskId
},
'dialogManger.dialogEditId'(newValue) {
this.model.fetch(
......@@ -166,9 +167,6 @@ export default {
)
}
},
created() {
this.model.taskId = this.$route.query.taskId
},
methods: {
handleUpdateFile(newValue) {
this.$emit('fileNameUpdate', newValue)
......
......@@ -364,7 +364,11 @@ export default {
{ required: true, message: '请选择审查结果', trigger: 'blur' }
],
fileName: [
{ required: true, message: '请输入文件名称', trigger: 'blur' }
{
required: true,
message: '请输入文件名称',
trigger: ['change']
}
],
catalogue: [
{
......
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