mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-06-12 10:00:56 +08:00
v1.9 解决张峰提出的问题
This commit is contained in:
parent
266b99a2d9
commit
21d75ed245
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-dialog :title="$t('systemInfo.editTitle')" :visible="visible" width="70%" :close-on-click-modal="false">
|
<el-dialog :title="$t('systemInfo.editTitle')" :visible="visible" width="70%" :close-on-click-modal="true" @close="close">
|
||||||
<el-form ref="form" :model="formData" label-width="150px" :rules="rules">
|
<el-form ref="form" :model="formData" label-width="150px" :rules="rules">
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
@ -64,14 +64,12 @@
|
|||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item :label="$t('systemInfo.propertyTitle')" prop="propertyTitle">
|
<el-form-item :label="$t('systemInfo.propertyTitle')" prop="propertyTitle">
|
||||||
<el-input v-model="formData.propertyTitle"
|
<el-input v-model="formData.propertyTitle" />
|
||||||
/>
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item :label="$t('systemInfo.qqMapKey')" prop="qqMapKey">
|
<el-form-item :label="$t('systemInfo.qqMapKey')" prop="qqMapKey">
|
||||||
<el-input v-model="formData.qqMapKey"
|
<el-input v-model="formData.qqMapKey" />
|
||||||
/>
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
@ -79,8 +77,7 @@
|
|||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item :label="$t('systemInfo.mallUrl')" prop="mallUrl">
|
<el-form-item :label="$t('systemInfo.mallUrl')" prop="mallUrl">
|
||||||
<el-input v-model="formData.mallUrl"
|
<el-input v-model="formData.mallUrl" />
|
||||||
/>
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
@ -164,6 +161,9 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
close() {
|
||||||
|
this.visible = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -654,6 +654,10 @@ const routes = [
|
|||||||
icon: 'el-icon-s-home'
|
icon: 'el-icon-s-home'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/login',
|
||||||
|
redirect: '/views/user/login'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: '/views/resource/printEquipmentAccountLabel',
|
path: '/views/resource/printEquipmentAccountLabel',
|
||||||
name: '/views/resource/printEquipmentAccountLabel',
|
name: '/views/resource/printEquipmentAccountLabel',
|
||||||
|
|||||||
@ -315,6 +315,10 @@ export default {
|
|||||||
},
|
},
|
||||||
_toIndex(){
|
_toIndex(){
|
||||||
location.href = '/'
|
location.href = '/'
|
||||||
|
},
|
||||||
|
_closeSubMenu(){
|
||||||
|
this.subMenus = []
|
||||||
|
this.curMenuName = ''
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -91,11 +91,7 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
|
|
||||||
<edit-system-info
|
<edit-system-info ref="editSystemInfoRef" :form-data="systemInfo" @success="handleEditSuccess" />
|
||||||
ref="editSystemInfoRef"
|
|
||||||
:form-data="systemInfo"
|
|
||||||
@success="handleEditSuccess"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user