|
...
|
...
|
@@ -122,6 +122,12 @@ |
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
label="问题件退回公司"
|
|
|
|
prop="companyName"
|
|
|
|
width="150"
|
|
|
|
align="center"
|
|
|
|
/>
|
|
|
|
<el-table-column
|
|
|
|
label="操作"
|
|
|
|
align="center"
|
|
|
|
min-width="280"
|
|
...
|
...
|
@@ -342,6 +348,9 @@ |
|
|
|
|
|
|
|
<!-- 查询问题件弹出框 -->
|
|
|
|
<el-dialog v-model="showIssue" title="保单信息" width="700" append-to-body>
|
|
|
|
<div style="margin-bottom: 10px">
|
|
|
|
<span>问题件退回公司:{{ issueReturenCompany }}</span>
|
|
|
|
</div>
|
|
|
|
<el-form :model="IssueForm" ref="policyRef" label-width="100px">
|
|
|
|
<el-form-item label="问题件原因" prop="progress">
|
|
|
|
<QuillEditor
|
|
...
|
...
|
@@ -555,6 +564,7 @@ import { queryCarType } from "@/api/configurationCenter/carType.js"; |
|
|
|
import { queryCarNature } from "@/api/configurationCenter/carNature.js";
|
|
|
|
import { queryNeed } from "@/api/configurationCenter/need.js";
|
|
|
|
import { listDept } from "@/api/system/dept";
|
|
|
|
import { ref } from "vue";
|
|
|
|
const { proxy } = getCurrentInstance();
|
|
|
|
const loading = ref(false);
|
|
|
|
const activeTitle = ref("");
|
|
...
|
...
|
@@ -571,6 +581,7 @@ const showFeedback = ref(false); |
|
|
|
const transferShow = ref(false);
|
|
|
|
const transferForm = ref({});
|
|
|
|
const taskId = ref("");
|
|
|
|
const issueReturenCompany = ref("");
|
|
|
|
const IssueForm = ref({
|
|
|
|
deprecatedReason: "",
|
|
|
|
});
|
|
...
|
...
|
@@ -745,6 +756,7 @@ const lookReason = async (row) => { |
|
|
|
});
|
|
|
|
IssueForm.value.deprecatedReason = data.message;
|
|
|
|
showIssue.value = true;
|
|
|
|
issueReturenCompany.value = row.companyName;
|
|
|
|
};
|
|
|
|
// 提交作废,退回,问题件表单
|
|
|
|
const sunmitDeprecated = () => {
|
...
|
...
|
|