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

fix: 70476 70473

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