Browse Source

删除文件

zhaoke 1 year ago
parent
commit
0b1ce37c4b

+ 0 - 5
.env.development

@@ -1,5 +0,0 @@
-# just a flag
-ENV = 'development'
-
-# base api
-VUE_APP_BASE_API = '/dev-api'

+ 0 - 6
.env.production

@@ -1,6 +0,0 @@
-# just a flag
-ENV = 'production'
-
-# base api
-VUE_APP_BASE_API = '/prod-api'
-

+ 0 - 8
.env.staging

@@ -1,8 +0,0 @@
-NODE_ENV = production
-
-# just a flag
-ENV = 'staging'
-
-# base api
-VUE_APP_BASE_API = '/stage-api'
-

+ 0 - 11
Jenkinsfile

@@ -1,11 +0,0 @@
-pipeline {
-  agent any
-  stages {
-    stage('error') {
-      steps {
-        sh 'npm -v'
-      }
-    }
-
-  }
-}

+ 0 - 21
LICENSE

@@ -1,21 +0,0 @@
-MIT License
-
-Copyright (c) 2017-present PanJiaChen
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.

+ 0 - 1
package.json

@@ -8,7 +8,6 @@
     "build:prod": "vue-cli-service build",
     "build:stage": "vue-cli-service build --mode staging",
     "preview": "node build/index.js --preview",
-    "svgo": "svgo -f src/icons/svg --config=src/icons/svgo.yml",
     "lint": "eslint --ext .js,.vue src",
     "test:unit": "jest --clearCache && vue-cli-service test:unit",
     "test:ci": "npm run lint && npm run test:unit"

File diff suppressed because it is too large
+ 250 - 198
pnpm-lock.yaml


BIN
src/assets/account/ic_user_permissions_default.png


BIN
src/assets/analysis/bg_a.png


BIN
src/assets/analysis/bg_b.png


BIN
src/assets/analysis/ic_change_statistical.png


BIN
src/assets/analysis/ic_luggage_statistical.png


BIN
src/assets/analysis/ic_time_statistical.png


BIN
src/assets/analysis/pic_triangle_conner.png


+ 0 - 78
src/layout/components/EchartsNum/index.vue

@@ -1,78 +0,0 @@
-<!--
- * @Author: your name
- * @Date: 2021-10-15 14:16:01
- * @LastEditTime: 2021-11-05 15:19:33
- * @LastEditors: Please set LastEditors
- * @Description: In User Settings Edit
- * @FilePath: \Foshan4A\src\layout\components\EchartsNum\index.vue
--->
-<template>
-  <div :class="type?'flex':'r3'" class="account-number">
-    <div v-for="(item,index) in arrs" :key="index" :class="!type?'t21':''" class="account-number-list">
-      <div class="number">{{item.number}}</div>
-      <div class="text">
-        <span :style="{'background':item.color}" class="icon"></span>
-        <span class="txt">{{item.txt}}</span>
-      </div>
-    </div>
-  </div>
-</template>
-
-<script>
-export default {
-  name: 'EchartsNum',
-  props: {
-    arrs: {
-      type: Array,
-      default: () => []
-    },
-    type: {
-      type: Boolean,
-      default: false
-    }
-  }
-}
-</script>
-
-<style lang="scss" scoped>
-.t21 {
-  margin-top: 16px;
-}
-.r3 {
-  margin-right: 30px;
-}
-.account-number {
-  margin-top: 27px;
-  &:first-child {
-    margin-top: 59px;
-  }
-}
-.account-number-list {
-  .number {
-    font-size: 28px;
-    font-family: DIN;
-    font-weight: bold;
-    color: #303133;
-    margin-bottom: 3px;
-  }
-  .icon {
-    width: 12px;
-    height: 12px;
-    display: inline-block;
-    background: #8969be;
-    margin-right: 7px;
-    position: relative;
-    top: 2px;
-    border-radius: 2px;
-  }
-  .txt {
-    font-size: 14px;
-    font-family: Microsoft YaHei;
-    font-weight: bold;
-    color: #303133;
-  }
-  .new {
-    background: #697bbe;
-  }
-}
-</style>

+ 0 - 319
src/layout/components/OrgTree/index.vue

@@ -1,319 +0,0 @@
-<!--
- * @Author: your name
- * @Date: 2021-11-09 09:46:37
- * @LastEditTime: 2021-12-22 17:08:40
- * @LastEditors: Please set LastEditors
- * @Description: vue2-org-tree
- * @FilePath: \Foshan4A\src\layout\components\OrgTree\index.vue
--->
-<template>
-  <div class="orgTree">
-    <div class="orgTreeContent">
-      <vue2-org-tree
-        :data="dataList"
-        :horizontal="true"
-        collapsable
-        @on-expand="onExpand"
-        :render-content="renderContent"
-      />
-    </div>
-  </div>
-</template>
-
-<script>
-export default {
-  name: "OrgTree",
-  props: {
-    dataList: {
-      type: Object,
-      default: () => {},
-    },
-    renderContent: {
-      type: Function,
-    },
-  },
-  mounted() {
-    this.toggleExpand(this.dataList, true);
-  },
-  watch: {
-    dataList: {
-      handler(val, old) {
-        if (val != old) {
-          this.toggleExpand(val, true);
-        }
-      },
-      deep: true,
-    },
-  },
-  methods: {
-    collapse(list) {
-      const _this = this;
-      list.forEach(function (child) {
-        if (child.expand) {
-          child.expand = false;
-        }
-        child.children && _this.collapse(child.children);
-      });
-    },
-    //展开
-    onExpand(e, data) {
-      const _this = this;
-      if ("expand" in data) {
-        data.expand = !data.expand;
-        if (!data.expand && data.children) {
-          _this.collapse(data.children);
-        }
-      } else {
-        _this.$set(data, "expand", true);
-      }
-      if (data.expand) {
-        this.$emit("expandData", data);
-      }
-    },
-    //节点关闭按钮点击
-    onNodeClick(e, data) {
-      const _this = this;
-      if (e.target.className === "icon el-icon-close") {
-        this.decompose(_this.dataList.children, data.id);
-      }
-    },
-    //删除指定数据
-    decompose(data, id) {
-      for (let i = 0; i < data.length; i++) {
-        if (data[i].id === id) {
-          data.splice(i, 1);
-        } else if (data[i].children && data[i].children.length > 0) {
-          this.decompose(data[i].children, id);
-        }
-      }
-    },
-    //是否完全展开
-    toggleExpand(data, val) {
-      const _this = this;
-      if (Array.isArray(data)) {
-        data.forEach(function (item) {
-          _this.$set(item, "expand", val);
-          if (item.children) {
-            _this.toggleExpand(item.children, val);
-          }
-        });
-      } else {
-        _this.$set(data, "expand", val);
-        if (data.children) {
-          _this.toggleExpand(data.children, val);
-        }
-      }
-    },
-  },
-};
-</script>
-
-<style lang="scss" scoped>
-.orgTree {
-  ::v-deep .orgTreeContent {
-    .account-left-content-teams {
-      position: relative;
-      .info-close {
-        position: absolute;
-        width: 24px;
-        height: 24px;
-        line-height: 24px;
-        text-align: center;
-        background: #000000;
-        border-radius: 50%;
-        top: -12px;
-        right: -12px;
-        z-index: 5;
-        cursor: pointer;
-        .icon {
-          color: #fff;
-          font-weight: 600;
-        }
-      }
-      .list {
-        .info {
-          line-height: normal;
-          margin-bottom: 37px;
-          .name {
-            font-size: 16px;
-            font-weight: bold;
-          }
-          .cap {
-            width: 16px;
-            height: 16px;
-            display: inline-block;
-            background-repeat: no-repeat;
-            background-size: cover;
-            transition: all 0.3s;
-            margin-left: 16px;
-            position: relative;
-            top: 2px;
-            &:first-child {
-              margin-right: 0;
-            }
-          }
-          .cap-plus {
-            background-image: url("../../../assets/status/ic_plus.png");
-            &:hover {
-              background-image: url("../../../assets/status/ic_plus_hovar.png");
-            }
-          }
-          .cap-edit {
-            background-image: url("../../../assets/status/ic_edit_default.png");
-            &:hover {
-              background-image: url("../../../assets/status/ic_edit_hovar.png");
-            }
-          }
-          .cap-sub {
-            background-image: url("../../../assets/status/ic_permissions_add_default.png");
-            &:hover {
-              background-image: url("../../../assets/status/ic_permissions_add_hoavr.png");
-            }
-          }
-          .cap-job {
-            background-image: url("../../../assets/status/ic_jobs.png");
-            &:hover {
-              background-image: url("../../../assets/status/ic_jobs_hovar.png");
-            }
-          }
-          .cap-member {
-            background-image: url("../../../assets/status/ic_member.png");
-            &:hover {
-              background-image: url("../../../assets/status/ic_member_hovar.png");
-            }
-          }
-        }
-      }
-      .team {
-        background: #fff;
-        border-radius: 4px;
-        box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
-        overflow: hidden;
-        .bg {
-          height: 4px;
-          background: #6f81bc;
-        }
-        .bgOut {
-          height: 4px;
-          background: #de4799;
-        }
-        .status1 {
-          background: #6f81bc;
-        }
-        .status2 {
-          background: #cfd6e2;
-        }
-        .status3 {
-          background: #f25555;
-        }
-      }
-      .list {
-        padding: 23px 24px;
-        position: relative;
-        min-width: 240px;
-        min-height: 118px;
-        .info {
-          margin-bottom: 20px;
-          .info-avoutr {
-            display: flex;
-            .avoutr {
-              width: 40px;
-              height: 40px;
-              border-radius: 50%;
-              background: #303133;
-              img {
-                max-width: 100%;
-              }
-            }
-            .msg {
-              margin-left: 20px;
-              p {
-                margin: 0;
-                padding: 0;
-                height: 20px;
-                line-height: 20px;
-              }
-              .name {
-                font-weight: bold;
-                color: #303133;
-                font-size: 18px;
-                margin-bottom: 8px;
-              }
-              .group {
-                font-size: 14px;
-                font-family: Microsoft YaHei;
-                font-weight: 400;
-                color: #303133;
-              }
-            }
-          }
-          .icon {
-            font-size: 16px;
-            cursor: pointer;
-          }
-        }
-        .time,
-        .ip {
-          height: 16px;
-          line-height: 16px;
-          font-size: 16px;
-          .glr {
-            color: #909399;
-          }
-        }
-        .ip {
-          margin-top: 23px;
-          margin-bottom: 38px;
-        }
-        .details {
-          height: 24px;
-          line-height: 24px;
-          text-align: left;
-          font-size: 14px;
-          font-family: Microsoft YaHei;
-          font-weight: 400;
-          color: #afb4bf;
-          .success {
-            color: #6f80bc;
-          }
-          .error {
-            color: #f25555;
-          }
-        }
-      }
-    }
-    .org-tree-node-label .org-tree-node-label-inner {
-      padding: 0;
-      box-shadow: none;
-      border-radius: 0;
-    }
-    .org-tree-container {
-      background-color: initial;
-      padding: 0;
-      display: block;
-    }
-    .org-tree-node-btn {
-      width: 24px;
-      height: 24px;
-      background-color: #2d67e3;
-      box-shadow: none;
-      border: none;
-    }
-    .org-tree-node-children {
-      &::before {
-        border-top: none;
-        height: 4px;
-        background-color: #000;
-      }
-    }
-    .horizontal .org-tree-node:not(:first-child):before,
-    .horizontal .org-tree-node:not(:last-child):after {
-      border-top: 0;
-      border-left: 4px solid #000;
-    }
-    .horizontal .org-tree-node:not(:only-child):after {
-      border-top: 4px solid #000;
-    }
-  }
-}
-</style>

