解绑手机号、可视化等

dev_2022-04-07
yujialong 3 years ago
parent 6d2fb7b0e2
commit 267534fddc
  1. BIN
      src/assets/img/screen/jt.png
  2. BIN
      src/assets/img/screen/lbx.png
  3. BIN
      src/assets/img/screen/map.png
  4. 12
      src/pages/account/login/index.vue
  5. 14
      src/pages/screen/list/index.vue
  6. 14
      src/pages/setting/person/info.vue
  7. 2
      src/pages/user/list/index.vue
  8. 4
      src/setting.js
  9. 54
      src/styles/page/screen.scss

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 302 KiB

@ -149,14 +149,16 @@ export default {
this.$refs.login.validate(valid => {
if (valid) {
this.$post(this.api.logins, this.form).then(res => {
this.token = res.data.token
this.setLogin()
}).catch(res => {
//
if (res && res.status == 30001) this.phoneVisible = true
if (res && res.status == 30001) {
this.phoneVisible = true
this.getVerImg()
this.form.code = ''
})
} else {
this.token = res.data.token
this.setLogin()
}
}).catch(res => {})
}
})
},

@ -152,7 +152,7 @@
</table>
</div>
</div>
<div class="item" style="height: 520px">
<div class="item" style="height: 520px;">
<!--左上边框-->
<div class="t_line_box">
<i class="t_l_line"></i>
@ -177,6 +177,11 @@
<img src="@/assets/img/screen/t_3.png" alt="">
主要央行利率
</div>
<div class="earth">
<img class="lbx" src="@/assets/img/screen/lbx.png" alt="">
<img class="jt" src="@/assets/img/screen/jt.png" alt="">
<img class="map" src="@/assets/img/screen/map.png" alt="">
</div>
<div class="chart" id="chart7" style="height: 500px"></div>
</div>
</div>
@ -788,7 +793,7 @@ export default {
trigger: 'axis'
},
grid: {
left: '18%',
left: '80',
right: '12%',
bottom: '12%'
},
@ -1114,7 +1119,7 @@ export default {
//
visualMap: {
type: 'continuous', // continuous piecewise
show: true, // visualMap-continuous false
show: false, // visualMap-continuous false
// visualMapContinuous /'min'/'max'
// [visualMap.min, visualMax.max]
min: 0,
@ -1125,10 +1130,9 @@ export default {
color: '#fff'
},
realtime: false, //
calculable: true, //
//
inRange: {
color: ['#9fb5ea', '#e6ac53', '#74e2ca', '#85daef', '#9feaa5', '#5475f5'] //
color: ['#337cfd', '#e6ac53', '#74e2ca', '#85daef', '#9feaa5', '#5475f5'] //
}
},
series: [

@ -130,7 +130,8 @@
<li>
<label>手机号</label>
<el-input class="m-r-10" type="text" size="small" v-model="form.phone" disabled></el-input>
<el-button type="text" size="small" @click="bindPhone">更换</el-button>
<el-button type="text" size="small" @click="bindPhone">{{ form.phone ? '更换' : '绑定' }}</el-button>
<el-button v-if="form.phone" type="text" size="small" @click="unbind">解绑</el-button>
</li>
</div>
<div class="line info imp">
@ -534,6 +535,17 @@ export default {
bindPhone() {
this.phoneVisible = true
},
//
unbind() {
this.$confirm('确定要解绑该手机号吗?', '提示', {
type: 'warning'
}).then(() => {
this.$get(this.api.unbindMobilePhone).then(res => {
this.$message.success('解绑成功')
this.getdata()
}).catch(res => {})
}).catch(() => {})
},
bindPassword() {
this.passwordVisible = true
},

@ -337,7 +337,7 @@ export default {
renderAccount() {
const form = this.form
// id-id-schoolId-workNumber
form.account = `${Setting.platformId}-2-${this.schoolId}-${form.workNumber}`
form.account = `${Setting.platformId}-${Setting.platformType}-${this.schoolId}-${form.workNumber}`
},
workNumberChange(){
if(this.form.workNumber && this.form.workNumber !== this.originalWorkNumber){

@ -52,6 +52,10 @@ const Setting = {
* 所属平台1->职站 2->数据平台 3->中台
*/
platformId: 2,
/**
* 平台端区分0->教师端 1->学生端 2->无端
*/
platformType: 2,
/**
* 多语言配置
* */

@ -77,6 +77,60 @@
right: -3px;
bottom: -3px;
}
.earth {
z-index: 0;
position: absolute;
width: 100%;
height: 100%;
overflow: hidden;
img {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
opacity: .4;
}
.lbx {
z-index: 2;
max-width: 95%;
max-height: 95%;
animation: rotate 15s linear infinite;
}
.jt {
z-index: 3;
max-width: 90%;
max-height: 90%;
opacity: .3;
animation: rotate-reverse 15s linear infinite;
}
.map {
z-index: 1;
max-width: 85%;
max-height: 85%;
}
}
@keyframes rotate {
0% {
transform: translate(-50%, -50%) rotate(0);
}
50% {
transform: translate(-50%, -50%) rotate(180deg);
}
100% {
transform: translate(-50%, -50%) rotate(360deg);
}
}
@keyframes rotate-reverse {
0% {
transform: translate(-50%, -50%) rotate(0360deg);
}
50% {
transform: translate(-50%, -50%) rotate(180deg);
}
100% {
transform: translate(-50%, -50%) rotate(0);
}
}
}
.main_table {
width: 100%;

Loading…
Cancel
Save