Commit 6711a0d4 by Tang

feat: 添加模拟登陆,修复admin页面,字体修改

parent bc3a39fd
......@@ -163,14 +163,14 @@ export default {
label: '所属分中心',
},
{
label: '操作',
label: '审核',
renderCell: (value, row) => (
<el-button type="text"
vOn:click_stop_prevent={() => {
this.handleCheck(row)
}}
>
操作
审核
</el-button>
),
},
......@@ -292,5 +292,11 @@ export default {
//border-left: 1px solid white;
}
}
.el-button{
font-size: 13px;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 600;
}
}
</style>
......@@ -232,5 +232,11 @@ export default {
//border-left: 1px solid white;
}
}
.el-button{
font-size: 13px;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 600;
}
}
</style>
......@@ -232,5 +232,11 @@ export default {
//border-left: 1px solid white;
}
}
.el-button{
font-size: 13px;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 600;
}
}
</style>
......@@ -116,7 +116,7 @@ export default {
{
prop: 'status2',
label: '原审核状态',
renderCell: (value, row) => (
renderCell: (value) => (
<span style={{color: value === '审核失败' ? '#F31F1F' : '#02B4A1'}}>
{value}
</span>
......@@ -252,5 +252,11 @@ export default {
//border-left: 1px solid white;
}
}
.el-button{
font-size: 13px;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 600;
}
}
</style>
......@@ -112,7 +112,7 @@ export default {
loginByUser() {
this.$refs['userLoginFormRef'].validate((valid) => {
if (valid) {
if (this.userForm.validateCode === 'kjjj') {
if (this.userForm.validateCode.toLowerCase() === 'kjjj') {
if (this.userForm.userName === 'test' && this.userForm.password === 'test') {
localStorage.setItem('gs-user', JSON.stringify({type: 'unVerify'}))
this.$router.push({path: '/MyManage/UnVerify/index'})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment