修改
This commit is contained in:
parent
9476e080c7
commit
46c94d2766
@ -36,6 +36,16 @@
|
|||||||
></el-option>
|
></el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item label="订单类型" prop="orderStatus">
|
||||||
|
<el-select v-model="queryParams.orderType" placeholder="请选择订单状态">
|
||||||
|
<el-option
|
||||||
|
v-for="item in ordertypelist"
|
||||||
|
:key="item.value"
|
||||||
|
:label="item.label"
|
||||||
|
:value="item.value"
|
||||||
|
></el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
<el-form-item label="会员名称" prop="patientName">
|
<el-form-item label="会员名称" prop="patientName">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="queryParams.patientName"
|
v-model="queryParams.patientName"
|
||||||
@ -86,7 +96,6 @@
|
|||||||
icon="el-icon-edit"
|
icon="el-icon-edit"
|
||||||
v-if="scope.row.orderType=='COMPANION_IN_HOSPITAL'"
|
v-if="scope.row.orderType=='COMPANION_IN_HOSPITAL'"
|
||||||
@click="seeedit(scope.row)"
|
@click="seeedit(scope.row)"
|
||||||
v-hasPermi="['system:appointmentOrder:query']"
|
|
||||||
>编辑</el-button>
|
>编辑</el-button>
|
||||||
<el-button
|
<el-button
|
||||||
size="mini"
|
size="mini"
|
||||||
@ -94,7 +103,6 @@
|
|||||||
icon="el-icon-zoom-in"
|
icon="el-icon-zoom-in"
|
||||||
v-if="scope.row.orderType!='COMPANION_IN_HOSPITAL'"
|
v-if="scope.row.orderType!='COMPANION_IN_HOSPITAL'"
|
||||||
@click="seeLook(scope.row)"
|
@click="seeLook(scope.row)"
|
||||||
v-hasPermi="['system:appointmentOrder:query']"
|
|
||||||
>查看</el-button>
|
>查看</el-button>
|
||||||
<el-button
|
<el-button
|
||||||
size="mini"
|
size="mini"
|
||||||
@ -386,7 +394,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
<!-- 编辑弹框 -->
|
<!-- 编辑弹框 -->
|
||||||
<el-dialog title="查看预约订单信息" :visible.sync="editinnerVisible" append-to-body width="1280px">
|
<el-dialog title="院内陪护订单信息" :visible.sync="editinnerVisible" append-to-body width="1280px">
|
||||||
<el-form :inline="true" ref="form" :model="query" :rules="rules" label-width="130px">
|
<el-form :inline="true" ref="form" :model="query" :rules="rules" label-width="130px">
|
||||||
<el-form-item label="姓名" prop="caregiverName">
|
<el-form-item label="姓名" prop="caregiverName">
|
||||||
<input
|
<input
|
||||||
@ -640,7 +648,8 @@ export default {
|
|||||||
// orderStatus: null,
|
// orderStatus: null,
|
||||||
orderStatus: "",
|
orderStatus: "",
|
||||||
pageNum: 1,
|
pageNum: 1,
|
||||||
pageSize: 10
|
pageSize: 10,
|
||||||
|
orderType: null
|
||||||
},
|
},
|
||||||
querynursePersonname: {
|
querynursePersonname: {
|
||||||
orderNo: "",
|
orderNo: "",
|
||||||
@ -654,7 +663,17 @@ export default {
|
|||||||
// 表单参数
|
// 表单参数
|
||||||
form: {},
|
form: {},
|
||||||
// 表单校验
|
// 表单校验
|
||||||
rules: {}
|
rules: {},
|
||||||
|
ordertypelist: [
|
||||||
|
{
|
||||||
|
value: "COMPANION_IN_HOSPITAL",
|
||||||
|
label: "陪诊陪护"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: "OTHER",
|
||||||
|
label: "其它"
|
||||||
|
}
|
||||||
|
]
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
@ -965,6 +984,7 @@ export default {
|
|||||||
resetQuery() {
|
resetQuery() {
|
||||||
if (this.nurseStationlist[0]) {
|
if (this.nurseStationlist[0]) {
|
||||||
this.queryParams.pageNum = 1;
|
this.queryParams.pageNum = 1;
|
||||||
|
this.queryParams.orderType = null;
|
||||||
this.queryParams.pageSize = 10;
|
this.queryParams.pageSize = 10;
|
||||||
this.queryParams.patientName = null;
|
this.queryParams.patientName = null;
|
||||||
this.queryParams.orderNo = null;
|
this.queryParams.orderNo = null;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user