Browse Source

人员及部门同步传参类型修改

wangtao 3 years ago
parent
commit
0147d74774
54 changed files with 107 additions and 406 deletions
  1. 2 2
      src/api/recharge/department.js
  2. 2 2
      src/api/recharge/personnel.js
  3. 68 68
      src/api/system/role.js
  4. 1 0
      src/components/IconSelect/index.vue
  5. 2 1
      src/utils/yongtian.js
  6. 7 3
      src/views/recharge/fileExport/index.vue
  7. 0 1
      src/views/recharge/qrCode/index.vue
  8. 3 1
      src/views/system/dept/index.vue
  9. 8 6
      src/views/system/menu/index.vue
  10. 1 4
      src/views/system/product/index.vue
  11. 5 4
      src/views/system/role/index.vue
  12. 4 2
      src/views/system/user/index.vue
  13. 4 4
      vue.config.js
  14. BIN
      vuedx.zip
  15. BIN
      vuedx/favicon.ico
  16. 0 21
      vuedx/html/ie.html
  17. 0 181
      vuedx/index.html
  18. 0 2
      vuedx/robots.txt
  19. 0 0
      vuedx/static/css/app.17b9d263.css
  20. 0 0
      vuedx/static/css/chunk-088619b5.e9089cf2.css
  21. 0 1
      vuedx/static/css/chunk-1c3eafb5.0da3fcb4.css
  22. 0 1
      vuedx/static/css/chunk-2d1d87f5.f4f45be1.css
  23. 0 4
      vuedx/static/css/chunk-32ba355e.84f98409.css
  24. 0 0
      vuedx/static/css/chunk-4b5668c0.2cbded2b.css
  25. 0 0
      vuedx/static/css/chunk-5e64aecb.dd9c368a.css
  26. 0 1
      vuedx/static/css/chunk-6a3a862b.02c39c52.css
  27. 0 1
      vuedx/static/css/chunk-6f6e7ec6.c81cc921.css
  28. 0 15
      vuedx/static/css/chunk-libs.ea078ece.css
  29. BIN
      vuedx/static/fonts/element-icons.535877f5.woff
  30. BIN
      vuedx/static/fonts/element-icons.732389de.ttf
  31. BIN
      vuedx/static/img/401.089007e7.gif
  32. BIN
      vuedx/static/img/404.a57b6f31.png
  33. BIN
      vuedx/static/img/404_cloud.0f4bc32b.png
  34. BIN
      vuedx/static/img/bg.1a7b14da.png
  35. 0 39
      vuedx/static/img/dark.412ca67e.svg
  36. 0 39
      vuedx/static/img/light.4183aad0.svg
  37. BIN
      vuedx/static/img/logo-b.fd92c04e.png
  38. BIN
      vuedx/static/img/logo.847312f6.png
  39. BIN
      vuedx/static/img/tj1.b68f0515.png
  40. BIN
      vuedx/static/img/tj2.fa68c989.png
  41. 0 0
      vuedx/static/js/app.70c56c6b.js
  42. 0 0
      vuedx/static/js/chunk-088619b5.87c50e30.js
  43. 0 0
      vuedx/static/js/chunk-1c3eafb5.0c86e8af.js
  44. 0 0
      vuedx/static/js/chunk-2d0b2b28.9ffc10ea.js
  45. 0 0
      vuedx/static/js/chunk-2d0e2366.68f2ed78.js
  46. 0 1
      vuedx/static/js/chunk-2d0f012d.1bde8e38.js
  47. 0 1
      vuedx/static/js/chunk-2d1d87f5.f9d949cf.js
  48. 0 0
      vuedx/static/js/chunk-32ba355e.25bb1341.js
  49. 0 1
      vuedx/static/js/chunk-4b5668c0.55584802.js
  50. 0 0
      vuedx/static/js/chunk-5e64aecb.968e5ba0.js
  51. 0 0
      vuedx/static/js/chunk-6a3a862b.ff629e0b.js
  52. 0 0
      vuedx/static/js/chunk-6f6e7ec6.57a20706.js
  53. 0 0
      vuedx/static/js/chunk-elementUI.5170e8b1.js
  54. 0 0
      vuedx/static/js/chunk-libs.b64e9255.js

+ 2 - 2
src/api/recharge/department.js

@@ -33,10 +33,10 @@ export function listChannel(data) {
 }
 
 // 同步部门信息
-export function deptJob(data) {
+export function deptJob(params) {
     return request({
         url: '/dxtop/smjob/deptJob',
         method: 'post',
-        data: data
+        params
     })
 }

+ 2 - 2
src/api/recharge/personnel.js

@@ -32,11 +32,11 @@ export function listChannel(data) {
     })
 }
 // 同步人员信息
-export function personJob(data) {
+export function personJob(params) {
     return request({
         url: '/dxtop/smjob/personJob',
         method: 'post',
-        data: data
+        params
     })
 }
 // 批量处理充值到账比例

+ 68 - 68
src/api/system/role.js

@@ -2,119 +2,119 @@ import request from '@/utils/request'
 
 // 查询角色列表
 export function listRole(query) {
-  return request({
-    url: '/system/role/list',
-    method: 'get',
-    params: query
-  })
+    return request({
+        url: '/system/role/list',
+        method: 'get',
+        params: query
+    })
 }
 
 // 查询角色详细
 export function getRole(roleId) {
-  return request({
-    url: '/system/role/' + roleId,
-    method: 'get'
-  })
+    return request({
+        url: '/system/role/' + roleId,
+        method: 'get'
+    })
 }
 
 // 新增角色
 export function addRole(data) {
-  return request({
-    url: '/system/role',
-    method: 'post',
-    data: data
-  })
+    return request({
+        url: '/system/role',
+        method: 'post',
+        data: data
+    })
 }
 
 // 修改角色
 export function updateRole(data) {
-  return request({
-    url: '/system/role',
-    method: 'put',
-    data: data
-  })
+    return request({
+        url: '/system/role',
+        method: 'put',
+        data: data
+    })
 }
 
 // 角色数据权限
 export function dataScope(data) {
-  return request({
-    url: '/system/role/dataScope',
-    method: 'put',
-    data: data
-  })
+    return request({
+        url: '/system/role/dataScope',
+        method: 'put',
+        data: data
+    })
 }
 
 // 角色状态修改
 export function changeRoleStatus(roleId, status) {
-  const data = {
-    roleId,
-    status
-  }
-  return request({
-    url: '/system/role/changeStatus',
-    method: 'put',
-    data: data
-  })
+    const data = {
+        roleId,
+        status
+    }
+    return request({
+        url: '/system/role/changeStatus',
+        method: 'put',
+        data: data
+    })
 }
 
 // 删除角色
 export function delRole(roleId) {
-  return request({
-    url: '/system/role/' + roleId,
-    method: 'delete'
-  })
+    return request({
+        url: '/system/role/' + roleId,
+        method: 'delete'
+    })
 }
 
 // 导出角色
 export function exportRole(query) {
-  return request({
-    url: '/system/role/export',
-    method: 'get',
-    params: query
-  })
+    return request({
+        url: '/system/role/export',
+        method: 'get',
+        params: query
+    })
 }
 
 // 查询角色已授权用户列表
 export function allocatedUserList(query) {
-  return request({
-    url: '/system/role/authUser/allocatedList',
-    method: 'get',
-    params: query
-  })
+    return request({
+        url: '/system/role/authUser/allocatedList',
+        method: 'get',
+        params: query
+    })
 }
 
 // 查询角色未授权用户列表
 export function unallocatedUserList(query) {
-  return request({
-    url: '/system/role/authUser/unallocatedList',
-    method: 'get',
-    params: query
-  })
+    return request({
+        url: '/system/role/authUser/unallocatedList',
+        method: 'get',
+        params: query
+    })
 }
 
 // 取消用户授权角色
 export function authUserCancel(data) {
-  return request({
-    url: '/system/role/authUser/cancel',
-    method: 'put',
-    data: data
-  })
+    return request({
+        url: '/system/role/authUser/cancel',
+        method: 'put',
+        data: data
+    })
 }
 
 // 批量取消用户授权角色
 export function authUserCancelAll(data) {
-  return request({
-    url: '/system/role/authUser/cancelAll',
-    method: 'put',
-    params: data
-  })
+    return request({
+        url: '/system/role/authUser/cancelAll',
+        method: 'put',
+        params: data
+    })
 }
 
 // 授权用户选择
 export function authUserSelectAll(data) {
-  return request({
-    url: '/system/role/authUser/selectAll',
-    method: 'put',
-    params: data
-  })
-}
+    return request({
+        url: '/system/role/authUser/selectAll',
+        method: 'put',
+        params: data
+    })
+}

