Commit 4fc12a0c by caoyanzhi

update: UI调整

parent d80f407a
...@@ -62,6 +62,7 @@ export default { ...@@ -62,6 +62,7 @@ export default {
z-index: 1; z-index: 1;
transform: translate(0, -50%); transform: translate(0, -50%);
font-size: 16px; font-size: 16px;
color: #303133;
} }
} }
.aside-menu-list-title, .aside-menu-list-title,
......
<template> <template>
<div class="guide-setting"> <div class="guide-setting">
<p class="app-auth-tip">设置导购可见应用</p> <p class="app-auth-tip">设置导购可见应用</p>
<el-row> <el-checkbox-group v-model="settingData.checked">
<el-checkbox-group v-model="settingData.checked"> <el-checkbox v-for="el in allApps" :key="el.applicationId" :label="el.applicationId" style="margin-left: 0">{{ el.applicationName }}</el-checkbox>
<el-col :span="3" v-for="el in allApps" :key="el.applicationId" style="margin-bottom: 12px"> </el-checkbox-group>
<el-checkbox :label="el.applicationId">{{ el.applicationName }}</el-checkbox>
</el-col>
</el-checkbox-group>
</el-row>
<el-button class="save-btn" v-if="$getButtonLimit($buttonCode.saveAppsVisible)" :limit-code="$buttonCode.saveAppsVisible" :loading="loading" type="primary" @click="onSave">保存</el-button> <el-button class="save-btn" v-if="$getButtonLimit($buttonCode.saveAppsVisible)" :limit-code="$buttonCode.saveAppsVisible" :loading="loading" type="primary" @click="onSave">保存</el-button>
</div> </div>
</template> </template>
......
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