修改
This commit is contained in:
parent
9476e080c7
commit
46c94d2766
@ -36,6 +36,16 @@
|
||||
></el-option>
|
||||
</el-select>
|
||||
</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-input
|
||||
v-model="queryParams.patientName"
|
||||
@ -86,7 +96,6 @@
|
||||
icon="el-icon-edit"
|
||||
v-if="scope.row.orderType=='COMPANION_IN_HOSPITAL'"
|
||||
@click="seeedit(scope.row)"
|
||||
v-hasPermi="['system:appointmentOrder:query']"
|
||||
>编辑</el-button>
|
||||
<el-button
|
||||
size="mini"
|
||||
@ -94,7 +103,6 @@
|
||||
icon="el-icon-zoom-in"
|
||||
v-if="scope.row.orderType!='COMPANION_IN_HOSPITAL'"
|
||||
@click="seeLook(scope.row)"
|
||||
v-hasPermi="['system:appointmentOrder:query']"
|
||||
>查看</el-button>
|
||||
<el-button
|
||||
size="mini"
|
||||
@ -386,7 +394,7 @@
|
||||
</div>
|
||||
</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-item label="姓名" prop="caregiverName">
|
||||
<input
|
||||
@ -640,7 +648,8 @@ export default {
|
||||
// orderStatus: null,
|
||||
orderStatus: "",
|
||||
pageNum: 1,
|
||||
pageSize: 10
|
||||
pageSize: 10,
|
||||
orderType: null
|
||||
},
|
||||
querynursePersonname: {
|
||||
orderNo: "",
|
||||
@ -654,7 +663,17 @@ export default {
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {}
|
||||
rules: {},
|
||||
ordertypelist: [
|
||||
{
|
||||
value: "COMPANION_IN_HOSPITAL",
|
||||
label: "陪诊陪护"
|
||||
},
|
||||
{
|
||||
value: "OTHER",
|
||||
label: "其它"
|
||||
}
|
||||
]
|
||||
};
|
||||
},
|
||||
created() {
|
||||
@ -965,6 +984,7 @@ export default {
|
||||
resetQuery() {
|
||||
if (this.nurseStationlist[0]) {
|
||||
this.queryParams.pageNum = 1;
|
||||
this.queryParams.orderType = null;
|
||||
this.queryParams.pageSize = 10;
|
||||
this.queryParams.patientName = null;
|
||||
this.queryParams.orderNo = null;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user