lex-xin 4 년 전
부모
커밋
b00b343d06
6개의 변경된 파일8개의 추가작업 그리고 5개의 파일을 삭제
  1. 0 0
      dist/app.fc37fd102798f145921b.js
  2. 0 0
      dist/css/VIPApply.121114c2.css
  3. 0 0
      dist/css/VIPApply.74166682.css
  4. 0 0
      dist/index.html
  5. 0 0
      dist/js/VIPApply.7f0209fc.js
  6. 8 5
      src/views/teacher/VIPApply.vue

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/app.fc37fd102798f145921b.js


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/css/VIPApply.121114c2.css


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/css/VIPApply.74166682.css


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/index.html


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/js/VIPApply.7f0209fc.js


+ 8 - 5
src/views/teacher/VIPApply.vue

@@ -391,12 +391,15 @@
 						let result = res.data
 						if (result.code == 200 && result.data.length > 0) {
 							let tempArr = []
+							let regStr = new RegExp('双十一')
 							result.data.forEach(item => {
-								item.value = item.id
-								item.text = item.name
-								item.startTime = item.startTime ? item.startTime.split(' ')[0] : null, // 报名开始时间
-									item.endTime = item.endTime ? item.endTime.split(' ')[0] : null // 报名结束时间
-								tempArr.push(item)
+								if(!regStr.test(item.name)) {
+									item.value = item.id
+									item.text = item.name
+									item.startTime = item.startTime ? item.startTime.split(' ')[0] : null, // 报名开始时间
+										item.endTime = item.endTime ? item.endTime.split(' ')[0] : null // 报名结束时间
+									tempArr.push(item)
+								}
 							})
 							this.loadData.vipGroupActivity = tempArr
 							sheetForm.columns = tempArr

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.