Commit 947164bd authored by 黄奎's avatar 黄奎

页面修改

parent e0c464c3
...@@ -182,7 +182,7 @@ ...@@ -182,7 +182,7 @@
:rules="[val => !!val || '请填退课金额']" /> :rules="[val => !!val || '请填退课金额']" />
</span> </span>
<span> <span>
系统计算课时费为:(课时)*30(课单价)=7200元,请你最终确认退款金额 系统计算课时费为:{{(classPriceObj.ClassHours-classPriceObj.FinishHours)}}(课时)*{{classPriceObj.classHourPrice}}(课单价)={{classPriceObj.backMoney}}元,请你最终确认退款金额
</span> </span>
</template> </template>
<div v-if="showType==2"> <div v-if="showType==2">
...@@ -294,7 +294,6 @@ ...@@ -294,7 +294,6 @@
}).then(res => { }).then(res => {
if (res.Code == 1) { if (res.Code == 1) {
this.classPriceObj = res.Data; this.classPriceObj = res.Data;
console.log(" this.classPriceObj", this.classPriceObj);
} }
}); });
}, },
...@@ -304,24 +303,30 @@ ...@@ -304,24 +303,30 @@
}, },
//退课单据审核 //退课单据审核
saveBackClassInfo() { saveBackClassInfo() {
console.log("this.tempPeople", this.tempPeople); var str = "";
if (this.tempPeople && this.tempPeople.length > 0) { if (this.tempPeople && this.tempPeople.length > 0) {
this.tempPeople.forEach(item => {
str += "," + item;
})
}
if (str && str != '') {
str = str.substr(1);
} }
// saveBackBillAduit(this.backBillMsg).then(res => { this.backBillMsg.RecipientIds = str;
// if (res.Code == 1) { saveBackBillAduit(this.backBillMsg).then(res => {
// this.$q.notify({ if (res.Code == 1) {
// icon: 'iconfont icon-chenggong', this.$q.notify({
// color: 'accent', icon: 'iconfont icon-chenggong',
// timeout: 2000, color: 'accent',
// message: '审核成功!', timeout: 2000,
// position: 'top' message: '审核成功!',
// }) position: 'top'
// //调用父页面成功方法 })
// this.$emit('success'); //调用父页面成功方法
// this.$emit('close'); this.$emit('success');
// } this.$emit('close');
// }) }
})
}, },
//获取员工列表 //获取员工列表
getEmployee() { getEmployee() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment