fix(1-5): 🐛 优化系统问题

This commit is contained in:
H0nGzA1
2023-02-27 09:08:44 +08:00
parent 050956a797
commit 1af94094f9
8 changed files with 112 additions and 96 deletions

View File

@@ -2,7 +2,7 @@
ENV = 'production'
# 线上环境接口地址
VITE_API_URL = 'https://lyt-top.gitee.io/vue-next-admin-preview/'
VITE_API_URL = ''
# 是否启用按钮权限
VITE_PM_ENABLED = true

View File

@@ -13,7 +13,7 @@
content="django-vue3-admin基于 vue3 + CompositionAPI + typescript + vite + element plus, 是一款全栈,快速,开源的后台管理系统!"
/>
<link rel="icon" href="/favicon.ico" />
<title>vue-next-admin</title>
<title>django-vue3-admin</title>
</head>
<body>
<div id="app"></div>

View File

@@ -2,54 +2,53 @@ import { defineStore } from 'pinia';
import { DictionaryStates } from './interface';
import { request } from '../utils/service';
export const urlPrefix = '/api/init/dictionary/'
export const urlPrefix = '/api/init/dictionary/';
export const BUTTON_VALUE_TO_COLOR_MAPPING: any = {
1: 'success',
true: 'success',
0: 'danger',
false: 'danger',
Search: 'warning', // 查询
Update: 'primary', // 编辑
Create: 'success', // 新增
Retrieve: 'info', // 单例
Delete: 'danger' // 删除
}
1: 'success',
true: 'success',
0: 'danger',
false: 'danger',
Search: 'warning', // 查询
Update: 'primary', // 编辑
Create: 'success', // 新增
Retrieve: 'info', // 单例
Delete: 'danger', // 删除
};
export function getButtonSettings(objectSettings: any) {
return objectSettings.map((item: any) => ({
label: item.label,
value: item.value,
color: item.color || BUTTON_VALUE_TO_COLOR_MAPPING[item.value]
}))
return objectSettings.map((item: any) => ({
label: item.label,
value: item.value,
color: item.color || BUTTON_VALUE_TO_COLOR_MAPPING[item.value],
}));
}
/**
* 字典管理数据
* @methods getSystemDictionarys 获取系统字典数据
*/
export const DictionaryStore = defineStore('Dictionary', {
state: (): DictionaryStates => ({
data: {}
}),
actions: {
async getSystemDictionarys() {
request({
url: '/api/init/dictionary/?dictionary_key=all',
method: 'get',
}).then((ret: {
data: []
}) => {
// 转换数据格式并保存到pinia
let dataList = ret.data
dataList.forEach((item: any) => {
let childrens = item.children
this.data[item.value] = childrens
})
})
},
},
persist: {
enabled: true,
},
state: (): DictionaryStates => ({
data: {},
}),
actions: {
async getSystemDictionarys() {
request({
url: '/api/init/dictionary/?dictionary_key=all',
method: 'get',
}).then((ret: { data: [] }) => {
// 转换数据格式并保存到pinia
let dataList = ret.data;
dataList.forEach((item: any) => {
let childrens = item.children;
console.log(item);
this.data[item.value] = childrens;
});
});
},
},
persist: {
enabled: true,
},
});

View File

@@ -141,7 +141,7 @@ export const useThemeConfig = defineStore('themeConfig', {
// 网站副标题(登录页顶部文字)
globalViceTitle: 'dvadmin',
// 网站副标题(登录页顶部文字)
globalViceTitleMsg: '企业级后台管理系统',
globalViceTitleMsg: '企业级快速开发平台',
// 默认初始语言,可选值"<zh-cn|en|zh-tw>",默认 zh-cn
globalI18n: 'zh-cn',
// 默认全局组件大小,可选值"<large|'default'|small>",默认 'large'

View File

@@ -17,7 +17,7 @@ export default defineComponent({
const initQrcode = () => {
(qrcodeRef.value as HTMLElement).innerHTML = '';
new QRCode(qrcodeRef.value, {
text: `https://qm.qq.com/cgi-bin/qm/qr?k=RdUY97Vx0T0vZ_1OOu-X1yFNkWgDwbjC&jump_from=webapi`,
text: `https://jq.qq.com/?_wv=1027&k=8keWoTap`,
width: 260,
height: 260,
colorDark: '#000000',

View File

@@ -25,9 +25,10 @@
<el-tab-pane :label="$t('message.label.one1')" name="account">
<Account />
</el-tab-pane>
<el-tab-pane :label="$t('message.label.two2')" name="mobile">
<!-- TODO 手机号码登录未接入展示隐藏 -->
<!-- <el-tab-pane :label="$t('message.label.two2')" name="mobile">
<Mobile />
</el-tab-pane>
</el-tab-pane> -->
</el-tabs>
</div>
<Scan v-if="state.isScan" />

View File

@@ -83,6 +83,7 @@ export const createCrudOptions = function ({ crudExpose, menuButtonRef }: { crud
},
},
rowHandle: {
width: 310,
buttons: {
custom: {
text: '按钮配置',
@@ -231,7 +232,9 @@ export const createCrudOptions = function ({ crudExpose, menuButtonRef }: { crud
},
sort: {
title: '排序',
width: 60,
column: {
width: 60,
},
type: 'number',
form: {
value: 1,
@@ -242,6 +245,9 @@ export const createCrudOptions = function ({ crudExpose, menuButtonRef }: { crud
},
is_catalog: {
title: '是否目录',
column: {
width: 60,
},
type: 'dict-switch',
dict: dict({
data: dictionary('button_whether_bool'),
@@ -368,7 +374,9 @@ export const createCrudOptions = function ({ crudExpose, menuButtonRef }: { crud
},
component_name: {
title: '组件名称',
width: 170,
column: {
width: 140,
},
form: {
rules: [{ required: true, message: '请输入组件名称' }],
component: {
@@ -391,7 +399,6 @@ export const createCrudOptions = function ({ crudExpose, menuButtonRef }: { crud
menuPermission: {
title: '拥有权限',
type: 'dict-select',
width: 300,
form: {
show: false,
component: {
@@ -403,13 +410,18 @@ export const createCrudOptions = function ({ crudExpose, menuButtonRef }: { crud
},
},
},
column: {
width: 260,
},
},
cache: {
title: '缓存',
column: {
width: 60,
},
search: {
show: true,
},
width: 60,
type: 'dict-switch',
dict: dict({
data: dictionary('button_whether_bool'),
@@ -432,10 +444,12 @@ export const createCrudOptions = function ({ crudExpose, menuButtonRef }: { crud
},
visible: {
title: '侧边可见',
column: {
width: 60,
},
search: {
show: true,
},
width: 75,
type: 'dict-switch',
dict: dict({
data: dictionary('button_whether_bool'),
@@ -462,7 +476,9 @@ export const createCrudOptions = function ({ crudExpose, menuButtonRef }: { crud
search: {
show: true,
},
width: 70,
column: {
width: 80,
},
type: 'dict-switch',
dict: dict({
data: dictionary('button_status_bool'),