|
@@ -16,7 +16,8 @@
|
|
|
<div class="layout-navbars-breadcrumb-user-icon mr10" @click="onSearchClick" title="菜单搜索">
|
|
|
<SvgIcon name="ele-Search" size="18px"/>
|
|
|
</div>
|
|
|
- <div class="layout-navbars-breadcrumb-user-icon mr10" @click="onLayoutSetingClick" title="布局配置">
|
|
|
+ <Search ref="searchRef" />
|
|
|
+ <div class="layout-navbars-breadcrumb-user-icon mr10" @click="onLayoutSetingClick" title="布局配置" v-if="showSetting">
|
|
|
<SvgIcon name="icon-skin iconfont" size="18px"/>
|
|
|
</div>
|
|
|
<div class="layout-navbars-breadcrumb-user-icon mr10" title="消息">
|
|
@@ -73,7 +74,6 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</el-popover>
|
|
|
-
|
|
|
</div>
|
|
|
|
|
|
<!-- 锁频 -->
|
|
@@ -82,9 +82,7 @@
|
|
|
<el-form-item label="锁屏密码" prop="pwd" :rules="[{ required: true, message: '请输入锁屏密码', trigger: 'blur' }]">
|
|
|
<el-input show-password placeholder="请输入密码" v-model="state.ruleForm.pwd" @keyup.enter="confirmLock(ruleFormRef)">
|
|
|
<template #prefix>
|
|
|
- <el-icon class="el-input__icon">
|
|
|
- <ele-Unlock />
|
|
|
- </el-icon>
|
|
|
+ <SvgIcon name="ele-Unlock" />
|
|
|
</template>
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
@@ -110,9 +108,7 @@
|
|
|
autocomplete="off"
|
|
|
>
|
|
|
<template #prefix>
|
|
|
- <el-icon class="el-input__icon">
|
|
|
- <ele-Unlock />
|
|
|
- </el-icon>
|
|
|
+ <SvgIcon name="ele-Unlock" />
|
|
|
</template>
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
@@ -126,9 +122,7 @@
|
|
|
autocomplete="off"
|
|
|
>
|
|
|
<template #prefix>
|
|
|
- <el-icon class="el-input__icon">
|
|
|
- <ele-Unlock />
|
|
|
- </el-icon>
|
|
|
+ <SvgIcon name="ele-Unlock" />
|
|
|
</template>
|
|
|
</el-input>
|
|
|
<div class="intensity">
|
|
@@ -149,14 +143,11 @@
|
|
|
autocomplete="off"
|
|
|
>
|
|
|
<template #prefix>
|
|
|
- <el-icon class="el-input__icon">
|
|
|
- <ele-Unlock />
|
|
|
- </el-icon>
|
|
|
+ <SvgIcon name="ele-Unlock" />
|
|
|
</template>
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
-
|
|
|
<template #footer>
|
|
|
<span class="dialog-footer">
|
|
|
<el-button @click="showDutyDialog = false" class="default-button">取 消</el-button>
|