This commit is contained in:
曹辉 2022-11-08 09:21:06 +08:00
parent dc0522440f
commit 59c3e67084

View File

@ -370,18 +370,17 @@
<template slot-scope="scope"> <template slot-scope="scope">
<el-input <el-input
v-model="scope.row.serveDurationUnit" v-model="scope.row.serveDurationUnit"
maxlength="50" maxlength="6"
></el-input> ></el-input>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column property="price" label="价格" align="center"> <el-table-column property="price" label="价格" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<el-input <el-input
v-model="scope.row.price" v-model="scope.row.price"
placeholder="小数点后两位" placeholder="小数点后两位"
type="number" type="number"
oninput="if(value.indexOf('.')>0){value=value.slice(0,value.indexOf('.')+3)} if(value.length>10){value=value.slice(0,10)}" oninput="if(value.indexOf('.')>0){value=value.slice(0,value.indexOf('.')+3)} if(value.length>6){value=value.slice(0,6)}"
></el-input> ></el-input>
</template> </template>
</el-table-column> </el-table-column>
@ -495,19 +494,19 @@
> >
<el-form <el-form
ref="form" ref="form"
:model="nurseStationqueryParams" :model="getListByUserquery"
label-width="110px" label-width="110px"
:inline="true" :inline="true"
> >
<el-form-item label="护理站名称" prop="nurseStationName"> <el-form-item label="护理站名称" prop="nurseStationName">
<el-input <el-input
v-model="nurseStationqueryParams.nurseStationName" v-model="getListByUserquery.nurseStationName"
placeholder="请输入护理站名称" placeholder="请输入护理站名称"
/> />
</el-form-item> </el-form-item>
<el-form-item label="护理站编号" prop="nurseStationCode"> <el-form-item label="护理站编号" prop="nurseStationCode">
<el-input <el-input
v-model="nurseStationqueryParams.nurseStationCode" v-model="getListByUserquery.nurseStationCode"
placeholder="请输入护理站编号" placeholder="请输入护理站编号"
/> />
</el-form-item> </el-form-item>
@ -818,10 +817,6 @@ export default {
nurseStationId: null, nurseStationId: null,
consumableDetail: null, consumableDetail: null,
}, },
nurseStationqueryParams: {
pageNum: 1,
pageSize: 10,
},
// //
form: { form: {
nurseStationItem: { nurseStationItem: {
@ -870,7 +865,7 @@ export default {
this.getList(); this.getList();
this.info(); this.info();
this.getInfoListinfo(); this.getInfoListinfo();
this.stationlist(); // this.stationlist();
// this.listStationConsumableinfo(); // this.listStationConsumableinfo();
}, },
methods: { methods: {
@ -970,7 +965,7 @@ export default {
}, },
// //
stationcancel() { stationcancel() {
this.nurseStationqueryParams = { this.getListByUserquery = {
pageNum: 1, pageNum: 1,
pageSize: 10, pageSize: 10,
}; };