Browse Source

优化描述

zhontai 2 years ago
parent
commit
3fbaecd2fd

+ 0 - 1
src/stores/themeConfig.ts

@@ -2,7 +2,6 @@ import { defineStore } from 'pinia'
 
 /**
  * 布局配置
- * 2020.05.28 by lyt 优化。开发时配置不生效问题
  * 修改配置时:
  * 1、需要每次都清理 `window.localStorage` 浏览器永久缓存
  * 2、或者点击布局配置最底部 `一键恢复默认` 按钮即可看到效果

+ 0 - 1
src/utils/toolsValidate.ts

@@ -1,5 +1,4 @@
 /**
- * 2020.11.29 lyt 整理
  * 工具类集合,适用于平时开发
  * 新增多行注释信息,鼠标放到方法名即可查看
  */

+ 3 - 3
src/views/example/chart/index.vue

@@ -256,9 +256,9 @@ const initChartsCenterOne = () => {
           },
         },
         data: [
-          { name: 'vue-next-admin', value: 520 },
-          { name: 'lyt', value: 520 },
-          { name: 'next-admin', value: 500 },
+          { name: 'admin.ui.plus', value: 520 },
+          { name: 'xiaoxue', value: 520 },
+          { name: 'zhontai-admin', value: 500 },
           { name: '更名', value: 420 },
           { name: '智慧农业', value: 520 },
           { name: '男神', value: 2.64 },

+ 3 - 3
src/views/example/pages/formRules/index.vue

@@ -33,9 +33,9 @@ const pagesFormRulesTwoRef = ref()
 const pagesFormRulesThreeRef = ref()
 const state = reactive({
   formRulesOneData: {
-    name: 'lyt',
-    email: 'lyt123@.com',
-    autograph: 'lyt123456',
+    name: 'user',
+    email: 'user@126.com',
+    autograph: 'user123456',
     occupation: '1',
   },
 })

+ 3 - 23
src/views/example/personal/mock.ts

@@ -4,29 +4,9 @@
  */
 export const newsInfoList = [
   {
-    title: '[发布] 2021年02月28日发布基于 vue3.x + vite v1.0.0 版本',
-    date: '02/28',
-    link: 'https://gitee.com/lyt-top/vue-next-admin',
-  },
-  {
-    title: '[发布] 2021年04月15日发布 vue2.x + webpack 重构版本',
-    date: '04/15',
-    link: 'https://gitee.com/lyt-top/vue-next-admin/tree/vue-prev-admin/',
-  },
-  {
-    title: '[重构] 2021年04月10日 重构 vue2.x + webpack v1.0.0 版本',
-    date: '04/10',
-    link: 'https://gitee.com/lyt-top/vue-next-admin/tree/vue-prev-admin/',
-  },
-  {
-    title: '[预览] 2020年12月08日,基于 vue3.x 版本后台模板的预览',
-    date: '12/08',
-    link: 'http://lyt-top.gitee.io/vue-next-admin-preview/#/login',
-  },
-  {
-    title: '[预览] 2020年11月15日,基于 vue2.x 版本后台模板的预览',
-    date: '11/15',
-    link: 'https://lyt-top.gitee.io/vue-prev-admin-preview/#/login',
+    title: '[发布] 2022年12月21日发布基于 vue3.x + vite v1.0.0 版本',
+    date: '21/21',
+    link: 'https://gitee.com/zhontai/admin.ui.plus',
   },
 ]
 

+ 2 - 2
src/views/example/system/dept/component/editDept.vue

@@ -89,9 +89,9 @@ const state = reactive({
 // 打开弹窗
 const openDialog = (row: RowDeptType) => {
   row.deptLevel = ['vueNextAdmin']
-  row.person = 'lyt'
+  row.person = 'user'
   row.phone = '12345678910'
-  row.email = 'vueNextAdmin@123.com'
+  row.email = 'user@126.com'
   state.ruleForm = row
   state.isShowDialog = true
 }

+ 2 - 2
src/views/example/system/dept/dialog.vue

@@ -99,9 +99,9 @@ const state = reactive({
 const openDialog = (type: string, row: RowDeptType) => {
   if (type === 'edit') {
     row.deptLevel = ['vueNextAdmin']
-    row.person = 'lyt'
+    row.person = 'user'
     row.phone = '12345678910'
-    row.email = 'vueNextAdmin@123.com'
+    row.email = 'user@126.com'
     state.ruleForm = row
     state.dialog.title = '修改部门'
     state.dialog.submitTxt = '修 改'