修改
This commit is contained in:
parent
dc0522440f
commit
59c3e67084
@ -370,18 +370,17 @@
|
||||
<template slot-scope="scope">
|
||||
<el-input
|
||||
v-model="scope.row.serveDurationUnit"
|
||||
maxlength="50"
|
||||
maxlength="6"
|
||||
></el-input>
|
||||
</template>
|
||||
</el-table-column>
|
||||
|
||||
<el-table-column property="price" label="价格" align="center">
|
||||
<template slot-scope="scope">
|
||||
<el-input
|
||||
v-model="scope.row.price"
|
||||
placeholder="小数点后两位"
|
||||
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>
|
||||
</template>
|
||||
</el-table-column>
|
||||
@ -495,19 +494,19 @@
|
||||
>
|
||||
<el-form
|
||||
ref="form"
|
||||
:model="nurseStationqueryParams"
|
||||
:model="getListByUserquery"
|
||||
label-width="110px"
|
||||
:inline="true"
|
||||
>
|
||||
<el-form-item label="护理站名称" prop="nurseStationName">
|
||||
<el-input
|
||||
v-model="nurseStationqueryParams.nurseStationName"
|
||||
v-model="getListByUserquery.nurseStationName"
|
||||
placeholder="请输入护理站名称"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="护理站编号" prop="nurseStationCode">
|
||||
<el-input
|
||||
v-model="nurseStationqueryParams.nurseStationCode"
|
||||
v-model="getListByUserquery.nurseStationCode"
|
||||
placeholder="请输入护理站编号"
|
||||
/>
|
||||
</el-form-item>
|
||||
@ -818,10 +817,6 @@ export default {
|
||||
nurseStationId: null,
|
||||
consumableDetail: null,
|
||||
},
|
||||
nurseStationqueryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
},
|
||||
// 表单参数
|
||||
form: {
|
||||
nurseStationItem: {
|
||||
@ -870,7 +865,7 @@ export default {
|
||||
this.getList();
|
||||
this.info();
|
||||
this.getInfoListinfo();
|
||||
this.stationlist();
|
||||
// this.stationlist();
|
||||
// this.listStationConsumableinfo();
|
||||
},
|
||||
methods: {
|
||||
@ -970,7 +965,7 @@ export default {
|
||||
},
|
||||
//护理站重置
|
||||
stationcancel() {
|
||||
this.nurseStationqueryParams = {
|
||||
this.getListByUserquery = {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
};
|
||||
|
||||
Loading…
Reference in New Issue
Block a user