作者 xiaoqiu

提示退回问题件公司

... ... @@ -8,4 +8,4 @@ VITE_APP_ENV = 'development'
VITE_APP_BASE_API = '/dev-api'
# 开打新的tab的url前缀
VITE_APP_TAB_URL_PREFIX = 'http://192.168.2.152:6512'
VITE_APP_TAB_URL_PREFIX = 'http://bxhd.crgx.net'
... ...
不能预览此文件类型
... ... @@ -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 = () => {
... ...
... ... @@ -336,6 +336,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
... ... @@ -556,6 +559,8 @@ const showFeedback = ref(false);
const transferShow = ref(false);
const transferForm = ref({});
const taskId = ref("");
const issueReturenCompany = ref("");
const IssueForm = ref({
deprecatedReason: "",
});
... ... @@ -743,6 +748,7 @@ const lookReason = async (row) => {
});
IssueForm.value.deprecatedReason = data.message;
showIssue.value = true;
issueReturenCompany.value = row.companyName;
};
// 提交作废,退回,问题件表单
... ...