File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11const Config = {
2- baseUrl : 'http://dev.lin.colorful3.com/' ,
2+ baseUrl : process . env . VUE_APP_BASE_URL ,
33 stagnateTime : 1 * 60 * 60 * 1000 , // 无操作停滞时间 默认1小时
44 openAutoJumpOut : true , // 是否开启无操作跳出
55 notLoginRoute : [ 'login' ] , // 无需登录即可访问的路由 name,
Original file line number Diff line number Diff line change 2727 >
2828 <el-input size =" medium" clearable type =" password" v-model =" form.confirm_password" autocomplete =" off" ></el-input >
2929 </el-form-item >
30- <el-form-item v-if =" pageType !== 'password'" label =" 选择分组" >
31- <el-select size =" medium" filterable v-model =" form.group_id" placeholder =" 请选择分组" >
30+ <el-form-item v-if =" pageType !== 'password'" label =" 选择分组" >
31+ <el-select size =" medium" filterable v-model =" form.group_id" :disabled = " groups.length === 0 " placeholder =" 请选择分组" >
3232 <el-option
3333 v-for =" item in groups"
3434 :key =" item.id"
@@ -122,7 +122,7 @@ export default {
122122 password: ' ' ,
123123 confirm_password: ' ' ,
124124 email: ' ' ,
125- group_id: 0 ,
125+ group_id: ' 请先创建分组 ' ,
126126 },
127127 // 验证规则
128128 rules: {
You can’t perform that action at this time.
0 commit comments