正在显示
4 个修改的文件
包含
15 行增加
和
10 行删除
| ... | ... | @@ -5,13 +5,13 @@ module.exports = (vm) => { |
| 5 | 5 | /* config 为默认全局配置*/ |
| 6 | 6 | |
| 7 | 7 | // 测试环境 |
| 8 | - config.baseURL = "http://47.110.250.177:8000"; | |
| 8 | + // config.baseURL = "http://47.110.250.177:8000"; | |
| 9 | 9 | |
| 10 | 10 | // 预生产环境 |
| 11 | 11 | // config.baseURL = "https://api-isxpre.workai.com.cn"; |
| 12 | 12 | |
| 13 | 13 | // 线上环境 |
| 14 | - // config.baseURL = "https://api-isx.workai.com.cn"; | |
| 14 | + config.baseURL = "https://api-isx.workai.com.cn"; | |
| 15 | 15 | |
| 16 | 16 | config.header = { |
| 17 | 17 | // 'content-type': 'xxx' | ... | ... |
| ... | ... | @@ -104,7 +104,7 @@ |
| 104 | 104 | </view> |
| 105 | 105 | <view style="margin-top: 32rpx;"> |
| 106 | 106 | <u-grid :col="3" :border="false"> |
| 107 | - <u-grid-item v-for="(item, index) in picList" :key="index"> | |
| 107 | + <u-grid-item v-for="(item, index) in picList" :key="index" @click="openImage(item)"> | |
| 108 | 108 | <u-image :height="196" :width="196" :src="item"></u-image> |
| 109 | 109 | </u-grid-item> |
| 110 | 110 | </u-grid> | ... | ... |
| ... | ... | @@ -265,15 +265,13 @@ |
| 265 | 265 | |
| 266 | 266 | getCategoryList(e) { |
| 267 | 267 | if (e == 'hro_platform') { |
| 268 | - return 'HRO平台' | |
| 268 | + return '平台岗位' | |
| 269 | 269 | }else if (e == 'hr_platform') { |
| 270 | - return 'HR平台' | |
| 270 | + return '平台岗位' | |
| 271 | 271 | }else if (e == 'school') { |
| 272 | 272 | return '学校创建' |
| 273 | 273 | }else if (e == 'student') { |
| 274 | - return '学生端自主添加' | |
| 275 | - }else if (e == 'platform') { | |
| 276 | - return '平台推荐' | |
| 274 | + return '自主添加' | |
| 277 | 275 | } |
| 278 | 276 | return '' |
| 279 | 277 | }, | ... | ... |
| ... | ... | @@ -517,7 +517,12 @@ |
| 517 | 517 | |
| 518 | 518 | if (roles.length < 2) { |
| 519 | 519 | this.$u.toast('暂无可切换权限') |
| 520 | - } else { | |
| 520 | + } else { | |
| 521 | + | |
| 522 | + uni.showLoading({ | |
| 523 | + title: '努力加载中~', | |
| 524 | + mask: true | |
| 525 | + }) | |
| 521 | 526 | |
| 522 | 527 | let selectRoles = roles.filter(item => item.id != this.teacher.roleId); |
| 523 | 528 | |
| ... | ... | @@ -530,7 +535,9 @@ |
| 530 | 535 | |
| 531 | 536 | getTodoListStatisticsApi().then(data => { |
| 532 | 537 | if (data) { |
| 533 | - this.statistics = data; | |
| 538 | + this.statistics = data; | |
| 539 | + | |
| 540 | + uni.hideLoading(); | |
| 534 | 541 | } |
| 535 | 542 | }) |
| 536 | 543 | } | ... | ... |
请
注册
或
登录
后发表评论