scorpio 2 years ago
parent
commit
eb3e1ce379

+ 7 - 15
.eslintrc.cjs

@@ -1,27 +1,19 @@
 module.exports = {
   env: {
     browser: true,
-    es2021: true
+    es2021: true,
   },
-  extends: [
-    'plugin:vue/vue3-essential',
-    'standard',
-    "airbnb/base",
-    "prettier"
-  ],
+  extends: ['plugin:vue/vue3-essential', 'standard', 'prettier'],
   parserOptions: {
     ecmaVersion: 'latest',
-    sourceType: 'module'
+    sourceType: 'module',
   },
-  plugins: [
-    'vue',
-    'prettier'
-  ],
+  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',
-    eqeqeq: 2
-  }
-}
+  },
+  ignorePatterns: ['**/index.html'],
+};

+ 2 - 0
package.json

@@ -37,10 +37,12 @@
     "eslint-config-standard": "^17.0.0",
     "eslint-plugin-import": "^2.25.2",
     "eslint-plugin-n": "^15.0.0",
+    "eslint-plugin-prettier": "^4.2.1",
     "eslint-plugin-promise": "^6.0.0",
     "eslint-plugin-vue": "^9.2.0",
     "js-cookie": "^3.0.1",
     "postcss": "^8.4.21",
+    "prettier": "^2.8.7",
     "sass": "^1.54.8",
     "sass-loader": "^13.0.2",
     "vite": "^3.0.0"

+ 19 - 21
src/components/screen.vue