+ 1 - 0
src/components/IconSelect/index.vue

@@ -35,6 +35,7 @@ export default {
       document.body.click()
     },
     reset() {
+      console.log(11)
       this.name = ''
       this.iconList = icons
     }

+ 2 - 1
src/utils/yongtian.js

@@ -149,6 +149,7 @@ export function praseStrEmpty(str) {
  * @param {*} children 孩子节点字段 默认 'children'
  */
 export function handleTree(data, id, parentId, children) {
+    //console.log(data, id, parentId, children)
     let config = {
         id: id || 'id',
         parentId: parentId || 'parentId',
@@ -190,4 +191,4 @@ export function handleTree(data, id, parentId, children) {
         }
     }
     return tree;
-}
+}

+ 7 - 3
src/views/recharge/fileExport/index.vue

@@ -66,9 +66,13 @@
             icon="el-icon-bottom"
             @click="handleExport(scope.row)"
           >下载</el-button>
-          <span v-if="scope.row.isSuccess == false">文件整理中...请稍后查看</span>
+          <span v-if="scope.row.isSuccess == false">
+            <span v-if="scope.row.result == '' || scope.row.result == null">文件整理中...请稍后查看</span>
+            <span else>{{scope.row.result}}</span>
+          </span>
+
         </template>
-      </el-table-column> 
+      </el-table-column>
     </el-table>
 
     <pagination
@@ -127,7 +131,7 @@ export default {
       //   this.$router.push({path:'personnel'})
       // },1500)
     }
-    
+
   },
   methods: {
     /** 查询参数列表 */

+ 0 - 1
src/views/recharge/qrCode/index.vue

@@ -60,7 +60,6 @@
       <el-table-column label="二维码" align="center" prop="qrPath" >
         <!-- <div class="qrcode" ref="qrCodeUrl"></div> -->
         <template slot-scope="scope" >
-
           <el-image
             v-if="scope.row.qrPath"
             style="width: 24px; height: 24px"

+ 3 - 1
src/views/system/dept/index.vue

@@ -88,7 +88,7 @@
       <el-form ref="form" :model="form" :rules="rules" label-width="80px">
         <el-row>
           <el-col :span="24" v-if="form.parentId !== 0">
-            <el-form-item label="上级部门" prop="parentId">
+            <el-form-item label="上级部门" prop="parentId" width="100%">
               <treeselect v-model="form.parentId" :options="deptOptions" :normalizer="normalizer" placeholder="选择上级部门" />
             </el-form-item>
           </el-col>
@@ -266,6 +266,7 @@ export default {
       this.open = true;
       this.title = "添加部门";
       listDept().then(response => {
+        console.log(response)
 	        this.deptOptions = this.handleTree(response.data, "deptId");
       });
     },
@@ -279,6 +280,7 @@ export default {
       });
       listDeptExcludeChild(row.deptId).then(response => {
 	        this.deptOptions = this.handleTree(response.data, "deptId");
+          console.log(this.deptOptions)
       });
     },
     /** 提交按钮 */

+ 8 - 6
src/views/system/menu/index.vue

@@ -325,6 +325,7 @@ export default {
         //   }
         // }
         this.menuList = this.handleTree(response.data, "menuId");
+        console.log(this.menuList )
         this.loading = false;
 
       });
