Commit 1e97ecee authored by jiaxu.yan's avatar jiaxu.yan

fix: 70476 70473

parent 3c13eafc
......@@ -409,14 +409,14 @@ export default {
},
/* 返回跳转*/
goToProcessedReview() {
if (!this.ruleForm.enterpriseLeader) {
this.$message.error('请车企负责人签字')
return
}
if (!this.ruleForm.inspectionLeader) {
this.$message.error('请检验负责人签字')
return
}
// if (!this.ruleForm.enterpriseLeader) {
// this.$message.error('请车企负责人签字')
// return
// }
// if (!this.ruleForm.inspectionLeader) {
// this.$message.error('请检验负责人签字')
// return
// }
this.ruleForm.taskId = this.taskId
const formData = {
imagesUrl: [
......
......@@ -620,7 +620,7 @@ export default {
this.handleCircle(0)
}
this.oldForm = this.form
this.$modal.msgSuccess('提交表单成功')
this.$modal.msgSuccess('保存当前条目成功')
} else {
this.$modal.msgError(res.msg)
}
......@@ -638,9 +638,7 @@ export default {
carReviewTaskConfirm({
taskId: this.taskId
}).then(res => {
this.$router.push({
path: '/processing/carReview/vehicle-type?id' + this.taskId
})
this.$router.go(-1)
})
},
confirmDetailChange() {
......
......@@ -65,6 +65,7 @@
</el-table-column>
<el-table-column
label="所属车企"
sortable
min-width="210"
prop="enterpriseName"
align="left"
......@@ -162,7 +163,6 @@
>
<template slot-scope="scope">
<page-button
v-hasPermi="['setting:standard:update']"
style="margin: 0 auto"
icon="edit"
title="修改"
......
......@@ -348,14 +348,14 @@ export default {
},
/* 返回跳转*/
goToProcessedReview() {
if (!this.ruleForm.enterpriseLeader) {
this.$message.error('请车企负责人签字')
return
}
if (!this.ruleForm.inspectionLeader) {
this.$message.error('请检验负责人签字')
return
}
// if (!this.ruleForm.enterpriseLeader) {
// this.$message.error('请车企负责人签字')
// return
// }
// if (!this.ruleForm.inspectionLeader) {
// this.$message.error('请检验负责人签字')
// return
// }
this.ruleForm.taskId = this.taskId
const formData = {
imagesUrl: [
......
......@@ -630,7 +630,7 @@ export default {
this.handleCircle(0)
}
this.oldForm = this.form
this.$modal.msgSuccess('提交表单成功')
this.$modal.msgSuccess('保存当前条目成功')
} else {
this.$modal.msgError(res.msg)
}
......
......@@ -150,18 +150,13 @@
:underline="false"
@click="
handleSystemReviewTestContent(
item.reviewStatus,
'NEW',
item.systemReviewTaskId,
item.id
)
"
>
{{
getDictData(
dict.type.system_review_test_btn,
item.reviewStatus
)
}}
{{ getDictData(dict.type.system_review_test_btn, 'NEW') }}
</el-link>
<br />
</div>
......@@ -174,18 +169,13 @@
:underline="false"
@click="
handleCarTypeReviewTaskContent(
item.carReviewStatus,
'NEW',
item.carReviewTaskId,
item.id
)
"
>
{{
getDictData(
dict.type.test_cartype_type_btn,
item.carReviewStatus
)
}}
{{ getDictData(dict.type.test_cartype_type_btn, 'NEW') }}
</el-link>
</div>
<div
......@@ -195,16 +185,9 @@
<el-link
type="primary"
:underline="false"
@click="
handleCarTypeTestTaskContent(item.carTestStatus, item.id)
"
@click="handleCarTypeTestTaskContent('NEW', item.id)"
>
{{
getDictData(
dict.type.test_cartype_task_btn,
item.carTestStatus
)
}}
{{ getDictData(dict.type.test_cartype_task_btn, 'NEW') }}
</el-link>
</div>
</div>
......
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