+ 0 - 155
src/layout/components/Tissuetree/index.vue

@@ -1,155 +0,0 @@
-<template>
-  <!-- 组织树组件 -->
-  <div class="tree-content">
-    <vue2-org-tree
-      :data="dataList"
-      :horizontal="true"
-      collapsable
-      @on-expand="onExpand"
-      :render-content="renderContent"
-    />
-  </div>
-</template>
-<script>
-export default {
-  name: "Tissuetree",
-  props: ["dataList"],
-  data() {
-    return {
-      // data:''
-    };
-  },
-  mounted() {
-    this.toggleExpand(this.dataList, true);
-  },
-  methods: {
-    collapse(list) {
-      var _this = this;
-      list.forEach(function (child) {
-        if (child.expand) {
-          child.expand = false;
-        }
-        child.children && _this.collapse(child.children);
-      });
-    },
-    //展开
-    onExpand(e, data) {
-      if ("expand" in data) {
-        data.expand = !data.expand;
-        if (!data.expand && data.children) {
-          this.collapse(data.children);
-        }
-      } else {
-        this.$set(data, "expand", true);
-      }
-    },
-    //是否完全展开
-    toggleExpand(data, val) {
-      var _this = this;
-      if (Array.isArray(data)) {
-        data.forEach(function (item) {
-          _this.$set(item, "expand", val);
-          if (item.children) {
-            _this.toggleExpand(item.children, val);
-          }
-        });
-      } else {
-        this.$set(data, "expand", val);
-        if (data.children) {
-          _this.toggleExpand(data.children, val);
-        }
-      }
-    },
-
-    //自定义节点
-    renderContent(h, data) {
-      return (
-        <div class="labelcontent" style="position: relative;">
-          <div class="topTitle">{data.label}</div>
-          <div class="org-per">
-            <div class="org-num">
-              部门
-            </div>
-            <div onClick={()=>this.$router.push({path:'postMenger'})}>岗位</div> <div onClick={()=>this.$router.push({path:'StaffManager'})}>职员</div>
-
-          </div>
-          <div class="org-per1">
-            <div>{data.department}</div>
-            <div class="org-num">{data.station}</div>
-            <div>{data.personnel}</div>
-                <el-switch
-              v-model={data.value}
-              active-color="#6F81BC"
-              inactive-color="#E4E7EE"
-            ></el-switch>
-          </div>
-          <i
-            class="el-icon-error orgUnitState-close"
-            style="position: absolute;top: -18px;right: -24px;z-index: 10; color: #303133;font-size: 16px;"
-          ></i>
-        </div>
-      );
-    },
-  },
-};
-</script>
-<style lang="scss" scoped>
-.tree-content {
-  margin-top: 182px;
-}
-.org-tree-node-label-inner {
-  width: 264px;
-  height: 136px;
-  background: #ffffff;
-  box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
-  border-radius: 6px;
-}
-.labelcontent {
-
-    position: relative;
-
-}
-.org-tree-container {
-  background: none;
-}
-.tree >>> .orgUnitState-close {
-  position: absolute;
-  top: -10px;
-  right: -24px;
-  z-index: 10;
-  color: #7c8087;
-  font-size: 16px;
-  font-style: normal;
-}
-.el-icon-error:before {
-  content: "\e79d";
-}
-
-.expanded {
-  color: #303133;
-}
-.topTitle {
-  height: 18px;
-  font-size: 18px;
-  font-weight: bold;
-  color: #303133;
-  margin: 14px;
-  display: flex;
-  justify-content: space-between;
-}
-.org-per {
-  margin-top: 24px;
-  width: 150px;
-  cursor: pointer;
-  display: flex;
-   justify-content: space-between;
-}
-.org-per1 {
-  display: flex;
-  cursor: pointer;
-  margin-top: 8px;
-   width: 230px;
-   justify-content: space-between;
-}
-</style>
-

+ 0 - 1
src/main.js

@@ -14,7 +14,6 @@ import App from './App'
 import store from './store'
 import router from './router'
 
-import '@/icons' // icon
 // import '@/permission'
 import '@/getMenu'
 import '@/config/checkPermission' //按钮权限 全局自定义指令v-is

+ 0 - 14
vue.config.js

@@ -90,20 +90,6 @@ module.exports = {
     // when there are many pages, it will cause too many meaningless requests
     config.plugins.delete('prefetch')
 
-    // set svg-sprite-loader
-    config.module.rule('svg').exclude.add(resolve('src/icons')).end()
-    config.module
-      .rule('icons')
-      .test(/\.svg$/)
-      .include.add(resolve('src/icons'))
-      .end()
-      .use('svg-sprite-loader')
-      .loader('svg-sprite-loader')
-      .options({
-        symbolId: 'icon-[name]'
-      })
-      .end()
-
     config.when(process.env.NODE_ENV !== 'development', config => {
       config
         .plugin('ScriptExtHtmlWebpackPlugin')

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