Ver código fonte

refactor: vue3

xingyu 2 anos atrás
pai
commit
b3913a86f8

+ 3 - 3
yudao-ui-admin-vue3/package.json

@@ -1,7 +1,7 @@
 {
   "name": "ruoyi-vue-pro-vue3",
-  "version": "0.0.160",
-  "description": "基于vue3、element-plus、typesScript、vite3",
+  "version": "1.0.160",
+  "description": "基于vue3、element-plus、typesScript、vite3",
   "author": "xingyu",
   "private": false,
   "scripts": {
@@ -93,7 +93,7 @@
     "typescript": "4.7.4",
     "unplugin-vue-define-options": "^0.6.2",
     "vite": "3.0.2",
-    "vite-plugin-eslint": "^1.6.1",
+    "vite-plugin-eslint": "^1.7.0",
     "vite-plugin-html": "^3.2.0",
     "vite-plugin-purge-icons": "^0.8.1",
     "vite-plugin-style-import": "^1.4.1",

+ 6 - 0
yudao-ui-admin-vue3/src/components/Table/src/Table.vue

@@ -294,3 +294,9 @@ export default defineComponent({
   }
 })
 </script>
+<style lang="less" scoped>
+:deep(.el-button.is-text) {
+  margin-left: 0;
+  padding: 8px 10px;
+}
+</style>

+ 1 - 2
yudao-ui-admin-vue3/src/router/index.ts

@@ -29,7 +29,7 @@ const router = createRouter({
   scrollBehavior: () => ({ left: 0, top: 0 })
 })
 
-// 路由白名单
+// 路由不重定向白名单
 const whiteList = [
   '/login',
   '/social-login',
@@ -96,7 +96,6 @@ export const resetRouter = (): void => {
       router.hasRoute(name) && router.removeRoute(name)
     }
   })
-  routes: remainingRouter as RouteRecordRaw[]
 }
 
 export const setupRouter = (app: App<Element>) => {

+ 1 - 1
yudao-ui-admin-vue3/src/views/infra/job/job.data.ts

@@ -79,7 +79,7 @@ const crudSchemas = reactive<CrudSchema[]>([
   },
   {
     field: 'action',
-    width: '400px',
+    width: '500px',
     label: t('table.action'),
     form: {
       show: false

+ 6 - 0
yudao-ui-admin-vue3/types/env.d.ts

@@ -9,7 +9,13 @@ declare module '*.vue' {
 
 interface ImportMetaEnv {
   readonly VITE_APP_TITLE: string
+  readonly VITE_PORT: number
+  readonly VITE_OPEN: boolean
+  readonly VITE_APP_TENANT_ENABLE: boolean
+  readonly VITE_BASE_URL: string
+  readonly VITE_UPLOAD_URL: string
   readonly VITE_API_BASEPATH: string
+  readonly VITE_API_URL: string
   readonly VITE_BASE_PATH: string
   readonly VITE_DROP_DEBUGGER: string
   readonly VITE_DROP_CONSOLE: string