@@ -421,12 +422,13 @@ export default {
         if (valid) {
           this.loading = true
           if (this.form.menuId != undefined) {
-            updateMenu(this.form).then(response => {
-              this.loading = false
-              this.msgSuccess("修改成功");
-              this.open = false;
-              this.getList();
-            });
+            console.log(this.form)
+            // updateMenu(this.form).then(response => {
+            //   this.loading = false
+            //   this.msgSuccess("修改成功");
+            //   this.open = false;
+            //   this.getList();
+            // });
           } else {
             addMenu(this.form).then(response => {
               this.loading = false

+ 1 - 4
src/views/system/product/index.vue

@@ -73,7 +73,7 @@
     <!-- 添加或修改参数配置对话框 -->
     <el-dialog   :title="title" :visible.sync="open" width="600px" append-to-body :before-close="cancel" :close-on-click-modal="false"  >
       <el-form ref="form" :model="form" :rules="rules" label-width="120px" >
-        <el-form-item label="公司名称" prop="name">
+        <el-form-item label="公司名称" prop="name" >
           <el-input v-model="form.name" placeholder="请输入公司名称" />
         </el-form-item>
         <el-form-item label="公司介绍" prop="introduce">
@@ -296,9 +296,6 @@ export default {
     /** 修改按钮操作 */
     handleUpdate(row) {
       this.reset();
-
-      // const id = row.id || this.ids
-      // getadmin(id).then(response => {
       Object.assign(this.form, row.id ? this.adminList.find(val=>val.id === row.id) : this.adminList.find(val=>val.id === this.ids[0]))
       this.open = true;
       this.title = "修改参数";

+ 5 - 4
src/views/system/role/index.vue

@@ -414,6 +414,7 @@ export default {
     /** 根据角色ID查询菜单树结构 */
     getRoleMenuTreeselect(roleId) {
       return roleMenuTreeselect(roleId).then(response => {
+        console.log(response)
         this.menuOptions = response.menus;
         return response;
       });
@@ -595,10 +596,10 @@ export default {
           if (this.form.roleId != undefined) {
             this.form.menuIds = this.getMenuAllCheckedKeys();
             updateRole(this.form).then(response => {
-              this.loading = false
-              this.msgSuccess("修改成功");
-              this.open = false;
-              this.getList();
+              // this.loading = false
+              // this.msgSuccess("修改成功");
+              // this.open = false;
+              // this.getList();
             });
           } else {
             this.form.menuIds = this.getMenuAllCheckedKeys();

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

@@ -207,7 +207,7 @@
         <pagination
           v-show="total>0"
           :total="total"
-          :page.sync="queryParams.pageNum"
+          :page.sync="queryParams.pageNo"
           :limit.sync="queryParams.pageSize"
           @pagination="getList"
         />
@@ -482,6 +482,7 @@ export default {
     // 根据名称筛选部门树
     deptName(val) {
       this.$refs.tree.filter(val);
+      console.log(this.$refs.tree.filter(val))
     }
   },
   created() {
@@ -512,6 +513,7 @@ export default {
     getTreeselect() {
       treeselect().then(response => {
         this.deptOptions = response.data;
+        console.log(this.deptOptions)
       });
     },
     // 筛选节点
@@ -726,4 +728,4 @@ export default {
     }
   }
 };
-</script>
+</script>

+ 4 - 4
vue.config.js

@@ -29,12 +29,12 @@ module.exports = {
     devServer: {
         host: '0.0.0.0',
         port: port,
-        open: false,
+        open: true,
         proxy: {
             // detail: https://cli.vuejs.org/config/#devserver-proxy
             [process.env.VUE_APP_BASE_API]: {
-                target: `http://172.16.120.104:8085`, //本地
-                //target: 'https://smartpark.caih.com/dxapi/', //东信
+                //target: `http://172.16.120.104:8085`, //本地
+                target: 'https://smartpark.caih.com/dxapi/', //东信
                 changeOrigin: true,
                 pathRewrite: {
                     ['^' + process.env.VUE_APP_BASE_API]: ''
@@ -125,4 +125,4 @@ module.exports = {
                 }
             )
     }
-}
+}

BIN
vuedx.zip


BIN
vuedx/favicon.ico


File diff suppressed because it is too large
+ 0 - 21
vuedx/html/ie.html


File diff suppressed because it is too large
+ 0 - 181
vuedx/index.html


+ 0 - 2
vuedx/robots.txt

@@ -1,2 +0,0 @@
-User-agent: *
-Disallow: /

File diff suppressed because it is too large
+ 0 - 0
vuedx/static/css/app.17b9d263.css


File diff suppressed because it is too large
+ 0 - 0
vuedx/static/css/chunk-088619b5.e9089cf2.css


+ 0 - 1
vuedx/static/css/chunk-1c3eafb5.0da3fcb4.css

@@ -1 +0,0 @@
-.user-info-head[data-v-1ccee4f2]{position:relative;display:inline-block;height:120px}.user-info-head[data-v-1ccee4f2]:hover:after{content:"+";position:absolute;left:0;right:0;top:0;bottom:0;color:#eee;background:rgba(0,0,0,.5);font-size:24px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;cursor:pointer;line-height:110px;border-radius:50%}

+ 0 - 1
vuedx/static/css/chunk-2d1d87f5.f4f45be1.css

@@ -1 +0,0 @@
-.errPage-container[data-v-0e5c12bd]{width:800px;max-width:100%;margin:100px auto}.errPage-container .pan-back-btn[data-v-0e5c12bd]{background:#008489;color:#fff;border:none!important}.errPage-container .pan-gif[data-v-0e5c12bd]{margin:0 auto;display:block}.errPage-container .pan-img[data-v-0e5c12bd]{display:block;margin:0 auto;width:100%}.errPage-container .text-jumbo[data-v-0e5c12bd]{font-size:60px;font-weight:700;color:#484848}.errPage-container .list-unstyled[data-v-0e5c12bd]{font-size:14px}.errPage-container .list-unstyled li[data-v-0e5c12bd]{padding-bottom:5px}.errPage-container .list-unstyled a[data-v-0e5c12bd]{color:#008489;text-decoration:none}.errPage-container .list-unstyled a[data-v-0e5c12bd]:hover{text-decoration:underline}

File diff suppressed because it is too large
+ 0 - 4
vuedx/static/css/chunk-32ba355e.84f98409.css


File diff suppressed because it is too large
+ 0 - 0
vuedx/static/css/chunk-4b5668c0.2cbded2b.css


File diff suppressed because it is too large
+ 0 - 0
vuedx/static/css/chunk-5e64aecb.dd9c368a.css


+ 0 - 1
vuedx/static/css/chunk-6a3a862b.02c39c52.css

@@ -1 +0,0 @@
-.register{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;background-size:cover}.title{margin:0 auto 30px auto;text-align:center;color:#707070}.register-form{border-radius:6px;background:#fff;width:400px;padding:25px 25px 5px 25px}.register-form .el-input,.register-form .el-input input{height:38px}.register-form .input-icon{height:39px;width:14px;margin-left:2px}.register-tip{font-size:13px;text-align:center;color:#bfbfbf}.register-code{width:33%;height:38px;float:right}.register-code img{cursor:pointer;vertical-align:middle}.el-register-footer{height:40px;line-height:40px;position:fixed;bottom:0;width:100%;text-align:center;color:#fff;font-family:Arial;font-size:12px;letter-spacing:1px}.register-code-img{height:38px}

+ 0 - 1
vuedx/static/css/chunk-6f6e7ec6.c81cc921.css

@@ -1 +0,0 @@
-.bg{overflow:hidden;position:fixed}.bg,.bg .bgimg{width:100%;height:100%;top:0;left:0;z-index:-1}.bg .bgimg{position:absolute}.logo{width:100%;position:fixed;top:0}.logo img{width:152px;margin:10px 2rem 0 20px;vertical-align:middle}.logo .logo_txt{font-size:1.5rem;color:#fff;vertical-align:middle;letter-spacing:4px}.login{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;background-size:cover}.title{margin:0 auto 30px auto;text-align:left;color:#000;font-size:20px}.title span{margin-left:10px;opacity:.25}.login-form{border-radius:6px;background:#fff;width:456px;padding:63px 35px}.login-form .el-input{height:40px;font-size:16px!important}.login-form .el-input input{height:40px}.login-form .input-icon{height:39px;width:14px;margin-left:2px}.login-tip{font-size:13px;text-align:center;color:#bfbfbf}.login-code{width:33%;height:38px;float:right}.login-code img{cursor:pointer;vertical-align:middle}.el-login-footer{height:40px;line-height:40px;position:fixed;bottom:0;width:100%;text-align:center;color:#fff;font-family:Arial;font-size:12px;letter-spacing:1px}.login-code-img{height:38px}

File diff suppressed because it is too large
+ 0 - 15
vuedx/static/css/chunk-libs.ea078ece.css


BIN
vuedx/static/fonts/element-icons.535877f5.woff


BIN
vuedx/static/fonts/element-icons.732389de.ttf


BIN
vuedx/static/img/401.089007e7.gif


BIN
vuedx/static/img/404.a57b6f31.png


BIN
vuedx/static/img/404_cloud.0f4bc32b.png


BIN
vuedx/static/img/bg.1a7b14da.png


+ 0 - 39
vuedx/static/img/dark.412ca67e.svg

@@ -1,39 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<svg width="52px" height="45px" viewBox="0 0 52 45" version="1.1" 
-    xmlns="http://www.w3.org/2000/svg" 
-    xmlns:xlink="http://www.w3.org/1999/xlink">
-    <defs>
-        <filter x="-9.4%" y="-6.2%" width="118.8%" height="122.5%" filterUnits="objectBoundingBox" id="filter-1">
-            <feOffset dx="0" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
-            <feGaussianBlur stdDeviation="1" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
-            <feColorMatrix values="0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.15 0" type="matrix" in="shadowBlurOuter1" result="shadowMatrixOuter1"></feColorMatrix>
-            <feMerge>
-                <feMergeNode in="shadowMatrixOuter1"></feMergeNode>
-                <feMergeNode in="SourceGraphic"></feMergeNode>
-            </feMerge>
-        </filter>
-        <rect id="path-2" x="0" y="0" width="48" height="40" rx="4"></rect>
-        <filter x="-4.2%" y="-2.5%" width="108.3%" height="110.0%" filterUnits="objectBoundingBox" id="filter-4">
-            <feOffset dx="0" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
-            <feGaussianBlur stdDeviation="0.5" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
-            <feColorMatrix values="0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.1 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
-        </filter>
-    </defs>
-    <g id="配置面板" width="48" height="40" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-        <g id="setting-copy-2" width="48" height="40" transform="translate(-1190.000000, -136.000000)">
-            <g id="Group-8" width="48" height="40" transform="translate(1167.000000, 0.000000)">
-                <g id="Group-5-Copy-5" filter="url(#filter-1)" transform="translate(25.000000, 137.000000)">
-                    <mask id="mask-3" fill="white">
-                        <use xlink:href="#path-2"></use>
-                    </mask>
-                    <g id="Rectangle-18">
-                        <use fill="black" fill-opacity="1" filter="url(#filter-4)" xlink:href="#path-2"></use>
-                        <use fill="#F0F2F5" fill-rule="evenodd" xlink:href="#path-2"></use>
-                    </g>
-                    <rect id="Rectangle-11" fill="#FFFFFF" mask="url(#mask-3)" x="0" y="0" width="48" height="10"></rect>
-                    <rect id="Rectangle-18" fill="#303648" mask="url(#mask-3)" x="0" y="0" width="16" height="40"></rect>
-                </g>
-            </g>
-        </g>
-    </g>
-</svg>

+ 0 - 39
vuedx/static/img/light.4183aad0.svg

@@ -1,39 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<svg width="52px" height="45px" viewBox="0 0 52 45" version="1.1" 
-    xmlns="http://www.w3.org/2000/svg" 
-    xmlns:xlink="http://www.w3.org/1999/xlink">
-    <defs>
-        <filter x="-9.4%" y="-6.2%" width="118.8%" height="122.5%" filterUnits="objectBoundingBox" id="filter-1">
-            <feOffset dx="0" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
-            <feGaussianBlur stdDeviation="1" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
-            <feColorMatrix values="0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.15 0" type="matrix" in="shadowBlurOuter1" result="shadowMatrixOuter1"></feColorMatrix>
-            <feMerge>
-                <feMergeNode in="shadowMatrixOuter1"></feMergeNode>
-                <feMergeNode in="SourceGraphic"></feMergeNode>
-            </feMerge>
-        </filter>
-        <rect id="path-2" x="0" y="0" width="48" height="40" rx="4"></rect>
-        <filter x="-4.2%" y="-2.5%" width="108.3%" height="110.0%" filterUnits="objectBoundingBox" id="filter-4">
-            <feOffset dx="0" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
-            <feGaussianBlur stdDeviation="0.5" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
-            <feColorMatrix values="0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.1 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
-        </filter>
-    </defs>
-    <g id="配置面板" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-        <g id="setting-copy-2" transform="translate(-1254.000000, -136.000000)">
-            <g id="Group-8" transform="translate(1167.000000, 0.000000)">
-                <g id="Group-5" filter="url(#filter-1)" transform="translate(89.000000, 137.000000)">
-                    <mask id="mask-3" fill="white">
-                        <use xlink:href="#path-2"></use>
-                    </mask>
-                    <g id="Rectangle-18">
-                        <use fill="black" fill-opacity="1" filter="url(#filter-4)" xlink:href="#path-2"></use>
-                        <use fill="#F0F2F5" fill-rule="evenodd" xlink:href="#path-2"></use>
-                    </g>
-                    <rect id="Rectangle-18" fill="#FFFFFF" mask="url(#mask-3)" x="0" y="0" width="16" height="40"></rect>
-                    <rect id="Rectangle-11" fill="#FFFFFF" mask="url(#mask-3)" x="0" y="0" width="48" height="10"></rect>
-                </g>
-            </g>
-        </g>
-    </g>
-</svg>

BIN
vuedx/static/img/logo-b.fd92c04e.png


BIN
vuedx/static/img/logo.847312f6.png


BIN
vuedx/static/img/tj1.b68f0515.png


BIN
vuedx/static/img/tj2.fa68c989.png


File diff suppressed because it is too large
+ 0 - 0
vuedx/static/js/app.70c56c6b.js


File diff suppressed because it is too large
+ 0 - 0
vuedx/static/js/chunk-088619b5.87c50e30.js


File diff suppressed because it is too large
+ 0 - 0
vuedx/static/js/chunk-1c3eafb5.0c86e8af.js


File diff suppressed because it is too large
+ 0 - 0
vuedx/static/js/chunk-2d0b2b28.9ffc10ea.js


File diff suppressed because it is too large
+ 0 - 0
vuedx/static/js/chunk-2d0e2366.68f2ed78.js


+ 0 - 1
vuedx/static/js/chunk-2d0f012d.1bde8e38.js

@@ -1 +0,0 @@
-(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d0f012d"],{"9b8f":function(e,r,n){"use strict";n.r(r);n("ac1f"),n("5319");var t,u,a={created:function(){var e=this.$route,r=e.params,n=e.query,t=r.path;this.$router.replace({path:"/"+t,query:n})},render:function(e){return e()}},c=a,o=n("2877"),p=Object(o["a"])(c,t,u,!1,null,null,null);r["default"]=p.exports}}]);

+ 0 - 1
vuedx/static/js/chunk-2d1d87f5.f9d949cf.js

@@ -1 +0,0 @@
-(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d1d87f5"],{9798:function(t,e,s){},cc6c:function(t,e,s){t.exports=s.p+"static/img/401.089007e7.gif"},e356:function(t,e,s){"use strict";s("9798")},ec55:function(t,e,s){"use strict";s.r(e);var a=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"errPage-container"},[s("el-button",{staticClass:"pan-back-btn",attrs:{icon:"arrow-left"},on:{click:t.back}},[t._v(" 返回 ")]),s("el-row",[s("el-col",{attrs:{span:12}},[s("h1",{staticClass:"text-jumbo text-ginormous"},[t._v(" 401错误! ")]),s("h2",[t._v("您没有访问权限!")]),s("h6",[t._v("对不起,您没有访问权限,请不要进行非法操作!您可以返回主页面")]),s("ul",{staticClass:"list-unstyled"},[s("li",{staticClass:"link-type"},[s("router-link",{attrs:{to:"/index"}},[t._v(" 回首页 ")])],1)])]),s("el-col",{attrs:{span:12}},[s("img",{attrs:{src:t.errGif,width:"313",height:"428",alt:"Girl has dropped her ice cream."}})])],1)],1)},c=[],n=s("cc6c"),r=s.n(n),i={name:"Page401",data:function(){return{errGif:r.a+"?"+ +new Date}},methods:{back:function(){this.$route.query.noGoBack?this.$router.push({path:"/"}):this.$router.go(-1)}}},o=i,l=(s("e356"),s("2877")),u=Object(l["a"])(o,a,c,!1,null,"0e5c12bd",null);e["default"]=u.exports}}]);

File diff suppressed because it is too large
+ 0 - 0
vuedx/static/js/chunk-32ba355e.25bb1341.js


+ 0 - 1
vuedx/static/js/chunk-4b5668c0.55584802.js

@@ -1 +0,0 @@
-(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-4b5668c0"],{"26fc":function(t,s,i){t.exports=i.p+"static/img/404_cloud.0f4bc32b.png"},2754:function(t,s,i){"use strict";i.r(s);var c=function(){var t=this,s=t.$createElement,i=t._self._c||s;return i("div",{staticClass:"wscn-http404-container"},[i("div",{staticClass:"wscn-http404"},[t._m(0),i("div",{staticClass:"bullshit"},[i("div",{staticClass:"bullshit__oops"},[t._v(" 404错误! ")]),i("div",{staticClass:"bullshit__headline"},[t._v(" "+t._s(t.message)+" ")]),i("div",{staticClass:"bullshit__info"},[t._v(" 对不起,您正在寻找的页面不存在。尝试检查URL的错误,然后按浏览器上的刷新按钮或尝试在我们的应用程序中找到其他内容。 ")]),i("router-link",{staticClass:"bullshit__return-home",attrs:{to:"/index"}},[t._v(" 返回首页 ")])],1)])])},a=[function(){var t=this,s=t.$createElement,c=t._self._c||s;return c("div",{staticClass:"pic-404"},[c("img",{staticClass:"pic-404__parent",attrs:{src:i("a36b"),alt:"404"}}),c("img",{staticClass:"pic-404__child left",attrs:{src:i("26fc"),alt:"404"}}),c("img",{staticClass:"pic-404__child mid",attrs:{src:i("26fc"),alt:"404"}}),c("img",{staticClass:"pic-404__child right",attrs:{src:i("26fc"),alt:"404"}})])}],e={name:"Page404",computed:{message:function(){return"找不到网页!"}}},l=e,n=(i("e077"),i("2877")),r=Object(n["a"])(l,c,a,!1,null,"267f2676",null);s["default"]=r.exports},"2e5e":function(t,s,i){},a36b:function(t,s,i){t.exports=i.p+"static/img/404.a57b6f31.png"},e077:function(t,s,i){"use strict";i("2e5e")}}]);

File diff suppressed because it is too large
+ 0 - 0
vuedx/static/js/chunk-5e64aecb.968e5ba0.js


File diff suppressed because it is too large
+ 0 - 0
vuedx/static/js/chunk-6a3a862b.ff629e0b.js


File diff suppressed because it is too large
+ 0 - 0
vuedx/static/js/chunk-6f6e7ec6.57a20706.js


File diff suppressed because it is too large
+ 0 - 0
vuedx/static/js/chunk-elementUI.5170e8b1.js


File diff suppressed because it is too large
+ 0 - 0
vuedx/static/js/chunk-libs.b64e9255.js


Some files were not shown because too many files changed in this diff