scorpio 2 роки тому
батько
коміт
75dfd03455

+ 5 - 5
.eslintrc.cjs

@@ -1,19 +1,19 @@
 module.exports = {
   env: {
     browser: true,
-    es2021: true,
+    es2021: true
   },
   extends: ['plugin:vue/vue3-essential', 'standard', 'prettier'],
   parserOptions: {
     ecmaVersion: 'latest',
-    sourceType: 'module',
+    sourceType: 'module'
   },
   plugins: ['vue', 'prettier'],
   rules: {
     'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
     'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
     'vue/multi-word-component-names': 'off',
-    'prettier/prettier': 'error',
+    'prettier/prettier': 'error'
   },
-  ignorePatterns: ['**/index.html'],
-};
+  ignorePatterns: ['**/index.html']
+}

+ 19 - 0
.prettierrc.cjs

@@ -0,0 +1,19 @@
+module.exports = {
+  // 一行的字符数,如果超过会进行换行,默认为80
+  printWidth: 80,
+  // 一个tab代表几个空格数,默认为80
+  tabWidth: 2,
+  // 是否使用tab进行缩进,默认为false,表示用空格进行缩减
+  useTabs: false,
+  // 字符串是否使用单引号,默认为false,使用双引号
+  singleQuote: true,
+  // 行位是否使用分号,默认为true
+  semi: false,
+  // 是否使用尾逗号,有三个可选值"<none|es5|all>"
+  trailingComma: 'none',
+  // 对象大括号直接是否有空格,默认为true,效果:{ foo: bar }
+  bracketSpacing: true,
+  arrowParens: 'avoid',
+  // 开启 eslint 支持
+  eslintIntegration: true,
+}

+ 1 - 0
package.json

@@ -34,6 +34,7 @@
     "@vitejs/plugin-vue": "^3.0.0",
     "axios": "^0.27.2",
     "eslint": "^8.0.1",
+    "eslint-config-prettier": "^8.8.0",
     "eslint-config-standard": "^17.0.0",
     "eslint-plugin-import": "^2.25.2",
     "eslint-plugin-n": "^15.0.0",

+ 9 - 4
src/App.vue

@@ -1,5 +1,5 @@
 <template>
-  <div id='app'>
+  <div id="app">
     <router-view />
   </div>
 </template>
