|
@@ -122,6 +122,12 @@ |
|
@@ -122,6 +122,12 @@ |
|
122
|
</template>
|
122
|
</template>
|
|
123
|
</el-table-column>
|
123
|
</el-table-column>
|
|
124
|
<el-table-column
|
124
|
<el-table-column
|
|
|
|
125
|
+ label="问题件退回公司"
|
|
|
|
126
|
+ prop="companyName"
|
|
|
|
127
|
+ width="150"
|
|
|
|
128
|
+ align="center"
|
|
|
|
129
|
+ />
|
|
|
|
130
|
+ <el-table-column
|
|
125
|
label="操作"
|
131
|
label="操作"
|
|
126
|
align="center"
|
132
|
align="center"
|
|
127
|
min-width="280"
|
133
|
min-width="280"
|
|
@@ -342,6 +348,9 @@ |
|
@@ -342,6 +348,9 @@ |
|
342
|
|
348
|
|
|
343
|
<!-- 查询问题件弹出框 -->
|
349
|
<!-- 查询问题件弹出框 -->
|
|
344
|
<el-dialog v-model="showIssue" title="保单信息" width="700" append-to-body>
|
350
|
<el-dialog v-model="showIssue" title="保单信息" width="700" append-to-body>
|
|
|
|
351
|
+ <div style="margin-bottom: 10px">
|
|
|
|
352
|
+ <span>问题件退回公司:{{ issueReturenCompany }}</span>
|
|
|
|
353
|
+ </div>
|
|
345
|
<el-form :model="IssueForm" ref="policyRef" label-width="100px">
|
354
|
<el-form :model="IssueForm" ref="policyRef" label-width="100px">
|
|
346
|
<el-form-item label="问题件原因" prop="progress">
|
355
|
<el-form-item label="问题件原因" prop="progress">
|
|
347
|
<QuillEditor
|
356
|
<QuillEditor
|
|
@@ -555,6 +564,7 @@ import { queryCarType } from "@/api/configurationCenter/carType.js"; |
|
@@ -555,6 +564,7 @@ import { queryCarType } from "@/api/configurationCenter/carType.js"; |
|
555
|
import { queryCarNature } from "@/api/configurationCenter/carNature.js";
|
564
|
import { queryCarNature } from "@/api/configurationCenter/carNature.js";
|
|
556
|
import { queryNeed } from "@/api/configurationCenter/need.js";
|
565
|
import { queryNeed } from "@/api/configurationCenter/need.js";
|
|
557
|
import { listDept } from "@/api/system/dept";
|
566
|
import { listDept } from "@/api/system/dept";
|
|
|
|
567
|
+import { ref } from "vue";
|
|
558
|
const { proxy } = getCurrentInstance();
|
568
|
const { proxy } = getCurrentInstance();
|
|
559
|
const loading = ref(false);
|
569
|
const loading = ref(false);
|
|
560
|
const activeTitle = ref("");
|
570
|
const activeTitle = ref("");
|
|
@@ -571,6 +581,7 @@ const showFeedback = ref(false); |
|
@@ -571,6 +581,7 @@ const showFeedback = ref(false); |
|
571
|
const transferShow = ref(false);
|
581
|
const transferShow = ref(false);
|
|
572
|
const transferForm = ref({});
|
582
|
const transferForm = ref({});
|
|
573
|
const taskId = ref("");
|
583
|
const taskId = ref("");
|
|
|
|
584
|
+const issueReturenCompany = ref("");
|
|
574
|
const IssueForm = ref({
|
585
|
const IssueForm = ref({
|
|
575
|
deprecatedReason: "",
|
586
|
deprecatedReason: "",
|
|
576
|
});
|
587
|
});
|
|
@@ -745,6 +756,7 @@ const lookReason = async (row) => { |
|
@@ -745,6 +756,7 @@ const lookReason = async (row) => { |
|
745
|
});
|
756
|
});
|
|
746
|
IssueForm.value.deprecatedReason = data.message;
|
757
|
IssueForm.value.deprecatedReason = data.message;
|
|
747
|
showIssue.value = true;
|
758
|
showIssue.value = true;
|
|
|
|
759
|
+ issueReturenCompany.value = row.companyName;
|
|
748
|
};
|
760
|
};
|
|
749
|
// 提交作废,退回,问题件表单
|
761
|
// 提交作废,退回,问题件表单
|
|
750
|
const sunmitDeprecated = () => {
|
762
|
const sunmitDeprecated = () => {
|