作者 xiaoqiu

提示退回问题件公司

@@ -8,4 +8,4 @@ VITE_APP_ENV = 'development' @@ -8,4 +8,4 @@ VITE_APP_ENV = 'development'
8 VITE_APP_BASE_API = '/dev-api' 8 VITE_APP_BASE_API = '/dev-api'
9 9
10 # 开打新的tab的url前缀 10 # 开打新的tab的url前缀
11 -VITE_APP_TAB_URL_PREFIX = 'http://192.168.2.152:6512' 11 +VITE_APP_TAB_URL_PREFIX = 'http://bxhd.crgx.net'
不能预览此文件类型
@@ -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 = () => {
@@ -336,6 +336,9 @@ @@ -336,6 +336,9 @@
336 336
337 <!-- 查询问题件弹出框 --> 337 <!-- 查询问题件弹出框 -->
338 <el-dialog v-model="showIssue" title="保单信息" width="700" append-to-body> 338 <el-dialog v-model="showIssue" title="保单信息" width="700" append-to-body>
  339 + <div style="margin-bottom: 10px">
  340 + <span>问题件退回公司:{{ issueReturenCompany }}</span>
  341 + </div>
339 <el-form :model="IssueForm" ref="policyRef" label-width="100px"> 342 <el-form :model="IssueForm" ref="policyRef" label-width="100px">
340 <el-form-item label="问题件原因" prop="progress"> 343 <el-form-item label="问题件原因" prop="progress">
341 <QuillEditor 344 <QuillEditor
@@ -556,6 +559,8 @@ const showFeedback = ref(false); @@ -556,6 +559,8 @@ const showFeedback = ref(false);
556 const transferShow = ref(false); 559 const transferShow = ref(false);
557 const transferForm = ref({}); 560 const transferForm = ref({});
558 const taskId = ref(""); 561 const taskId = ref("");
  562 +
  563 +const issueReturenCompany = ref("");
559 const IssueForm = ref({ 564 const IssueForm = ref({
560 deprecatedReason: "", 565 deprecatedReason: "",
561 }); 566 });
@@ -743,6 +748,7 @@ const lookReason = async (row) => { @@ -743,6 +748,7 @@ const lookReason = async (row) => {
743 }); 748 });
744 IssueForm.value.deprecatedReason = data.message; 749 IssueForm.value.deprecatedReason = data.message;
745 showIssue.value = true; 750 showIssue.value = true;
  751 + issueReturenCompany.value = row.companyName;
746 }; 752 };
747 753
748 // 提交作废,退回,问题件表单 754 // 提交作废,退回,问题件表单