护理项目+护理站

This commit is contained in:
闫晓茹 2023-02-20 11:43:26 +08:00
parent c2e69ad8c4
commit 15855dc827
3 changed files with 835 additions and 495 deletions

View File

@ -36,7 +36,14 @@ export function updateStation(data) {
data: data data: data
}) })
} }
// 查询护理机构分类信息列表
export function listStationClassify(query) {
return request({
url: '/system/stationClassify/list',
method: 'get',
params: query
})
}
// 删除护理站信息 // 删除护理站信息
export function delStation(id) { export function delStation(id) {
return request({ return request({

View File

@ -16,15 +16,14 @@
@keyup.enter.native="handleQuery" @keyup.enter.native="handleQuery"
/> />
</el-form-item> </el-form-item>
<el-form-item label="所属护理站" prop="nurseStationName"> <el-form-item label="护理站名称" prop="nurseStationName">
<el-input <el-input
v-model="getListByUserquery.nurseStationName" v-model="getListByUserquery.nurseStationName"
placeholder="请输入护理站" placeholder="请输入护理站名称"
clearable clearable
@keyup.enter.native="handleQuery" @keyup.enter.native="handleQuery"
/> />
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button <el-button
type="primary" type="primary"
@ -38,7 +37,6 @@
> >
</el-form-item> </el-form-item>
</el-form> </el-form>
<el-row :gutter="10" class="mb8"> <el-row :gutter="10" class="mb8">
<!-- <el-col :span="1.5"> <!-- <el-col :span="1.5">
<el-button <el-button
@ -78,10 +76,9 @@
<right-toolbar <right-toolbar
:showSearch.sync="showSearch" :showSearch.sync="showSearch"
@queryTable="info" @queryTable="getList"
></right-toolbar> ></right-toolbar>
</el-row> </el-row>
<el-table <el-table
v-loading="loading" v-loading="loading"
:data="nurseStationlist" :data="nurseStationlist"
@ -100,7 +97,6 @@
prop="nurseStationName" prop="nurseStationName"
:show-overflow-tooltip="true" :show-overflow-tooltip="true"
/> />
<el-table-column label="所属区域" align="center" prop="area"> <el-table-column label="所属区域" align="center" prop="area">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ <span>{{
@ -148,7 +144,6 @@
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<pagination <pagination
v-show="total2 > 0" v-show="total2 > 0"
:total="total2" :total="total2"
@ -156,7 +151,7 @@
:limit.sync="getListByUserquery.pageSize" :limit.sync="getListByUserquery.pageSize"
@pagination="info" @pagination="info"
/> />
<!-- 新增护理站信息对话框 --> <!-- 新增修改护理站信息对话框 -->
<el-dialog <el-dialog
:title="title" :title="title"
:visible.sync="open" :visible.sync="open"
@ -270,13 +265,40 @@
maxlength="11" maxlength="11"
/> />
</el-form-item> </el-form-item>
<el-form-item label="排序" prop="sort"> <el-form-item label="护理机构分类" required>
<el-input <template>
placeholder="请输入排序" <el-button
v-model="form.sort" @click="clickinnerVisible()"
maxlength="8" type=""
oninput="value=value.replace(/[^\d]/g,'')" style="
/> width: 208px;
text-align: left;
height: 36px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
color: #c0c4cc;
margin-top: -10px;
"
v-if="form.classifyNameList == '请选择护理站所属机构分类'"
>{{ form.classifyNameList }}</el-button
>
<el-button
@click="clickinnerVisible()"
type=""
style="
width: 208px;
text-align: left;
height: 36px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
margin-top: -10px;
"
v-else
>{{ form.classifyNameList }}</el-button
>
</template>
</el-form-item> </el-form-item>
<el-form-item label="负责人" prop="dutyPerson"> <el-form-item label="负责人" prop="dutyPerson">
<el-input <el-input
@ -292,6 +314,70 @@
maxlength="11" maxlength="11"
/> />
</el-form-item> </el-form-item>
<el-form-item label="排序" prop="sort">
<el-input
placeholder="请输入排序"
v-model="form.sort"
oninput="value=value.replace(/[^\d]/g,'')"
maxLength="5"
/>
</el-form-item>
<el-form-item label="营业概述" prop="openingHoursDescribe">
<el-input
style="width: 208px"
v-model="form.openingHoursDescribe"
placeholder="请输入护理站营业概述"
maxlength="150"
/>
</el-form-item>
<el-form-item label="上午营业时间" >
<el-time-select
style="width: 208px"
placeholder="上午营业开始时间"
v-model="form.morningOpenStartTime"
:picker-options="{
start: '07:00',
step: '00:30',
end: '14:00',
}"
>
</el-time-select>
<el-time-select
style="width: 208px; margin-left: 10px"
placeholder="上午营业结束时间"
v-model="form.morningOpenEndTime"
:picker-options="{
start: '08:00',
step: '00:30',
end: '14:30',
}"
>
</el-time-select>
</el-form-item>
<el-form-item label="下午营业时间" >
<el-time-select
style="width: 208px"
placeholder="下午营业开始时间"
v-model="form.afternoonOpenStartTime"
:picker-options="{
start: '12:00',
step: '00:30',
end: '18:00',
}"
>
</el-time-select>
<el-time-select
style="width: 208px; margin-left: 10px"
placeholder="下午营业结束时间"
v-model="form.afternoonOpenEndTime"
:picker-options="{
start: '13:00',
step: '00:30',
end: '20:00',
}"
>
</el-time-select>
</el-form-item>
<el-form-item label="护理站总概述" prop="nurseStationDescription"> <el-form-item label="护理站总概述" prop="nurseStationDescription">
<el-input <el-input
style="width: 540px" style="width: 540px"
@ -355,8 +441,8 @@
<template slot-scope="scope"> <template slot-scope="scope">
<el-input <el-input
v-model="scope.row.labelSort" v-model="scope.row.labelSort"
maxlength="10"
oninput="value=value.replace(/[^\d]/g,'')" oninput="value=value.replace(/[^\d]/g,'')"
maxLength="5"
></el-input> ></el-input>
</template> </template>
</el-table-column> </el-table-column>
@ -384,6 +470,101 @@
<el-button @click="cancel"> </el-button> <el-button @click="cancel"> </el-button>
</div> </div>
</el-dialog> </el-dialog>
<!-- 护理分类 -->
<el-dialog
title="选择护理机构分类"
:visible.sync="Classifyshow"
width="1100px"
append-to-body
:before-close="cancelClassifyshow"
>
<el-form :model="classifyquery" label-width="150px" :inline="true">
<el-form-item label="护理机构分类编码" prop="classifyCode">
<el-input
v-model="classifyquery.classifyCode"
placeholder="请输入护理机构分类编码"
/>
</el-form-item>
<el-form-item label="护理机构分类名称" prop="classifyName">
<el-input
v-model="classifyquery.classifyName"
placeholder="请输入护理机构分类名称"
/>
</el-form-item>
<el-form-item>
<el-button
type="primary"
icon="el-icon-search"
size="mini"
@click="classifylistInfo"
>搜索</el-button
>
<el-button
icon="el-icon-refresh"
size="mini"
@click="classifylistcancel"
>重置</el-button
>
</el-form-item>
</el-form>
<el-table
v-loading="loading"
:data="classifylist"
@cell-dblclick="setCheckedData"
>
<el-table-column label="请选择" width="70" align="center">
<template slot-scope="scope">
<el-button
type="primary"
style="width: 15px; height: 15px"
circle
@click="setCheckedData(scope.row)"
v-if="checkedDataList.find((e) => e == scope.row.id)"
></el-button>
<el-button
style="width: 15px; height: 15px"
circle
v-else
@click="setCheckedData(scope.row)"
>
</el-button>
</template>
</el-table-column>
<el-table-column
property="classifyCode"
label="护理项目分类编码"
align="center"
>
</el-table-column>
<el-table-column
property="classifyName"
label="护理项目分类名称"
align="center"
>
</el-table-column>
</el-table>
<pagination
v-show="classifytotal > 0"
:total="classifytotal"
:page.sync="classifyquery.pageNum"
:limit.sync="classifyquery.pageSize"
@pagination="classifylistInfo"
/>
<el-button
type="primary"
size="mini"
@click="choiceclassify"
style="
margin-top: 30px;
margin-left: 85%;
width: 100px;
height: 50px;
font-size: 15px;
"
>选择完成</el-button
>
</el-dialog>
<!-- // --> <!-- // -->
<el-dialog <el-dialog
:title="upload.title" :title="upload.title"
@ -424,11 +605,15 @@
</div> </div>
</template> </template>
<!-- station/list -->
<script> <script>
// import stationjs from "./stationjs";
// export default stationjs;
import { import {
listStation,
getStation, getStation,
delStation, delStation,
listStationClassify,
addStation, addStation,
updateStation, updateStation,
getFirstLevelInfo, getFirstLevelInfo,
@ -443,38 +628,37 @@ export default {
components: { stationAcatar, editor }, components: { stationAcatar, editor },
name: "Station", name: "Station",
data() { data() {
var checkMobile = (rule, value, cb) => { // var checkMobile = (rule, value, cb) => {
// // //
const regMobile = // const regMobile =
/^(0|86|17951)?(13[0-9]|15[012356789]|17[678]|18[0-9]|14[57]|19[0-9])[0-9]{8}$/; // /^(0|86|17951)?(13[0-9]|15[012356789]|17[678]|18[0-9]|14[57]|19[0-9])[0-9]{8}$/;
if (regMobile.test(value)) { // if (regMobile.test(value)) {
return cb(); // return cb();
} // }
cb(new Error("请输入正确的联系电话")); // cb(new Error(""));
}; // };
// //
var checkMobile2 = (rule, value, cb) => { // var checkMobile2 = (rule, value, cb) => {
// // //
const regMobile = // const regMobile =
/^(0|86|17951)?(13[0-9]|15[012356789]|17[678]|18[0-9]|14[57]|19[0-9])[0-9]{8}$/; // /^(0|86|17951)?(13[0-9]|15[012356789]|17[678]|18[0-9]|14[57]|19[0-9])[0-9]{8}$/;
if (!value) { // if (!value) {
//callback // //callback
return cb(); // return cb();
} else { // } else {
if (regMobile.test(value)) { // if (regMobile.test(value)) {
return cb(); // return cb();
} else { // } else {
cb(new Error("请输入正确的联系电话")); // cb(new Error(""));
} // }
} // }
}; // };
return { return {
imgsurl: { pictureUrlList: [] }, imgsurl: { pictureUrlList: [] },
imageUrl: "", imageUrl: "",
imageUrl2: "", imageUrl2: "",
imgtwo: "", imgtwo: "",
imgone: "", imgone: "",
handstationlist: [], //list
// //
upload: { upload: {
// //
@ -486,8 +670,7 @@ export default {
// //
headers: { Authorization: "Bearer " + getToken() }, headers: { Authorization: "Bearer " + getToken() },
// //
url: url: process.env.VUE_APP_BASE_API +
process.env.VUE_APP_BASE_API +
"/system/station/insertNurseStationImportList", "/system/station/insertNurseStationImportList",
}, },
// //
@ -505,53 +688,61 @@ export default {
// //
showSearch: true, showSearch: true,
// //
total: 0,
total2: 0, total2: 0,
// classifytotal: 0,
typelooks: [],
// //
looknurseStationLabel: [ looknurseStationLabel: [{
{
labelDescription: "", labelDescription: "",
sort: "", sort: "",
idd: 1, idd: 1,
}, },],
],
// //
stationList: [ stationList: [{
{ sysAreaVOList: [{
sysAreaVOList: [
{
provinceName: null, provinceName: null,
cityName: null, cityName: null,
streetName: null, streetName: null,
}, },],
], },],
},
],
nurseStationlist: [], nurseStationlist: [],
// //
title: "", title: "",
// //
open: false, open: false,
typeopen: false, Classifyshow: false,
nurseStationLabelopen: false, afternoonOpenStartTimeStr: "",
afternoonOpenEndTimeStr: "",
// //
getListByUserquery: { getListByUserquery: {
pageNum: 1, pageNum: 1,
pageSize: 10, pageSize: 10,
}, },
//
// //
form: {}, form: {
nurseStationClassifyIds: [],
},
idd: 1, idd: 1,
provincelist: [], provincelist: [],
arealist: [], arealist: [],
citylist: [], citylist: [],
streetlist: [], streetlist: [],
classifylist: [],
classifyquery: {
pageNum: 1,
pageSize: 10,
classifyCode: "",
classifyName: "",
},
resid: null, resid: null,
// //
rules: { rules: {
// morningOpenStartTime: [
// { required: true, message: "", trigger: "blur" },
// ],
// afternoonOpenStartTimeStr: [
// { required: true, message: "", trigger: "blur" },
// ],
agencyIntroduce: [ agencyIntroduce: [
{ required: true, message: "请输入护理站简介", trigger: "blur" }, { required: true, message: "请输入护理站简介", trigger: "blur" },
], ],
@ -564,22 +755,18 @@ export default {
nurseStationDescription: [ nurseStationDescription: [
{ required: true, message: "护理站总概述不能为空", trigger: "blur" }, { required: true, message: "护理站总概述不能为空", trigger: "blur" },
], ],
phone: [ phone: [{
{
required: true, required: true,
validator: checkMobile, // validator: checkMobile,
trigger: "blur", trigger: "blur",
message: "", message: "请输入手机号",
}, },],
],
dutyPhone: [ dutyPhone: [{
{ // validator: checkMobile2,
validator: checkMobile2,
trigger: "blur", trigger: "blur",
message: "", message: "请输入联系电话",
}, },],
],
sort: [{ required: true, message: "排序不能为空", trigger: "blur" }], sort: [{ required: true, message: "排序不能为空", trigger: "blur" }],
address: [{ required: true, message: "地址不能为空", trigger: "blur" }], address: [{ required: true, message: "地址不能为空", trigger: "blur" }],
longitude: [ longitude: [
@ -598,12 +785,14 @@ export default {
{ required: true, message: "请选择护理站类型", trigger: "blur" }, { required: true, message: "请选择护理站类型", trigger: "blur" },
], ],
}, },
checkedDataList: []//
}; };
}, },
created() { created() {
this.getaddress(); this.getaddress();
this.info(); this.info();
this.infos(); this.classifylistInfo();
}, },
methods: { methods: {
imgs(item) { imgs(item) {
@ -620,13 +809,11 @@ export default {
console.log(); console.log();
// this.looknurseStationLabel.splice(index,1) // this.looknurseStationLabel.splice(index,1)
if (this.looknurseStationLabel.length === 1) { if (this.looknurseStationLabel.length === 1) {
this.looknurseStationLabel = [ this.looknurseStationLabel = [{
{
labelDescription: "", labelDescription: "",
sort: "", sort: "",
idd: 1, idd: 1,
}, },];
];
} else { } else {
this.looknurseStationLabel.splice(index, 1); this.looknurseStationLabel.splice(index, 1);
} }
@ -647,7 +834,6 @@ export default {
} }
console.log(this.looknurseStationLabel); console.log(this.looknurseStationLabel);
}, },
// //
clickstreet(item) { clickstreet(item) {
this.form.areaCode = item.areaCode; this.form.areaCode = item.areaCode;
@ -680,12 +866,16 @@ export default {
this.citylist = res.data; this.citylist = res.data;
}); });
}, },
/** 查询护理站信息列表 */ /** 获取省列表 */
getaddress() { getaddress() {
getFirstLevelInfo().then((res) => { getFirstLevelInfo().then((res) => {
this.provincelist = res.data; this.provincelist = res.data;
}); });
}, },
getList() {
this.info();
},
// //
cancel() { cancel() {
var obj = { pictureUrlList: [] }; var obj = { pictureUrlList: [] };
@ -696,18 +886,17 @@ export default {
obj.pictureUrlList.push(this.form.stationPictureUrl); obj.pictureUrlList.push(this.form.stationPictureUrl);
} }
if (obj.pictureUrlList.length > 0) { if (obj.pictureUrlList.length > 0) {
updatePicture(obj).then((res) => {}); updatePicture(obj).then((res) => { });
} }
if (this.imgsurl.pictureUrlList.length > 0) { if (this.imgsurl.pictureUrlList.length > 0) {
updatePicture(this.imgsurl).then((res) => {}); updatePicture(this.imgsurl).then((res) => { });
} }
this.imgsurl = { pictureUrlList: [] }; this.imgsurl = { pictureUrlList: [] };
this.open = false; this.open = false;
this.reset(); this.reset();
this.arealist = []; this.arealist = []
this.citylist = []; this.citylist = []
this.streetlist = []; this.streetlist = []
}, },
// //
reset() { reset() {
@ -731,13 +920,82 @@ export default {
sort: null, sort: null,
nurseStationLabelList: [], nurseStationLabelList: [],
streetCode: null, streetCode: null,
openingHoursDescribe: null,
afternoonOpenStartTimeStr: "00:00:00", //
afternoonOpenEndTimeStr: "00:00:00", //
morningOpenEndTimeStr: "00:00:00", //
morningOpenStartTimeStr: "00:00:00", //
nurseStationClassifyIds: [],
classifyNameList: '请选择护理站所属机构分类',
}; };
this.resetForm("form"); this.resetForm("form");
}, },
/** 搜索按钮操作 */ //
liststationinfo() { clickinnerVisible() {
this.loading = true; this.classifylistInfo();
this.info(); //
this.checkedDataList = JSON.parse(JSON.stringify(this.form.nurseStationClassifyIds));
this.Classifyshow = true;
},
classifylistcancel() {
this.classifyquery = {
pageNum: 1,
pageSize: 10,
classifyCode: "",
classifyName: "",
};
this.classifylistInfo();
},
//
setCheckedData(e) {
// id
if (this.checkedDataList.find(el => el == e.id)) {
this.checkedDataList = this.checkedDataList.filter(ele => ele != e.id)
}
else {
// id
this.checkedDataList.push(e.id);
}
},
//
choiceclassify() {
this.form.nurseStationClassifyIds = JSON.parse(JSON.stringify(this.checkedDataList));
// idname
if (this.form.nurseStationClassifyIds.length == 0) {
this.form.classifyNameList = '请选择护理站所属机构分类'
} else {
this.form.classifyNameList = "";
this.form.nurseStationClassifyIds.forEach(f => {
let classify = this.classifylist.find(d => d.id == f)
this.form.classifyNameList += classify.classifyName + ","
})
this.form.classifyNameList = this.form.classifyNameList.substring(0, this.form.classifyNameList.length - 1)
}
this.cancelClassifyshow();
},
/** 查询护理机构分类信息列表 */
classifylistInfo() {
listStationClassify(this.classifyquery).then((response) => {
this.classifylist = response.rows;
this.classifytotal = response.total;
this.loading = false;
});
},
cancelClassifyshow() {
// this.classifylistInfo();
this.Classifyshow = false;
},
//
info() {
this.loading = true
getListByUser(this.getListByUserquery).then((res) => {
this.nurseStationlist = res.rows;
this.total2 = res.total;
this.loading = false
});
}, },
handleQuery() { handleQuery() {
this.loading = true; this.loading = true;
@ -778,13 +1036,11 @@ export default {
handleAdd() { handleAdd() {
this.reset(); this.reset();
this.open = true; this.open = true;
this.looknurseStationLabel = [ this.looknurseStationLabel = [{
{
labelDescription: "", labelDescription: "",
sort: "", sort: "",
idd: 1, idd: 1,
}, },];
];
this.title = "添加护理站信息"; this.title = "添加护理站信息";
}, },
/** 修改按钮操作 */ /** 修改按钮操作 */
@ -793,6 +1049,12 @@ export default {
this.loading = true; this.loading = true;
const id = row.id || this.ids; const id = row.id || this.ids;
getStation(id).then((response) => { getStation(id).then((response) => {
if (response.data.nurseClassifyInfoList) {
response.data.nurseStationClassifyIds = []
response.data.nurseClassifyInfoList.forEach(e => {
response.data.nurseStationClassifyIds.push(e.id)
})
}
this.form = response.data; this.form = response.data;
this.form.streetCode = this.form.streetName; this.form.streetCode = this.form.streetName;
this.imgone = this.form.stationIntroducePcitureUrl; this.imgone = this.form.stationIntroducePcitureUrl;
@ -805,9 +1067,28 @@ export default {
}, },
/** 提交按钮 */ /** 提交按钮 */
submitForm() { submitForm() {
if (this.form.afternoonOpenStartTime) {
this.form.afternoonOpenStartTimeStr= this.form.afternoonOpenStartTime
}else{
this.form.afternoonOpenStartTimeStr= "00:00:00"
}
if (!this.form.afternoonOpenEndTime) {
this.form.afternoonOpenEndTimeStr= "00:00:00"
}else{
this.form.afternoonOpenEndTimeStr= this.form.afternoonOpenEndTime
}
if (!this.form.morningOpenStartTime) {
this.form.morningOpenStartTimeStr= "00:00:00"
}else{
this.form.morningOpenStartTimeStr= this.form. morningOpenStartTime
}
if (!this.form.morningOpenEndTime) {
this.form.morningOpenEndTimeStr= "00:00:00"
}else{
this.form.morningOpenEndTimeStr= this.form.morningOpenEndTime
}
this.form.nurseStationLabelList = this.looknurseStationLabel; this.form.nurseStationLabelList = this.looknurseStationLabel;
this.form.nurseStationType = this.nurseStationType2; this.form.nurseStationType = this.nurseStationType2;
console.log(this.form);
this.$refs["form"].validate((valid) => { this.$refs["form"].validate((valid) => {
if (valid) { if (valid) {
this.form.areaCode = Number(this.form.areaCode); this.form.areaCode = Number(this.form.areaCode);
@ -821,20 +1102,20 @@ export default {
if (this.imgtwo != this.form.stationPictureUrl) { if (this.imgtwo != this.form.stationPictureUrl) {
obj.pictureUrlList.push(this.imgtwo); obj.pictureUrlList.push(this.imgtwo);
} }
if (obj.pictureUrlList.length > 0) {
updatePicture(obj).then((res) => {});
}
this.imgsurl = { pictureUrlList: [] }; this.imgsurl = { pictureUrlList: [] };
if (obj.pictureUrlList.length > 0) {
updatePicture(obj).then((res) => { });
}
this.$modal.msgSuccess("修改成功"); this.$modal.msgSuccess("修改成功");
this.open = false; this.open = false;
this.info(); this.getList();
}); });
} else { } else {
addStation(this.form).then((response) => { addStation(this.form).then((response) => {
if (response.code) { if (response.code) {
this.$modal.msgSuccess("新增成功"); this.$modal.msgSuccess("新增成功");
this.open = false; this.open = false;
this.info(); this.getList();
} else { } else {
this.form.nurseStationType = obj; this.form.nurseStationType = obj;
} }
@ -856,18 +1137,17 @@ export default {
obj.pictureUrlList.push(row.stationIntroducePcitureUrl); obj.pictureUrlList.push(row.stationIntroducePcitureUrl);
obj.pictureUrlList.push(row.stationPictureUrl); obj.pictureUrlList.push(row.stationPictureUrl);
if (obj.pictureUrlList.length > 0) { if (obj.pictureUrlList.length > 0) {
updatePicture(obj).then((res) => {}); updatePicture(obj).then((res) => { });
} }
this.info(); this.getList();
this.$modal.msgSuccess("删除成功"); this.$modal.msgSuccess("删除成功");
}) })
.catch(() => {}); .catch(() => { });
}, },
/** 导出按钮操作 */ /** 导出按钮操作 */
handleExport() { handleExport() {
this.download( this.download(
"system/station/export", "system/station/export", {
{
...this.getListByUserquery, ...this.getListByUserquery,
}, },
`station_${new Date().getTime()}.xlsx` `station_${new Date().getTime()}.xlsx`
@ -881,8 +1161,7 @@ export default {
/** 下载模板操作 */ /** 下载模板操作 */
importTemplate() { importTemplate() {
this.download( this.download(
"/system/station/downloadTemplate?fileType=nurseStation", "/system/station/downloadTemplate?fileType=nurseStation", {},
{},
`护理站信息导入模板.xlsx` `护理站信息导入模板.xlsx`
); );
}, },
@ -899,34 +1178,14 @@ export default {
"<div style='overflow: auto;overflow-x: hidden;max-height: 70vh;padding: 10px 20px 0;'>" + "<div style='overflow: auto;overflow-x: hidden;max-height: 70vh;padding: 10px 20px 0;'>" +
response.msg + response.msg +
"</div>", "</div>",
"导入结果", "导入结果", { dangerouslyUseHTMLString: true }
{ dangerouslyUseHTMLString: true }
); );
this.info(); this.getList();
}, },
// //
handleFileUploadProgress(event, file, fileList) { handleFileUploadProgress(event, file, fileList) {
this.upload.isUploading = true; this.upload.isUploading = true;
}, },
//
info() {
//
getListByUser(this.getListByUserquery).then((res) => {
this.nurseStationlist = res.rows;
this.total2 = res.total;
this.loading = false;
});
},
infos() {
var queryFor = {
pageNum: 1,
pageSize: 9999,
};
getListByUser(queryFor).then((res) => {
console.log(res);
this.handstationlist = res.rows;
});
},
}, },
}; };
</script> </script>

View File

@ -283,6 +283,47 @@
> >
</template> </template>
</el-form-item> </el-form-item>
<el-form-item label="提前预约时长" prop="nurseStationItem.advanceAppointDuration">
<el-select
v-model="form.nurseStationItem.advanceAppointDuration"
placeholder="请选择提前预约时长"
style="width:208px"
>
<el-option
style="width:208px"
v-for="item in optionlist"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</el-select>
</el-form-item>
<el-form-item label="预约人数上限" prop="nurseStationItem.appointmentLimitCount">
<el-input
placeholder="请输入预约人数上限"
v-model="form.nurseStationItem.appointmentLimitCount"
oninput="value=value.replace(/[^\d]/g,'')"
maxLength="8"
/>
</el-form-item>
<el-form-item label="预约时间间隔" prop="nurseStationItem.appointmentTimeInterval">
<el-select
style="width:208px"
v-model="form.nurseStationItem.appointmentTimeInterval"
placeholder="请选择预约时间间隔"
>
<el-option
v-for="item in options"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</el-select>
</el-form-item>
<el-form-item label="排序" prop="nurseStationItem.sort"> <el-form-item label="排序" prop="nurseStationItem.sort">
<el-input <el-input
placeholder="请输入排序" placeholder="请输入排序"
@ -821,6 +862,31 @@ export default {
total2: 0, total2: 0,
total3: 0, total3: 0,
total4: 0, total4: 0,
options: [{
value: 'HALF_HOUR',
label: '半小时'
}, {
value: 'ONE_HOUR',
label: '一小时'
},
{
value: ' NINETY_MINUTES',
label: '九十分钟'
},
{
value: 'TWO_HOUR',
label: '两小时'
}
],
value: "",
optionlist: [{
value: 'HALF_DAY',
label: '半天'
}, {
value: 'ONE_DAY',
label: '一天'
}, ],
// //
stationConsumableList: [], stationConsumableList: [],
// //
@ -882,6 +948,15 @@ export default {
"nurseStationItem.sort": [ "nurseStationItem.sort": [
{ required: true, message: "排序不能为空", trigger: "blur" }, { required: true, message: "排序不能为空", trigger: "blur" },
], ],
"nurseStationItem.advanceAppointDuration": [
{ required: true, message: "提前预约时长不能为空", trigger: "blur" },
],
// }, ],
"nurseStationItem.appointmentTimeInterval": [{
required: true,
trigger: "blur",
message: "请选择预约时间点间隔",
}, ],
// "nurseStationItem.advanceAppointDuration": [ // "nurseStationItem.advanceAppointDuration": [
// { required: true, message: "", trigger: "blur" }, // { required: true, message: "", trigger: "blur" },
// ], // ],
@ -1266,7 +1341,7 @@ export default {
this.form.nurseStationItemPrices.forEach((e) => { this.form.nurseStationItemPrices.forEach((e) => {
e.price = Number(e.price); e.price = Number(e.price);
}); });
this.form.nurseStationItem.advanceAppointDuration = 0;
updateNurseItem(this.form).then((response) => { updateNurseItem(this.form).then((response) => {
this.$modal.msgSuccess("修改成功"); this.$modal.msgSuccess("修改成功");
this.open = false; this.open = false;
@ -1276,7 +1351,6 @@ export default {
this.form.nurseStationItemPrices.forEach((e) => { this.form.nurseStationItemPrices.forEach((e) => {
e.price = Number(e.price); e.price = Number(e.price);
}); });
this.form.nurseStationItem.advanceAppointDuration = 0;
addNurseItem(this.form).then((response) => { addNurseItem(this.form).then((response) => {
this.$modal.msgSuccess("新增成功"); this.$modal.msgSuccess("新增成功");
this.$forceUpdate(); this.$forceUpdate();