修改logo

master
夜笙歌 2 years ago
parent d7ae593a2e
commit 75b607bbde

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 52 KiB

@ -8,20 +8,12 @@
<div class="right-menu">
<template v-if="appStore.device !== 'mobile'">
<el-tooltip content="中英文切换" effect="dark" placement="bottom">
<el-icon style="width: 18px;height: 100%;cursor:pointer;" @click="lang">
<SwitchFilled style="width: 18px;height: 18px"/>
<el-icon style="font-size: 18px;height: 100%;cursor:pointer;" @click="lang">
<Switch style="font-size: 18px"/>
</el-icon>
</el-tooltip>
<header-search id="header-search" class="right-menu-item"/>
<el-tooltip content="源码地址" effect="dark" placement="bottom">
<ruo-yi-git id="ruoyi-git" class="right-menu-item hover-effect"/>
</el-tooltip>
<el-tooltip content="文档地址" effect="dark" placement="bottom">
<ruo-yi-doc id="ruoyi-doc" class="right-menu-item hover-effect"/>
</el-tooltip>
<screenfull id="screenfull" class="right-menu-item hover-effect"/>
<el-tooltip content="布局大小" effect="dark" placement="bottom">

@ -54,8 +54,8 @@ const sideTheme = computed(() => settingsStore.sideTheme);
width: 100%;
& .sidebar-logo {
width: 216px;
height: 80px;
width: 100%;
height: 100%;
vertical-align: middle;
margin-right: 12px;
}

@ -242,7 +242,7 @@
<!-- 添加或修改岗位对话框 -->
<el-dialog :title="title" v-model="open" width="500px" append-to-body>
<el-form ref="postRef" :model="form" :rules="rules" :label-width=" locale ? '100px':'140px'">
<el-form ref="postRef" :model="form" :rules="rules" :label-width=" locale ? '100px':'140px'">
<el-form-item :label="t('tireManagement.tireFactoryCode')" prop="tyreFacCode">
<el-input v-model="form.tyreFacCode"
:placeholder=" t('common.pleaseEnter') + t('tireManagement.tireFactoryCode')"/>
@ -319,28 +319,27 @@ const locale = (Cookies.get('language') || 'zh-cn') === 'zh-cn'
const {proxy} = getCurrentInstance();
const {sys_normal_disable} = proxy.useDict("sys_normal_disable");
/**
* postList 表格数据
* open 模态框开关标识
* loading 表格加载状态开关标识
* showSearch 搜索区域开关标识
* ids 选择行id
* single 修改按钮是否可用标识
* multiple 删除按钮是否可用标识
* total 总条数
* title 模态框标题
* */
//
const postList = ref([]);
//
const open = ref(false);
//
const loading = ref(true);
//
const showSearch = ref(true);
// id
const ids = ref([]);
//
const single = ref(true);
//
const multiple = ref(true);
//
const total = ref(0);
//
const title = ref("");
//
const queryParams = ref({
pageNum: 1,
pageSize: 10,
@ -366,6 +365,7 @@ const queryParams = ref({
modifyName: null
})
//
const rules = {
brand: [{required: true, message: "轮胎品牌不能为空", trigger: "blur"}],
type: [{required: true, message: "轮胎型号不能为空", trigger: "blur"}],
@ -373,6 +373,7 @@ const rules = {
depth: [{required: true, message: "花纹深度不能为空", trigger: "blur"}],
}
//
const form = ref({});
/** 查询岗位列表 */

Loading…
Cancel
Save