|
@@ -164,6 +164,20 @@ export default {
|
|
|
return str;
|
|
|
},
|
|
|
async submit() {
|
|
|
+ let flag = false;
|
|
|
+ console.log(this.dataList)
|
|
|
+
|
|
|
+ this.dataList.forEach(stu=>{
|
|
|
+ stu.courseList.forEach(course=>{
|
|
|
+ if(!(course.courseCurrentPrice+'')){
|
|
|
+ flag = true
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
+ if(flag){
|
|
|
+ this.$message.error('请填写完成的缴费信息')
|
|
|
+ return
|
|
|
+ }
|
|
|
let obj = {};
|
|
|
let some = this.getData();
|
|
|
if (some) {
|