提交 b0aae3b3 编写于 作者: vino's avatar vino

修改批量上架和下架

上级 f9e7adcb
...@@ -300,7 +300,7 @@ export default { ...@@ -300,7 +300,7 @@ export default {
}, },
confirmSetPrice() { confirmSetPrice() {
if(this.setPriceForm.price == "" || this.setPriceForm.price == undefined){ if(this.setPriceForm.price != 0 && (this.setPriceForm.price == "" || this.setPriceForm.price == undefined)){
this.$message({ this.$message({
message: '请输入问诊价格', message: '请输入问诊价格',
type: "warning" type: "warning"
...@@ -436,7 +436,7 @@ export default { ...@@ -436,7 +436,7 @@ export default {
} }
// this.setSelectedList(); // this.setSelectedList();
this.POST(`/diagnose/doctorService/batchDeploy`, this.selectedList).then(res => { this.POST(`/diagnose/doctorService/batchDeploy`, this.selectedPriceList).then(res => {
if (res.code == "000000") { if (res.code == "000000") {
this.$message({ this.$message({
message: '上架成功', message: '上架成功',
...@@ -477,7 +477,7 @@ export default { ...@@ -477,7 +477,7 @@ export default {
if(this.multipleSelection.length > 0){ if(this.multipleSelection.length > 0){
this.selectedPriceList = []; this.selectedPriceList = [];
for(let i = 0; i < this.multipleSelection.length; i++){ for(let i = 0; i < this.multipleSelection.length; i++){
if(this.multipleSelection[i].price == "" || this.multipleSelection[i].price == null){ if(this.multipleSelection[i].price != 0 && (this.multipleSelection[i].price == "" || this.multipleSelection[i].price == null)){
this.$message({ this.$message({
message: '请先设置"问诊价格"', message: '请先设置"问诊价格"',
type: "warning" type: "warning"
...@@ -486,6 +486,7 @@ export default { ...@@ -486,6 +486,7 @@ export default {
} }
this.selectedPriceList.push({doctorId: this.multipleSelection[i].doctorId, serviceType: this.multipleSelection[i].serviceType, price: this.multipleSelection[i].price}); this.selectedPriceList.push({doctorId: this.multipleSelection[i].doctorId, serviceType: this.multipleSelection[i].serviceType, price: this.multipleSelection[i].price});
} }
return true;
} }
}, },
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册