修改冀北现场反馈问题
This commit is contained in:
@@ -8,7 +8,9 @@
|
||||
size="18"
|
||||
/>
|
||||
</div>
|
||||
<span class="nav-bar-title">{{ getTheme.name }}</span>
|
||||
<span class="nav-bar-title">{{ getTheme.name }} <span style="font-size: 14px;" v-if="Version?.versionName">
|
||||
({{ Version?.versionName }})
|
||||
</span></span>
|
||||
<NavMenus />
|
||||
</div>
|
||||
</template>
|
||||
@@ -18,7 +20,8 @@ import { useConfig } from '@/stores/config'
|
||||
import NavTabs from '@/layouts/admin/components/navBar/tabs.vue'
|
||||
import NavMenus from '../navMenus.vue'
|
||||
import { showShade } from '@/utils/pageShade'
|
||||
|
||||
import { getLastData } from '@/api/systerm'
|
||||
const Version: any = ref({})
|
||||
const config = useConfig()
|
||||
const getTheme = JSON.parse(window.localStorage.getItem('getTheme') as string)
|
||||
|
||||
@@ -29,6 +32,10 @@ const onMenuCollapse = () => {
|
||||
config.setLayout('menuCollapse', false)
|
||||
}
|
||||
onMounted(() => {
|
||||
// getLastData({ versionType: 'WEB' }).then(res => {
|
||||
// Version.value = res.data
|
||||
|
||||
// })
|
||||
document.title = getTheme.name
|
||||
})
|
||||
</script>
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
<template>
|
||||
<el-dialog draggable class="cn-operate-dialog" v-model="dialogVisible" :title="title">
|
||||
<el-scrollbar>
|
||||
<el-form :inline="false" :model="form" label-width="120px">
|
||||
<el-dialog draggable width="600px" v-model="dialogVisible" :title="title">
|
||||
<el-form :inline="false" :model="form" label-width="auto" class="form-one">
|
||||
<el-form-item label="用户名称:">
|
||||
<el-input v-model="form.name" :disabled="true"></el-input>
|
||||
</el-form-item>
|
||||
@@ -21,7 +20,7 @@
|
||||
<el-input v-model="form.email" :disabled="true"></el-input>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</el-scrollbar>
|
||||
|
||||
</el-dialog>
|
||||
</template>
|
||||
<script lang="ts" setup>
|
||||
|
||||
Reference in New Issue
Block a user