提前预约时长 整数
This commit is contained in:
parent
4b9710fa0a
commit
88b4f849af
@ -283,6 +283,7 @@
|
||||
<el-input
|
||||
v-model="form.nurseStationItem.advanceAppointDuration"
|
||||
placeholder="提前预约时长(单位小时)"
|
||||
oninput="if(value.indexOf('.')>0){value=value.slice(0,value.indexOf('.')+0)} if(value.length>5){value=value.slice(0,5)}"
|
||||
type="number"
|
||||
min="0"
|
||||
/>
|
||||
@ -373,7 +374,7 @@
|
||||
</el-table>
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item label="护理项目耗材" >
|
||||
<el-form-item label="护理项目耗材">
|
||||
<el-button
|
||||
type="primary"
|
||||
size="small"
|
||||
@ -713,7 +714,7 @@ export default {
|
||||
data() {
|
||||
return {
|
||||
imageUrl: "",
|
||||
imgone:"",
|
||||
imgone: "",
|
||||
// 用户导入参数
|
||||
upload: {
|
||||
// 是否显示弹出层(用户导入)
|
||||
@ -992,7 +993,7 @@ export default {
|
||||
cancel() {
|
||||
console.log(this.form.nurseStationItem);
|
||||
var obj = { pictureUrlList: [] };
|
||||
if (this.imgone!= this.form.nurseStationItem.itemPictureUrl) {
|
||||
if (this.imgone != this.form.nurseStationItem.itemPictureUrl) {
|
||||
obj.pictureUrlList.push(this.form.nurseStationItem.itemPictureUrl);
|
||||
}
|
||||
if (obj.pictureUrlList.length > 0) {
|
||||
@ -1117,7 +1118,7 @@ export default {
|
||||
getNurseItem(id).then((response) => {
|
||||
console.log(response);
|
||||
this.form = response.data;
|
||||
this.StationConsumablequeryParams.nurseStationId=response.data.nurseStationItem.nurseStationId
|
||||
this.StationConsumablequeryParams.nurseStationId = response.data.nurseStationItem.nurseStationId
|
||||
this.imgone = this.form.nurseStationItem.itemPictureUrl;
|
||||
if (this.form.nurseStationItemPrices == []) {
|
||||
var obj = {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user