|
@@ -35,6 +35,26 @@
|
|
|
@keyup.enter.native="handleQuery"
|
|
@keyup.enter.native="handleQuery"
|
|
|
/>
|
|
/>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
|
|
+
|
|
|
|
|
+ <el-form-item label="订单号" prop="jhmOrderCode">
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ v-model="queryParams.jhmOrderCode"
|
|
|
|
|
+ placeholder="请输入聚好麦订单号"
|
|
|
|
|
+ clearable
|
|
|
|
|
+ size="small"
|
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
|
+ />
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+
|
|
|
|
|
+ <el-form-item label="快递单号" prop="jhmCourierNumber">
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ v-model="queryParams.jhmCourierNumber"
|
|
|
|
|
+ placeholder="请输入聚好麦快递单号"
|
|
|
|
|
+ clearable
|
|
|
|
|
+ size="small"
|
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
|
+ />
|
|
|
|
|
+ </el-form-item>
|
|
|
<el-form-item label="建档时间">
|
|
<el-form-item label="建档时间">
|
|
|
<el-date-picker
|
|
<el-date-picker
|
|
|
v-model="dateRange"
|
|
v-model="dateRange"
|
|
@@ -363,11 +383,17 @@
|
|
|
</el-tag>
|
|
</el-tag>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column label="阻碍原因" align="center" prop="auditReason">
|
|
|
|
|
|
|
+ <el-table-column
|
|
|
|
|
+ label="阻碍原因"
|
|
|
|
|
+ align="center"
|
|
|
|
|
+ prop="auditReason"
|
|
|
|
|
+ min-width="120"
|
|
|
|
|
+ show-overflow-tooltip
|
|
|
|
|
+ >
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
- <span v-if="scope.row.auditReason" class="text-danger">{{
|
|
|
|
|
- scope.row.auditReason
|
|
|
|
|
- }}</span>
|
|
|
|
|
|
|
+ <span v-if="scope.row.auditReason" class="text-danger">
|
|
|
|
|
+ {{ scope.row.auditReason }}
|
|
|
|
|
+ </span>
|
|
|
<span v-else>{{ scope.row.auditReason }}</span>
|
|
<span v-else>{{ scope.row.auditReason }}</span>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
@@ -423,6 +449,8 @@
|
|
|
<span v-else>-</span>
|
|
<span v-else>-</span>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
|
+ <el-table-column label="聚好麦订单号" align="center" prop="jhmOrderCode" />
|
|
|
|
|
+ <el-table-column label="聚好麦快递单号" align="center" prop="jhmCourierNumber" />
|
|
|
<el-table-column
|
|
<el-table-column
|
|
|
label="操作"
|
|
label="操作"
|
|
|
align="center"
|
|
align="center"
|
|
@@ -487,7 +515,7 @@
|
|
|
icon="el-icon-folder-add"
|
|
icon="el-icon-folder-add"
|
|
|
v-if="
|
|
v-if="
|
|
|
scope.row.myCustomerFlag &&
|
|
scope.row.myCustomerFlag &&
|
|
|
- [0, 5, 6].includes(scope.row.processStatus)
|
|
|
|
|
|
|
+ [0, 5, 6, 7].includes(scope.row.processStatus)
|
|
|
"
|
|
"
|
|
|
@click="handleTemplate(scope.row)"
|
|
@click="handleTemplate(scope.row)"
|
|
|
>完善病例</el-button
|
|
>完善病例</el-button
|
|
@@ -498,7 +526,7 @@
|
|
|
icon="el-icon-folder-add"
|
|
icon="el-icon-folder-add"
|
|
|
v-if="scope.row.myCustomerFlag && scope.row.processStatus == 1"
|
|
v-if="scope.row.myCustomerFlag && scope.row.processStatus == 1"
|
|
|
@click="handlePrescribeData(scope.row)"
|
|
@click="handlePrescribeData(scope.row)"
|
|
|
- >开方</el-button
|
|
|
|
|
|
|
+ >推送开方</el-button
|
|
|
>
|
|
>
|
|
|
<el-button
|
|
<el-button
|
|
|
size="mini"
|
|
size="mini"
|
|
@@ -1793,6 +1821,8 @@ export default {
|
|
|
pageNum: 1,
|
|
pageNum: 1,
|
|
|
pageSize: 10,
|
|
pageSize: 10,
|
|
|
customerName: null,
|
|
customerName: null,
|
|
|
|
|
+ jhmOrderCode: null,
|
|
|
|
|
+ jhmCourierNumber: null,
|
|
|
phone: null,
|
|
phone: null,
|
|
|
companyUserName: null,
|
|
companyUserName: null,
|
|
|
claimStatus: null,
|
|
claimStatus: null,
|
|
@@ -1837,12 +1867,13 @@ export default {
|
|
|
// 【新增】流程状态映射
|
|
// 【新增】流程状态映射
|
|
|
processStatusOptions: [
|
|
processStatusOptions: [
|
|
|
{ value: 0, label: "待完善", type: "info" },
|
|
{ value: 0, label: "待完善", type: "info" },
|
|
|
- { value: 1, label: "待推送开方数据", type: "primary" },
|
|
|
|
|
|
|
+ { value: 1, label: "待推送开方信息", type: "primary" },
|
|
|
{ value: 2, label: "开方中", type: "warning" },
|
|
{ value: 2, label: "开方中", type: "warning" },
|
|
|
{ value: 3, label: "待审核", type: "warning" },
|
|
{ value: 3, label: "待审核", type: "warning" },
|
|
|
{ value: 4, label: "已开方", type: "success" },
|
|
{ value: 4, label: "已开方", type: "success" },
|
|
|
{ value: 5, label: "已拒方", type: "danger" },
|
|
{ value: 5, label: "已拒方", type: "danger" },
|
|
|
{ value: 6, label: "已完成", type: "success" },
|
|
{ value: 6, label: "已完成", type: "success" },
|
|
|
|
|
+ { value: 7, label: "暂不开方", type: "primary" },
|
|
|
],
|
|
],
|
|
|
erpList: [
|
|
erpList: [
|
|
|
{ dictLabel: "聚水潭", dictValue: "1" },
|
|
{ dictLabel: "聚水潭", dictValue: "1" },
|