@@ -32,17 +32,17 @@ export default {
       style: {
         width: `${this.designWidth}px`,
         height: `${this.designHeight}px`,
-        transform: "scale(1)", // 默认不缩放,垂直水平居中
+        transform: 'scale(1)', // 默认不缩放,垂直水平居中
       },
     };
   },
   mounted() {
     this.setScale();
     this.onresize = this.debounce(() => this.setScale(), 100);
-    window.addEventListener("resize", this.onresize);
+    window.addEventListener('resize', this.onresize);
   },
   beforeUnmount() {
-    window.removeEventListener("resize", this.onresize);
+    window.removeEventListener('resize', this.onresize);
   },
   methods: {
     // 防抖
@@ -64,19 +64,17 @@ export default {
 
     // 设置缩放比例
     setScale() {
-      const scale = document.documentElement.clientWidth / this.designWidth;
-      // document.documentElement.clientWidth /
-      //   document.documentElement.clientHeight <
-      // this.designWidth / this.designHeight
-      //   ? document.documentElement.clientWidth / this.designWidth
-      //   : document.documentElement.clientHeight / this.designHeight;
-      document.querySelector("#screen").style.transform = `scale(${scale})`;
-      (this.style = {
+      const scale =
+        document.documentElement.clientWidth /
+          document.documentElement.clientHeight <
+        this.designWidth / this.designHeight
+          ? document.documentElement.clientWidth / this.designWidth
+          : document.documentElement.clientHeight / this.designHeight;
+      this.style = {
         width: `${this.designWidth}px`,
         height: `${this.designHeight}px`,
         transform: `scale(${scale})`, // 默认不缩放,垂直水平居中
-      }),
-        console.log(this.style);
+      };
       this.width = document.documentElement.clientWidth;
       this.height = document.documentElement.clientHeight;
     },
@@ -86,19 +84,19 @@ export default {
 
 <style scoped lang="scss" type="text/scss">
 .wrapper {
-    position: relative;
-    left: 0;
-    top: 0;
-    box-sizing: border-box;
-    background-color: orange;
-    width: 100vw;
-    height: 100vh;
+  position: relative;
+  left: 0;
+  top: 0;
+  box-sizing: border-box;
+  width: 100vw;
+  height: 100vh;
 
   .screen {
     min-height: 100%;
     overflow: auto;
+    background-color: #142e48;
+    background-repeat: no-repeat;
     background-size: 100% 100%;
-    
     .content-wrap {
       position: relative;
       transform-origin: 0 0;

+ 4 - 8
src/page/404.vue

@@ -1,6 +1,6 @@
 <template>
-  <div class='full-width full-height flex flex-center'>
-    <el-empty description='404'/>
+  <div class="full-width full-height flex flex-center">
+    <el-empty description="404" />
   </div>
 </template>
 
@@ -14,10 +14,6 @@
 
 <script>
 export default {
-  name: '404'
-}
+  name: '404',
+};
 </script>
-
-<style scoped>
-
-</style>

+ 145 - 90
src/page/login.vue

@@ -1,73 +1,108 @@
 <template>
-  <div class='full-screen flex flex-center '>
-    <el-card class='login'>
-      <div class='flex flex-center' style='width: 100%'>
-        <div class='flex-child-average  flex flex-center left'>
-          <div class='flex flex-justify-start flex-align-start full-height '>
-            <img src='@/assets/img/logo.png' class='padding-14 logo'/>
-            <img src='https://hooray.gitee.io/fantastic-admin-example/assets/login-banner.a565fac8.png' class='logo-main' />
+  <div class="full-screen flex flex-center">
+    <el-card class="login">
+      <div class="flex flex-center" style="width: 100%">
+        <div class="flex-child-average flex flex-center left">
+          <div class="flex flex-justify-start flex-align-start full-height">
+            <img
+              src="@/assets/img/logo.png"
+              class="padding-14 logo"
+              alt="logo"
+            />
+            <img
+              src="https://hooray.gitee.io/fantastic-admin-example/assets/login-banner.a565fac8.png"
+              class="logo-main"
+              alt="logo-main"
+            />
           </div>
         </div>
 
-        <div class='flex-child-average right'>
-          <div class='padding-20'>
-            <span class='font-24 black bold '>欢迎来到梧桐树云项目管理云平台👏</span>
-            <el-form class='form' :model="form" :rules="rules" ref='loginForm'>
-              <el-form-item prop='name'>
+        <div class="flex-child-average right">
+          <div class="padding-20">
+            <span class="font-24 black bold"
+              >欢迎来到梧桐树云项目管理云平台👏</span
+            >
+            <el-form class="form" :model="form" :rules="rules" ref="loginForm">
+              <el-form-item prop="name">
                 <el-input
-                  v-model='form.name'
-                  size='large'
+                  v-model="form.name"
+                  size="large"
                   placeholder="用户名"
                   prefix-icon="Avatar"
                 />
               </el-form-item>
-              <el-form-item prop='pass'>
+              <el-form-item prop="pass">
                 <el-input
-                  v-model='form.pass'
-                  size='large'
+                  v-model="form.pass"
+                  size="large"
                   placeholder="密码"
-                  :type='flag ? "text" : "password"'
-                  prefix-icon="WalletFilled">
-                    <template   v-slot:suffix>
-                      <div @click='flag=!flag' class='pointer'>
-                        <el-icon v-if='!flag'><Hide /></el-icon>
-                        <el-icon v-else><View /></el-icon>
-                      </div>
-                    </template>
+                  :type="flag ? 'text' : 'password'"
+                  prefix-icon="WalletFilled"
+                >
+                  <template v-slot:suffix>
+                    <div @click="flag = !flag" class="pointer">
+                      <el-icon v-if="!flag"><Hide /></el-icon>
+                      <el-icon v-else><View /></el-icon>
+                    </div>
+                  </template>
                 </el-input>
               </el-form-item>
-              <el-form-item prop='code'>
+              <el-form-item prop="code">
                 <el-input
-                  v-model='form.code'
-                  size='large'
+                  v-model="form.code"
+                  size="large"
                   placeholder="验证码"
                   prefix-icon="Refresh"
-                  class='append'
+                  class="append"
                 >
                   <template v-slot:append>
-                      <img :src='code' class='pic' style='height: 40px;background-color: red;background-blend-mode: lighten;' />
+                    <img
+                      :src="code"
+                      class="pic"
+                      alt="refresh"
+                      style="
+                        height: 40px;
+                        background-color: red;
+                        background-blend-mode: lighten;
+                      "
+                    />
                   </template>
                 </el-input>
               </el-form-item>
               <el-form-item>
-                <div class='flex flex-align-center flex-justify-between full-width'>
+                <div
+                  class="flex flex-align-center flex-justify-between full-width"
+                >
                   <div></div>
-                  <el-link type='primary'  :underline='false' class='font-12'>忘记密码?</el-link>
+                  <el-link type="primary" :underline="false" class="font-12"
+                    >忘记密码?</el-link
+                  >
                 </div>
               </el-form-item>
             </el-form>
-            <el-button type='primary' class='full-width' size='large' @click='submint'>登录</el-button>
-            <div class='mt-10 flex flex-center'>
+            <el-button
+              type="primary"
+              class="full-width"
+              size="large"
+              @click="submint"
+              >登录</el-button
+            >
+            <div class="mt-10 flex flex-center">
               <span>还没账户?</span>
-              <el-link type='primary' :underline='false'>注册账户</el-link>
+              <el-link type="primary" :underline="false">注册账户</el-link>
             </div>
-            <el-divider/>
-            <div class='flex flex-col'>
-              <span class='grey-6'>
-              由梧桐经济学院提供技术支持
-              </span>
+            <el-divider />
+            <div class="flex flex-col">
+              <span class="grey-6"> 由梧桐经济学院提供技术支持 </span>
               <div>
-                <el-button size='small' type='primary' plain class='mt-10' @click='loginAdmin'>admin</el-button>
+                <el-button
+                  size="small"
+                  type="primary"
+                  plain
+                  class="mt-10"
+                  @click="loginAdmin"
+                  >admin</el-button
+                >
               </div>
             </div>
           </div>
@@ -85,85 +120,105 @@
   }
 </route>
 
-<script>
-import md5 from 'js-md5'
-import { useStore } from '@/store/user.js'
-import { setToken } from '../utils/auth.js'
+<script lang="js">
+import md5 from 'js-md5';
+import { useStore } from '@/store/user.js';
+import { setToken } from '../utils/auth.js';
 export default {
   name: 'login',
-  setup () {
-    const user = useStore()
-    return { user }
+  setup() {
+    const user = useStore();
+    return { user };
   },
-  data () {
+  data() {
     return {
       flag: false,
       form: {
         name: '',
-        pass: ''
+        pass: '',
       },
       rules: {
         name: [
           { required: true, message: '请输入用户名', trigger: 'blur' },
-          { min: 3, max: 12, message: '长度在 3 到 12 个字符', trigger: 'blur' }
+          {
+            min: 3,
+            max: 12,
+            message: '长度在 3 到 12 个字符',
+            trigger: 'blur',
+          },
         ],
         pass: [
           { required: true, message: '请输入密码', trigger: 'blur' },
-          { min: 3, max: 12, message: '长度在 3 到 12 个字符', trigger: 'blur' }
+          {
+            min: 3,
+            max: 12,
+            message: '长度在 3 到 12 个字符',
+            trigger: 'blur',
+          },
         ],
         code: [
           { required: true, message: '请输入验证码', trigger: 'blur' },
-          { min: 5, max: 5, message: '验证码不正确', trigger: 'blur' }
-        ]
+          { min: 5, max: 5, message: '验证码不正确', trigger: 'blur' },
+        ],
       },
       code: '',
-      header: ''
-    }
+      header: '',
+    };
   },
-  created () {
-    this.init()
+  created() {
+    this.init();
   },
   methods: {
-    init () {
-      this.$api.login.captcha().then(res => {
-        this.code = res.image
-        this.header = res.key
-      })
+    init() {
+      this.$api.login.captcha().then((res) => {
+        this.code = res.image;
+        this.header = res.key;
+      });
     },
-    submint () {
+    submint() {
       this.$refs.loginForm.validate((res) => {
         if (res) {
-          const params = { tenantId: '000000', username: this.form.name, password: md5(this.form.pass), grant_type: 'captcha', scope: 'all', type: 'account' }
-          const header = { captchaKey: this.header, captchaCode: this.form.code }
-          this.$api.login.login(params, header).then(res => {
+          const params = {
+            tenantId: '000000',
+            username: this.form.name,
+            password: md5(this.form.pass),
+            grant_type: 'captcha',
+            scope: 'all',
+            type: 'account',
+          };
+          const header = {
+            captchaKey: this.header,
+            captchaCode: this.form.code,
+          };
+          this.$api.login.login(params, header).then((res) => {
             if (res.error_description) {
-              this.$message.error(res.error_description)
-              this.init()
+              this.$message.error(res.error_description);
+              this.init();
             } else {
               // 保存信息
-              this.user.setUserInfo(res)
-              setToken(res.access_token)
-              this.$router.replace('/')
+              this.user.setUserInfo(res);
+              setToken(res.access_token);
+              this.$router.replace('/');
             }
-          })
+          });
         } else {
-          return false
+          return false;
         }
-      })
+      });
     },
-    loginAdmin () {
-      this.form.name = 'admin'
-      this.form.pass = 'admin'
-    }
-  }
-}
+    loginAdmin() {
+      this.form.name = 'admin';
+      this.form.pass = 'admin';
+    },
+  },
+};
 </script>
 
-<style lang='scss' scoped>
-.login{
-  :deep(.el-card__body){
+<style lang="scss" scoped>
+.login {
+  :deep(.el-card__body) {
     padding: 0 !important;
-  };
+  }
   padding: 0;
   display: flex;
   top: 50%;
@@ -173,7 +228,7 @@ export default {
   width: 950px;
   height: 500px;
   .left {
-    background-color: #F5F7FA;
+    background-color: #f5f7fa;
     height: 500px;
     .logo {
       width: 45px;
@@ -189,18 +244,18 @@ export default {
   .right {
     background-color: white;
     height: 500px;
-    .form{
+    .form {
       margin-top: 30px;
     }
   }
 }
 .append {
-  :deep(.el-input-group__append){
+  :deep(.el-input-group__append) {
     background-color: white;
   }
   .pic {
-    border-top: #DDDFE5 1px solid;
-    border-bottom: #DDDFE5 1px solid;
+    border-top: #dddfe5 1px solid;
+    border-bottom: #dddfe5 1px solid;
   }
 }
 </style>

+ 10 - 14
src/views/desk/index.vue

@@ -1,7 +1,7 @@
 <template>
   <div>
-    <el-button @click='push'>工作台</el-button>
-    <el-button @click='drawer = true'>open</el-button>
+    <el-button @click="push">工作台</el-button>
+    <el-button @click="drawer = true">open</el-button>
 
     <el-drawer v-model="drawer" title="I am the title" :with-header="false">
       <span>Hi there!</span>
@@ -18,19 +18,15 @@
 <script>
 export default {
   name: 'index',
-  data () {
+  data() {
     return {
-      drawer: false
-    }
+      drawer: false,
+    };
   },
   methods: {
-    push () {
-      this.$router.push('/')
-    }
-  }
-}
+    push() {
+      this.$router.push('/');
+    },
+  },
+};
 </script>
-
-<style scoped>
-
-</style>

+ 3 - 9
src/views/home/dash.vue

@@ -1,7 +1,5 @@
 <template>
-  <div>
-    dash
-  </div>
+  <div>dash</div>
 </template>
 <route>
   {
@@ -11,10 +9,6 @@
 
 <script>
 export default {
-  name: 'dash'
-}
+  name: 'dash',
+};
 </script>
-
-<style scoped>
-
-</style>

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

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

+ 85 - 81
src/views/setting/index.vue

@@ -1,18 +1,19 @@
 <template>
-  <div class='full-width full-height flex flex-col flex-justify-start'>
+  <div class="full-width full-height flex flex-col flex-justify-start">
     <div>
-      <el-button @click='push'>设置</el-button>
+      <el-button @click="push">设置</el-button>
     </div>
     <avue-crud
-          :option="option"
-          :data="list"
-          ref="crud"
-          v-model="form"
-          :before-open="beforeOpen"
-          @row-del="rowDel"
-          @row-save="rowSave"
-          @row-update="rowUpdate"
-          @on-load="onLoad">
+      :option="option"
+      :data="list"
+      ref="crud"
+      v-model="form"
+      :before-open="beforeOpen"
+      @row-del="rowDel"
+      @row-save="rowSave"
+      @row-update="rowUpdate"
+      @on-load="onLoad"
+    >
     </avue-crud>
   </div>
 </template>
@@ -25,10 +26,9 @@
 </route>
 
 <script>
-
 export default {
   name: '设置',
-  data () {
+  data() {
     return {
       list: [],
       form: {},
@@ -45,100 +45,104 @@ export default {
         column: [
           {
             label: '文章名称',
-            prop: 'title'
+            prop: 'title',
           },
           {
             label: '标签名称',
-            prop: 'tagsName'
-          }
-        ]
-      }
-    }
+            prop: 'tagsName',
+          },
+        ],
+      },
+    };
   },
   methods: {
-    init () {
-      this.data = this.$route.query
+    init() {
+      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' } })
+    push() {
+      this.$router.push({ path: '/user', query: { id: 12, type: 'test' } });
     },
-    onLoad () {
+    onLoad() {
       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) {
+    beforeOpen(done, type) {
       if (['view', 'edit'].includes(type)) {
-        this.getDetail()
+        this.getDetail();
       }
-      done()
+      done();
     },
-    refreshChange () {
-      this.onLoad()
+    refreshChange() {
+      this.onLoad();
     },
-    rowSave (row, done, loading) {
+    rowSave(row, done, loading) {
       const data = {
-        projectInfoId: this.info.id
-      }
-      this.$api.projects.meeting.save(Object.assign(row, data)).then((res) => {
-        if (res.code === 200) {
-          this.$message.success(res.msg)
-        } else {
-          this.$message.error(res.msg)
+        projectInfoId: this.info.id,
+      };
+      this.$api.projects.meeting.save(Object.assign(row, data)).then(
+        (res) => {
+          if (res.code === 200) {
+            this.$message.success(res.msg);
+          } else {
+            this.$message.error(res.msg);
+          }
+          done(row);
+          this.onLoad();
+        },
+        (error) => {
+          window.console.log(error);
+          loading();
         }
-        done(row)
-        this.onLoad()
-      }, error => {
-        window.console.log(error)
-        loading()
-      })
+      );
     },
-    rowUpdate (row, index, done, loading) {
+    rowUpdate(row, index, done, loading) {
       const data = {
-        projectInfoId: this.info.id
-      }
-      this.$api.projects.meeting.update(Object.assign(row, data)).then((res) => {
-        if (res.code === 200) {
-          this.$message.success(res.msg)
-        } else {
-          this.$message.error(res.msg)
+        projectInfoId: this.info.id,
+      };
+      this.$api.projects.meeting.update(Object.assign(row, data)).then(
+        (res) => {
+          if (res.code === 200) {
+            this.$message.success(res.msg);
+          } else {
+            this.$message.error(res.msg);
+          }
+          done(row);
+          this.onLoad();
+        },
+        (error) => {
+          window.console.log(error);
+          loading();
         }
-        done(row)
-        this.onLoad()
-      }, error => {
-        window.console.log(error)
-        loading()
-      })
+      );
     },
-    rowDel (row, index, done) {
+    rowDel(row, index, done) {
       this.$confirm('确定将选择数据删除?', {
         confirmButtonText: '确定',
         cancelButtonText: '取消',
-        type: 'warning'
-      }).then(() => {
-        return this.$api.projects.meeting.removeList({ ids: row.id })
-      }).then(() => {
-        this.$message({
-          type: 'success',
-          message: '操作成功!'
-        })
-        // 数据回调进行刷新
-        done(row)
-        this.onLoad()
-      }).catch(() => {
+        type: 'warning',
       })
-    }
-  }
-}
+        .then(() => {
+          return this.$api.projects.meeting.removeList({ ids: row.id });
+        })
+        .then(() => {
+          this.$message({
+            type: 'success',
+            message: '操作成功!',
+          });
+          // 数据回调进行刷新
+          done(row);
+          this.onLoad();
+        })
+        .catch(() => {});
+    },
+  },
+};
 </script>
-
-<style scoped>
-
-</style>

+ 3 - 9
src/views/system/index.vue

@@ -1,7 +1,5 @@
 <template>
-  <div class='bg-gray-500'>
-    System
-  </div>
+  <div class="bg-gray-500">System</div>
 </template>
 
 <route>
@@ -15,10 +13,6 @@
 
 <script>
 export default {
-  name: 'index'
-}
+  name: 'index',
+};
 </script>
-
-<style scoped>
-
-</style>

+ 77 - 73
src/views/user/index.vue

@@ -1,7 +1,7 @@
 <template>
-  <div class='full-width full-height flex flex-col flex-justify-start'>
+  <div class="full-width full-height flex flex-col flex-justify-start">
     <div>
-      <el-button @click='push'>设置</el-button>
+      <el-button @click="push">设置</el-button>
     </div>
     <avue-crud
       :option="option"
@@ -12,7 +12,8 @@
       @row-del="rowDel"
       @row-save="rowSave"
       @row-update="rowUpdate"
-      @on-load="onLoad">
+      @on-load="onLoad"
+    >
     </avue-crud>
   </div>
 </template>
@@ -24,10 +25,9 @@
 </route>
 
 <script>
-
 export default {
   name: 'index',
-  data () {
+  data() {
     return {
       list: [],
       form: {},
@@ -45,100 +45,104 @@ export default {
         column: [
           {
             label: '文章名称',
-            prop: 'title'
+            prop: 'title',
           },
           {
             label: '标签名称',
-            prop: 'tagsName'
-          }
-        ]
-      }
-    }
+            prop: 'tagsName',
+          },
+        ],
+      },
+    };
   },
   methods: {
-    init () {
-      this.data = this.$route.query
+    init() {
+      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' } })
+    push() {
+      this.$router.push({ path: '/user', query: { id: 12, type: 'test' } });
     },
-    onLoad () {
+    onLoad() {
       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) {
+    beforeOpen(done, type) {
       if (['view', 'edit'].includes(type)) {
-        this.getDetail()
+        this.getDetail();
       }
-      done()
+      done();
     },
-    refreshChange () {
-      this.onLoad()
+    refreshChange() {
+      this.onLoad();
     },
-    rowSave (row, done, loading) {
+    rowSave(row, done, loading) {
       const data = {
-        projectInfoId: this.info.id
-      }
-      this.$api.projects.meeting.save(Object.assign(row, data)).then((res) => {
-        if (res.code === 200) {
-          this.$message.success(res.msg)
-        } else {
-          this.$message.error(res.msg)
+        projectInfoId: this.info.id,
+      };
+      this.$api.projects.meeting.save(Object.assign(row, data)).then(
+        (res) => {
+          if (res.code === 200) {
+            this.$message.success(res.msg);
+          } else {
+            this.$message.error(res.msg);
+          }
+          done(row);
+          this.onLoad();
+        },
+        (error) => {
+          window.console.log(error);
+          loading();
         }
-        done(row)
-        this.onLoad()
-      }, error => {
-        window.console.log(error)
-        loading()
-      })
+      );
     },
-    rowUpdate (row, index, done, loading) {
+    rowUpdate(row, index, done, loading) {
       const data = {
-        projectInfoId: this.info.id
-      }
-      this.$api.projects.meeting.update(Object.assign(row, data)).then((res) => {
-        if (res.code === 200) {
-          this.$message.success(res.msg)
-        } else {
-          this.$message.error(res.msg)
+        projectInfoId: this.info.id,
+      };
+      this.$api.projects.meeting.update(Object.assign(row, data)).then(
+        (res) => {
+          if (res.code === 200) {
+            this.$message.success(res.msg);
+          } else {
+            this.$message.error(res.msg);
+          }
+          done(row);
+          this.onLoad();
+        },
+        (error) => {
+          window.console.log(error);
+          loading();
         }
-        done(row)
-        this.onLoad()
-      }, error => {
-        window.console.log(error)
-        loading()
-      })
+      );
     },
-    rowDel (row, index, done) {
+    rowDel(row, index, done) {
       this.$confirm('确定将选择数据删除?', {
         confirmButtonText: '确定',
         cancelButtonText: '取消',
-        type: 'warning'
-      }).then(() => {
-        return this.$api.projects.meeting.removeList({ ids: row.id })
-      }).then(() => {
-        this.$message({
-          type: 'success',
-          message: '操作成功!'
-        })
-        // 数据回调进行刷新
-        done(row)
-        this.onLoad()
-      }).catch(() => {
+        type: 'warning',
       })
-    }
-  }
-}
+        .then(() => {
+          return this.$api.projects.meeting.removeList({ ids: row.id });
+        })
+        .then(() => {
+          this.$message({
+            type: 'success',
+            message: '操作成功!',
+          });
+          // 数据回调进行刷新
+          done(row);
+          this.onLoad();
+        })
+        .catch(() => {});
+    },
+  },
+};
 </script>
-
-<style scoped>
-
-</style>

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

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

+ 7 - 9
vite.config.js

@@ -10,15 +10,13 @@ import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
 export default defineConfig({
   plugins: [
     vue(),
-    Pages(
-      {
-        dirs: [
-          { dir: 'src/page', baseRoute: '' },
-          { dir: 'src/views', baseRoute: '' }
-        ],
-        exclude: ['**/components/*.vue'] // 排除组件
-      }
-    ),
+    Pages({
+      dirs: [
+        { dir: 'src/page', baseRoute: '' },
+        { dir: 'src/views', baseRoute: '' }
+      ],
+      exclude: ['**/components/*.vue'] // 排除组件
+    }),
     AutoImport({
       resolvers: [ElementPlusResolver()]
     }),

+ 24 - 0
yarn.lock

@@ -1330,6 +1330,13 @@ eslint-plugin-n@^15.0.0:
     resolve "^1.10.1"
     semver "^7.3.7"
 
+eslint-plugin-prettier@^4.2.1:
+  version "4.2.1"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz#651cbb88b1dab98bfd42f017a12fa6b2d993f94b"
+  integrity sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==
+  dependencies:
+    prettier-linter-helpers "^1.0.0"
+
 eslint-plugin-promise@^6.0.0:
   version "6.0.0"
   resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-6.0.0.tgz#017652c07c9816413a41e11c30adc42c3d55ff18"
@@ -1489,6 +1496,11 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
   resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
   integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
 
+fast-diff@^1.1.2:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03"
+  integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==
+
 fast-glob@^3.2.11:
   version "3.2.11"
   resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9"
@@ -3024,6 +3036,18 @@ prelude-ls@^1.2.1:
   resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
   integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
 
+prettier-linter-helpers@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b"
+  integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==
+  dependencies:
+    fast-diff "^1.1.2"
+
+prettier@^2.8.7:
+  version "2.8.7"
+  resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.7.tgz#bb79fc8729308549d28fe3a98fce73d2c0656450"
+  integrity sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==
+
 proc-log@^2.0.0, proc-log@^2.0.1:
   version "2.0.1"
   resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-2.0.1.tgz#8f3f69a1f608de27878f91f5c688b225391cb685"