mirror of
https://github.com/chillzhuang/Saber.git
synced 2024-11-22 10:29:28 +08:00
⚡ 优化代码
This commit is contained in:
parent
6ae37e2753
commit
30cfb38ffb
@ -86,7 +86,6 @@
|
||||
index: true,
|
||||
selection: true,
|
||||
viewBtn: true,
|
||||
calcHeight:800,
|
||||
column: [
|
||||
{
|
||||
label: "登录账号",
|
||||
@ -103,13 +102,17 @@
|
||||
label: '密码',
|
||||
prop: 'password',
|
||||
hide: true,
|
||||
rules: [{validator: validatePass, trigger: 'blur'}]
|
||||
editDisplay: false,
|
||||
viewDisplay: false,
|
||||
rules: [{required: true, validator: validatePass, trigger: 'blur'}]
|
||||
},
|
||||
{
|
||||
label: '确认密码',
|
||||
prop: 'password2',
|
||||
hide: true,
|
||||
rules: [{validator: validatePass2, trigger: 'blur'}]
|
||||
editDisplay: false,
|
||||
viewDisplay: false,
|
||||
rules: [{required: true, validator: validatePass2, trigger: 'blur'}]
|
||||
},
|
||||
{
|
||||
label: "用户昵称",
|
||||
|
@ -2,7 +2,7 @@
|
||||
let baseUrl = './'
|
||||
let url = 'http://localhost:8800'
|
||||
module.exports = {
|
||||
baseUrl: baseUrl, // 根据你的实际情况更改这里
|
||||
publicPath: baseUrl, // 根据你的实际情况更改这里
|
||||
lintOnSave: true,
|
||||
productionSourceMap: false,
|
||||
chainWebpack: (config) => {
|
||||
|
Loading…
Reference in New Issue
Block a user