소스 검색

课表

临城职教中职
杨晓琪 2 년 전
부모
커밋
f0b3f727f4
3개의 변경된 파일954개의 추가작업 그리고 338개의 파일을 삭제
  1. +15
    -0
      Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/js/common.js
  2. +2
    -1
      Learun.Framework.Ultimate V7/LearunApp-2.2.0/config.js
  3. +937
    -337
      Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/timeTable/list.vue

+ 15
- 0
Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/js/common.js 파일 보기

@@ -38,6 +38,21 @@ export default {
Sunday: this.fmtDate(SundayTime)
}
},
weekday2() { //根据今天得到周一与周日的时间
var now = new Date(); 
var nowTime = now.getTime(); 
var day = now.getDay();
//显示周一
var MondayTime = nowTime - (day - 1) * this.oneDayTime() ; 
//显示周日
var SundayTime =  nowTime + (14 - day) * this.oneDayTime() ; 
return {
MondayTime: MondayTime,
Monday: this.fmtDate(MondayTime),
SundayTime: SundayTime,
Sunday: this.fmtDate(SundayTime)
}
},
compare (key) {
return (obj1, obj2) => {
let value1 = obj1[key]


+ 2
- 1
Learun.Framework.Ultimate V7/LearunApp-2.2.0/config.js 파일 보기

@@ -21,7 +21,8 @@ export default {
// "http://192.168.2.98:8088/"
// ],
"apiHost": [
"http://localhost:31173/"
// "http://localhost:31173/"
"http://192.168.10.58:8012/"
],
// 开发环境下自动填充登录账号密码,与接口地址一一对应,只在开发环境下显示
"devAccount": [


+ 937
- 337
Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/timeTable/list.vue
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


불러오는 중...
취소
저장