修改
This commit is contained in:
parent
0d252641d2
commit
3af1496779
@ -523,6 +523,9 @@ export default {
|
||||
this.getList();
|
||||
});
|
||||
} else {
|
||||
if(this.form.nurseClassifyInfoList[0].classifySort){
|
||||
this.form.nurseClassifyInfoList[0].classifySort = parseInt(this.form.nurseClassifyInfoList[0].classifySort);
|
||||
}
|
||||
addInfo(this.form).then((response) => {
|
||||
this.$modal.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
|
||||
@ -512,6 +512,9 @@ export default {
|
||||
});
|
||||
} else {
|
||||
addStationClassify(this.form).then((response) => {
|
||||
if(this.form.nurseClassifyInfoList[0].classifySort){
|
||||
this.form.nurseClassifyInfoList[0].classifySort=parseInt(this.form.nurseClassifyInfoList[0].classifySort)
|
||||
}
|
||||
this.$modal.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
|
||||
@ -1353,10 +1353,11 @@ export default {
|
||||
this.form.nurseStationItemPrices.forEach((e) => {
|
||||
e.price = Number(e.price);
|
||||
});
|
||||
addNurseItem(this.form).then((response) => {
|
||||
if( this.form.nurseStationItem.appointmentLimitCount){
|
||||
if( this.form.nurseStationItem.appointmentLimitCount){
|
||||
this.form.nurseStationItem.appointmentLimitCount=parseInt(this.form.nurseStationItem.appointmentLimitCount)
|
||||
}
|
||||
addNurseItem(this.form).then((response) => {
|
||||
|
||||
this.$modal.msgSuccess("新增成功");
|
||||
this.$forceUpdate();
|
||||
this.open = false;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user