@@ -9,13 +9,18 @@
 // Check out https://vuejs.org/api/sfc-script-setup.html#script-setup
 
 export default {
-  data () {
+  data() {
     return {
       data: ''
     }
   },
-  created () {
-    console.info('%c由%c梧桐经济研究院%c提供技术支持,版本号: v1.0.0', 'font-size: 14px; margin-bottom: 2px; padding: 6px 8px; color: #fff; background: #707070;', 'font-size: 14px; margin-bottom: 2px; padding: 6px 8px; color: #fff; background: orange;', 'font-size: 14px; margin-bottom: 2px; padding: 6px 8px; color: #fff; background: #707070;')
+  created() {
+    console.info(
+      '%c由%c梧桐经济研究院%c提供技术支持,版本号: v1.0.0',
+      'font-size: 14px; margin-bottom: 2px; padding: 6px 8px; color: #fff; background: #707070;',
+      'font-size: 14px; margin-bottom: 2px; padding: 6px 8px; color: #fff; background: orange;',
+      'font-size: 14px; margin-bottom: 2px; padding: 6px 8px; color: #fff; background: #707070;'
+    )
   }
 }
 </script>

+ 2 - 2
src/store/keepAlive.js

@@ -9,13 +9,13 @@ export const keepAliveStore = defineStore('keepAliveStore', {
      * 添加浏览记录菜单
      * @param menu
      */
-    add (name) {
+    add(name) {
       this.list.includes(name) || this.list.push(name)
     },
     /**
      * 清空浏览记录菜单(用户退出时候,必须调调用此菜单)
      */
-    remove (name) {
+    remove(name) {
       this.list = this.list.filter(v => {
         return v !== name
       })

+ 2 - 2
src/store/nav.js

@@ -9,7 +9,7 @@ export const navStore = defineStore('navStore', {
      * 添加浏览记录菜单
      * @param menu
      */
-    updateMenu (menu) {
+    updateMenu(menu) {
       const index = this.menus.findIndex(m => m.path === menu.path)
       if (index === -1) {
         this.menus.push(menu)
@@ -20,7 +20,7 @@ export const navStore = defineStore('navStore', {
     /**
      * 清空浏览记录菜单(用户退出时候,必须调调用此菜单)
      */
-    cleanMenu () {
+    cleanMenu() {
       this.menus = []
     }
   }

+ 1 - 1
src/store/user.js

@@ -9,7 +9,7 @@ export const useStore = defineStore('useStore', {
     /**
      * 设置用户信息
      */
-    setUserInfo (info) {
+    setUserInfo(info) {
       this.info = info
     }
   }

+ 0 - 2
src/utils/auth.js

@@ -4,7 +4,6 @@ const RefreshTokenKey = 'refresh-token'
 export function getToken() {
   return Cookies.get(TokenKey)
 }
-
 export function setToken(token) {
   return Cookies.set(TokenKey, token)
 }
@@ -24,4 +23,3 @@ export function removeToken() {
 export function removeRefreshToken() {
   return Cookies.remove(RefreshTokenKey)
 }
-

+ 6 - 6
src/views/desk/index.vue

@@ -20,13 +20,13 @@ export default {
   name: 'index',
   data() {
     return {
-      drawer: false,
-    };
+      drawer: false
+    }
   },
   methods: {
     push() {
-      this.$router.push('/');
-    },
-  },
-};
+      this.$router.push('/')
+    }
+  }
+}
 </script>

+ 2 - 2
src/views/home/dash.vue

@@ -9,6 +9,6 @@
 
 <script>
 export default {
-  name: 'dash',
-};
+  name: 'dash'
+}
 </script>

+ 20 - 20
src/views/home/index.vue

@@ -1,5 +1,5 @@
 <template>
-  <screen class='flex content flex-col'>
+  <screen class="flex content flex-col">
     <div class="top">22</div>
     <div class="full-width flex">
       <div class="box flex flex-center blod font-32" ref="content">
@@ -39,8 +39,8 @@ import { useStore } from '../../store/user.js'
 import tokenStore from '../../store/token.js'
 import screen from '../../components/screen.vue'
 export default {
-  components:{screen},
-  setup () {
+  components: { screen },
+  setup() {
     const store = useStore()
     const token = tokenStore()
     return { store, token }
@@ -52,36 +52,36 @@ export default {
     }
   },
   mounted() {
-    this.init();
-    this.onresize = this.debounce(() => this.init(), 100);
-    window.addEventListener("resize", this.onresize);
+    this.init()
+    this.onresize = this.debounce(() => this.init(), 100)
+    window.addEventListener('resize', this.onresize)
   },
   beforeUnmount() {
-    window.removeEventListener("resize", this.onresize);
+    window.removeEventListener('resize', this.onresize)
   },
   methods: {
     debounce(fn, t) {
-      const delay = t || 500;
-      let timer;
+      const delay = t || 500
+      let timer
       return function () {
-        const args = arguments;
+        const args = arguments
         if (timer) {
-          clearTimeout(timer);
+          clearTimeout(timer)
         }
-        const that = this;
+        const that = this
         timer = setTimeout(() => {
-          timer = null;
-          fn.apply(that, args);
-        }, delay);
-      };
+          timer = null
+          fn.apply(that, args)
+        }, delay)
+      }
     },
-    init(){
-      let box = this.$refs.content.offsetWidth
+    init() {
+      const box = this.$refs.content.offsetWidth
       this.width = box
       this.height = this.$refs.content.offsetHeight
       console.log(this.width)
     },
-    push () {
+    push() {
       this.$router.push({ path: '/setting', query: { id: 12, type: 'test' } })
     }
   }
@@ -94,7 +94,7 @@ export default {
   height: 112px;
   background-color: blueviolet;
 }
-.content{
+.content {
   background-image: url('https://blade-data.oss-cn-hangzhou.aliyuncs.com/upload/20210724/438e867a8de106e8a17feda3f8dd4c7f.png');
   background-size: cover;
   background-repeat: no-repeat;

+ 2 - 2
src/views/home/test.vue

@@ -13,6 +13,6 @@
 
 <script>
 export default {
-  name: 'test',
-};
+  name: 'test'
+}
 </script>

+ 49 - 49
src/views/setting/index.vue

@@ -45,104 +45,104 @@ export default {
         column: [
           {
             label: '文章名称',
-            prop: 'title',
+            prop: 'title'
           },
           {
             label: '标签名称',
-            prop: 'tagsName',
-          },
-        ],
-      },
-    };
+            prop: 'tagsName'
+          }
+        ]
+      }
+    }
   },
   methods: {
     init() {
-      this.data = this.$route.query;
-      this.$api.login.sendSMS({ current: 1, size: 200 }).then((res) => {
+      this.data = this.$route.query
+      this.$api.login.sendSMS({ current: 1, size: 200 }).then(res => {
         if (res.code === 200) {
-          this.list = res.data.records;
+          this.list = res.data.records
         }
-      });
+      })
     },
     push() {
-      this.$router.push({ path: '/user', query: { id: 12, type: 'test' } });
+      this.$router.push({ path: '/user', query: { id: 12, type: 'test' } })
     },
     onLoad() {
-      this.$api.login.sendSMS({ current: 1, size: 10 }).then((res) => {
+      this.$api.login.sendSMS({ current: 1, size: 10 }).then(res => {
         if (res.code === 200) {
-          this.list = res.data.records;
+          this.list = res.data.records
         }
-      });
+      })
     },
     beforeOpen(done, type) {
       if (['view', 'edit'].includes(type)) {
-        this.getDetail();
+        this.getDetail()
       }
-      done();
+      done()
     },
     refreshChange() {
-      this.onLoad();
+      this.onLoad()
     },
     rowSave(row, done, loading) {
       const data = {
-        projectInfoId: this.info.id,
-      };
+        projectInfoId: this.info.id
+      }
       this.$api.projects.meeting.save(Object.assign(row, data)).then(
-        (res) => {
+        res => {
           if (res.code === 200) {
-            this.$message.success(res.msg);
+            this.$message.success(res.msg)
           } else {
-            this.$message.error(res.msg);
+            this.$message.error(res.msg)
           }
-          done(row);
-          this.onLoad();
+          done(row)
+          this.onLoad()
         },
-        (error) => {
-          window.console.log(error);
-          loading();
+        error => {
+          window.console.log(error)
+          loading()
         }
-      );
+      )
     },
     rowUpdate(row, index, done, loading) {
       const data = {
-        projectInfoId: this.info.id,
-      };
+        projectInfoId: this.info.id
+      }
       this.$api.projects.meeting.update(Object.assign(row, data)).then(
-        (res) => {
+        res => {
           if (res.code === 200) {
-            this.$message.success(res.msg);
+            this.$message.success(res.msg)
           } else {
-            this.$message.error(res.msg);
+            this.$message.error(res.msg)
           }
-          done(row);
-          this.onLoad();
+          done(row)
+          this.onLoad()
         },
-        (error) => {
-          window.console.log(error);
-          loading();
+        error => {
+          window.console.log(error)
+          loading()
         }
-      );
+      )
     },
     rowDel(row, index, done) {
       this.$confirm('确定将选择数据删除?', {
         confirmButtonText: '确定',
         cancelButtonText: '取消',
-        type: 'warning',
+        type: 'warning'
       })
         .then(() => {
-          return this.$api.projects.meeting.removeList({ ids: row.id });
+          return this.$api.projects.meeting.removeList({ ids: row.id })
         })
         .then(() => {
           this.$message({
             type: 'success',
-            message: '操作成功!',
-          });
+            message: '操作成功!'
+          })
           // 数据回调进行刷新
-          done(row);
-          this.onLoad();
+          done(row)
+          this.onLoad()
         })
-        .catch(() => {});
-    },
-  },
-};
+        .catch(() => {})
+    }
+  }
+}
 </script>

+ 2 - 2
src/views/system/index.vue

@@ -13,6 +13,6 @@
 
 <script>
 export default {
-  name: 'index',
-};
+  name: 'index'
+}
 </script>

+ 49 - 49
src/views/user/index.vue

@@ -45,104 +45,104 @@ export default {
         column: [
           {
             label: '文章名称',
-            prop: 'title',
+            prop: 'title'
           },
           {
             label: '标签名称',
-            prop: 'tagsName',
-          },
-        ],
-      },
-    };
+            prop: 'tagsName'
+          }
+        ]
+      }
+    }
   },
   methods: {
     init() {
-      this.data = this.$route.query;
-      this.$api.login.sendSMS({ current: 1, size: 200 }).then((res) => {
+      this.data = this.$route.query
+      this.$api.login.sendSMS({ current: 1, size: 200 }).then(res => {
         if (res.code === 200) {
-          this.list = res.data.records;
+          this.list = res.data.records
         }
-      });
+      })
     },
     push() {
-      this.$router.push({ path: '/user', query: { id: 12, type: 'test' } });
+      this.$router.push({ path: '/user', query: { id: 12, type: 'test' } })
     },
     onLoad() {
-      this.$api.login.sendSMS({ current: 1, size: 10 }).then((res) => {
+      this.$api.login.sendSMS({ current: 1, size: 10 }).then(res => {
         if (res.code === 200) {
-          this.list = res.data.records;
+          this.list = res.data.records
         }
-      });
+      })
     },
     beforeOpen(done, type) {
       if (['view', 'edit'].includes(type)) {
-        this.getDetail();
+        this.getDetail()
       }
-      done();
+      done()
     },
     refreshChange() {
-      this.onLoad();
+      this.onLoad()
     },
     rowSave(row, done, loading) {
       const data = {
-        projectInfoId: this.info.id,
-      };
+        projectInfoId: this.info.id
+      }
       this.$api.projects.meeting.save(Object.assign(row, data)).then(
-        (res) => {
+        res => {
           if (res.code === 200) {
-            this.$message.success(res.msg);
+            this.$message.success(res.msg)
           } else {
-            this.$message.error(res.msg);
+            this.$message.error(res.msg)
           }
-          done(row);
-          this.onLoad();
+          done(row)
+          this.onLoad()
         },
-        (error) => {
-          window.console.log(error);
-          loading();
+        error => {
+          window.console.log(error)
+          loading()
         }
-      );
+      )
     },
     rowUpdate(row, index, done, loading) {
       const data = {
-        projectInfoId: this.info.id,
-      };
+        projectInfoId: this.info.id
+      }
       this.$api.projects.meeting.update(Object.assign(row, data)).then(
-        (res) => {
+        res => {
           if (res.code === 200) {
-            this.$message.success(res.msg);
+            this.$message.success(res.msg)
           } else {
-            this.$message.error(res.msg);
+            this.$message.error(res.msg)
           }
-          done(row);
-          this.onLoad();
+          done(row)
+          this.onLoad()
         },
-        (error) => {
-          window.console.log(error);
-          loading();
+        error => {
+          window.console.log(error)
+          loading()
         }
-      );
+      )
     },
     rowDel(row, index, done) {
       this.$confirm('确定将选择数据删除?', {
         confirmButtonText: '确定',
         cancelButtonText: '取消',
-        type: 'warning',
+        type: 'warning'
       })
         .then(() => {
-          return this.$api.projects.meeting.removeList({ ids: row.id });
+          return this.$api.projects.meeting.removeList({ ids: row.id })
         })
         .then(() => {
           this.$message({
             type: 'success',
-            message: '操作成功!',
-          });
+            message: '操作成功!'
+          })
           // 数据回调进行刷新
-          done(row);
-          this.onLoad();
+          done(row)
+          this.onLoad()
         })
-        .catch(() => {});
-    },
-  },
-};
+        .catch(() => {})
+    }
+  }
+}
 </script>

+ 2 - 2
src/views/user/pass.vue

@@ -11,6 +11,6 @@
 
 <script>
 export default {
-  name: 'pass',
-};
+  name: 'pass'
+}
 </script>

+ 5 - 0
yarn.lock

@@ -1268,6 +1268,11 @@ escape-string-regexp@^5.0.0:
   resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz#4683126b500b61762f2dbebace1806e8be31b1c8"
   integrity sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==
 
+eslint-config-prettier@^8.8.0:
+  version "8.8.0"
+  resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.8.0.tgz#bfda738d412adc917fd7b038857110efe98c9348"
+  integrity sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==
+
 eslint-config-standard@^17.0.0:
   version "17.0.0"
   resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-17.0.0.tgz#fd5b6cf1dcf6ba8d29f200c461de2e19069888cf"