Prechádzať zdrojové kódy

Merge branch 'master' of http://120.26.64.82:3000/BFFE/CABaggageData2.0

zhaoke 2 rokov pred
rodič
commit
aeffcf141e

+ 2 - 1
package.json

@@ -30,7 +30,8 @@
     "vue-json-viewer": "^2.2.21",
     "vue-router": "3.0.6",
     "vue2-org-tree": "^1.3.5",
-    "vuex": "3.1.0"
+    "vuex": "3.1.0",
+    "xss": "^1.0.13"
   },
   "devDependencies": {
     "@vue/cli-plugin-babel": "4.4.4",

+ 1 - 3
public/index.html

@@ -4,14 +4,12 @@
     <meta charset="utf-8">
     <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
     <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
+    <meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-eval';style-src 'self' 'unsafe-inline'">
     <link rel="icon" href="<%= BASE_URL %>favicon.ico">
     <title><%= webpackConfig.name %></title>
     <script src="<%= BASE_URL %>config.js"></script>
   </head>
   <body>
-    <noscript>
-      <strong>We're sorry but <%= webpackConfig.name %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
-    </noscript>
     <div id="app"></div>
     <!-- built files will be auto injected -->
   </body>

+ 2 - 2
src/components/rulesofcompetency/index copy.vue

@@ -190,10 +190,10 @@ export default {
         ValidEnd: null,
       }
       let list = this.$store.state.auth.authList;
-      console.log(list)
+      // console.log(list)
       let idArr = [];
       list.forEach((item) => {
-        console.log(item)
+        // console.log(item)
         if(item!=null){
         idArr.push(item.AuthId);
         }

+ 3 - 0
src/main.js

@@ -27,6 +27,9 @@ import elTableInfiniteScroll from 'el-table-infinite-scroll';
 
 Vue.use(elTableInfiniteScroll)
 
+import xss from 'xss'
+Vue.use(xss)
+
 Vue.prototype.$echarts = echarts
 Vue.config.productionTip = false
 new Vue({

+ 0 - 1
src/store/modules/user.js

@@ -93,7 +93,6 @@ const actions = {
 
   // user logout
   logout ({ commit, state }) {
-    console.log(state)
     return new Promise((resolve, reject) => {
       loginUp({ "UserId": state.UserId, "UserType": state.UserType }).then(result => {
         // sessionStorage.removeItem("userName");

+ 0 - 8
src/utils/socket.js

@@ -16,15 +16,11 @@ class socketClient {
   }
   // 初始化socket
   initWebSocket () {
-    console.log("========= 初始化socket ===========");
     return new Promise((resolve, reject) => {
       this.websocket = new WebSocket(this.wsUrl);
-      console.log("========= create websocket ===========");
       this.wsOpen().then((res) => {
         this.isLoad = true;
-        console.log("========= onopen websocket ===========", res);
         this.wsSend(this.wsAuto);
-        console.log("========= 授权完成 ===========");
         this.lockReconnect = true;
         resolve(true)
         if (this.isLoad == true) {
@@ -37,7 +33,6 @@ class socketClient {
         // this.heartBeat();
       });
       this.websocket.onerror = (evt) => {
-        console.log("========= 连接错误 ===========", evt);
         this.wsReconnect();
       };
 
@@ -52,7 +47,6 @@ class socketClient {
         }
         this.isLoad = false;
         this.lockReconnect = false;
-        console.log("========= 客户端断开连接 ===========", evt);
         this.wsReconnect();
       };
 
@@ -60,7 +54,6 @@ class socketClient {
   }
   // 重新连接
   wsReconnect () {
-    console.log("========= 客户重新连接 ===========");
     if (this.heartBeatTimer) clearInterval(this.heartBeatTimer);
     if (this.errTimer) clearTimeout(this.errTimer);
     if (this.lockReconnect) return;
@@ -103,7 +96,6 @@ class socketClient {
         try {
           this.websocket.onclose = (evt) => {
             this.$message.error('客户端断开连接');
-            console.log("========= 客户端断开连接 ===========", evt);
             resolve(evt);
           };
         } catch (err) {

+ 7 - 7
src/views/accountManagement/components/accountEdit.vue

@@ -12,13 +12,13 @@
     <div class="account-edit-header">
       <div class="title">
         <div class="manageTitle">{{ pageTitle }}</div>
-        <div class="account-status">
+        <!-- <div class="account-status">
           是否启用
           <el-radio-group v-model="accountForm.status">
             <el-radio :label="1">是</el-radio>
             <el-radio :label="0">否</el-radio>
           </el-radio-group>
-        </div>
+        </div> -->
         <div v-is="doesAccountExist ? ['userupdate_btn_save'] : []">
           <!-- <el-button size="small" type="primary" class="btn-delete" @click="delate">删除</el-button> -->
           <el-button
@@ -236,14 +236,14 @@
       >
         <el-col
           v-is="doesAccountExist ? ['account_edit_role_list'] : ['account_add_role_list']"
-          :span="8"
+          :span="12"
         >
           <div class="content-card">
             <RoleList
               title="角色列表"
               :role-type="roleType"
               :check-box-list="roleListCheckedList"
-              :number="8"
+              :number="6"
               :active="true"
               @checkChange="getRoleListChecked"
               @checkClick="selectRole"
@@ -253,7 +253,7 @@
         </el-col>
         <el-col
           v-is="doesAccountExist ? ['account_edit_auth_list'] : ['account_add_auth_list']"
-          :span="8"
+          :span="12"
         >
           <div class="content-card">
             <PermissionList
@@ -265,7 +265,7 @@
             />
           </div>
         </el-col>
-        <el-col
+        <!-- <el-col
           v-is="doesAccountExist ? ['account_edit_login_setting'] : ['account_add_login_setting']"
           :span="8"
         >
@@ -275,7 +275,7 @@
               @getCheckedList="getLoginPolicyChecked"
             />
           </div>
-        </el-col>
+        </el-col> -->
       </el-row>
     </div>
     <!-- <Dialog :flag="dialogVisible">

+ 108 - 206
src/views/accountManagement/components/accountHome.vue

@@ -7,24 +7,53 @@
         <div class="status2"><span class="icon" />离线</div>
         <div class="status3"><span class="icon" />禁用</div>
       </div>
-      <Search :is-slot="true" :is-title="false" @getSearchData="getSearchData" @clearSearchData="clearSearchData">
-        <el-button v-is="['userlist_btn_add']" class="btnAdd" @click="addAccount">新增</el-button>
+      <Search
+        :is-slot="true"
+        :is-title="false"
+        @getSearchData="getSearchData"
+        @clearSearchData="clearSearchData"
+      >
+        <el-button
+          v-is="['userlist_btn_add']"
+          class="btnAdd"
+          @click="addAccount"
+        >新增</el-button>
       </Search>
     </div>
     <div class="content-box scrollbar">
       <template v-if="accountArr.length">
-        <el-row v-infinite-scroll="load" :infinite-scroll-disabled="disabled" :infinite-scroll-distance="20" :gutter="24">
-          <el-col v-for="account in accountArr" :key="account.UserId" :xs="24" :sm="12" :md="8" :lg="4" class="account-box">
+        <el-row
+          v-infinite-scroll="load"
+          :infinite-scroll-disabled="disabled"
+          :infinite-scroll-distance="20"
+          :gutter="24"
+        >
+          <el-col
+            v-for="account in accountArr"
+            :key="account.UserId"
+            :xs="24"
+            :sm="12"
+            :md="8"
+            :lg="4"
+            class="account-box"
+          >
             <div class="account-box-wrap">
               <div :class="account.Status === 1 ? 'headOnline' : account.Status === 2 ? 'headOffline' : 'headDisabled'" />
               <div>
                 <div class="nameBox flex">
                   <div class="flex-wrap">
                     <div class="name">{{ account.UserName }}</div>
-                    <div v-is="['userlist_btn_update']" class="loger" @click="toEdit(account.UserId)" />
-                    <div @click="authAccount(account)" class="loger cap-auth"></div>
+                    <div
+                      v-is="['userlist_btn_update']"
+                      class="loger"
+                      @click="toEdit(account.UserId)"
+                    />
                   </div>
-                  <div v-is="['userlist_btn_del']" class="del" @click="deleteUser(account)">
+                  <div
+                    v-is="['userlist_btn_del']"
+                    class="del"
+                    @click="deleteUser(account)"
+                  >
                     <i class="el-icon-close" />
                   </div>
                 </div>
@@ -33,20 +62,40 @@
                   <el-col :span="24">{{ account.group }}</el-col>
                 </el-row>
 
-                <el-row class="content">
+                <!-- <el-row class="content">
                   <el-col :span="12">登录次数:<span>{{ account.LoginCount }}</span></el-col>
-                  <el-col :span="12" class="flexLeft">异常登录:<span>{{ account.ExceptionCount }}</span></el-col>
-                </el-row>
+                  <el-col
+                    :span="12"
+                    class="flexLeft"
+                  >异常登录:<span>{{ account.ExceptionCount }}</span></el-col>
+                </el-row> -->
                 <el-row class="content">
                   <el-col :span="24">权限项数:<span>{{ account.AuthCount }}</span></el-col>
                 </el-row>
                 <el-row class="content">
                   <el-col :span="12">
-                    状态:<span v-if="account.Status == 1 || account.Status == 2" class="used">启用</span>
-                    <span v-else-if="account.Status == 3" class="unUsed">停用</span>
+                    状态:<span
+                      v-if="account.Status == 1 || account.Status == 2"
+                      class="used"
+                    >启用</span>
+                    <span
+                      v-else-if="account.Status == 3"
+                      class="unUsed"
+                    >停用</span>
                   </el-col>
-                  <el-col v-is="['userlist_btn_status_change']" :span="12" class="flexLeft">
-                    <el-switch v-model="account.Flag" :active-value="true" :inactive-value="false" active-color="#2D67E3" inactive-color="#CFD6E2" @change="userActiveToggle(account)" />
+                  <el-col
+                    v-is="['userlist_btn_status_change']"
+                    :span="12"
+                    class="flexLeft"
+                  >
+                    <el-switch
+                      v-model="account.Flag"
+                      :active-value="true"
+                      :inactive-value="false"
+                      active-color="#2D67E3"
+                      inactive-color="#CFD6E2"
+                      @change="userActiveToggle(account)"
+                    />
                   </el-col>
                 </el-row>
               </div>
@@ -54,8 +103,14 @@
           </el-col>
         </el-row>
         <template v-if="pages > 1">
-          <p v-if="loading" class="center">加载中...</p>
-          <p v-if="noMore" class="center">没有更多数据了~</p>
+          <p
+            v-if="loading"
+            class="center"
+          >加载中...</p>
+          <p
+            v-if="noMore"
+            class="center"
+          >没有更多数据了~</p>
         </template>
       </template>
     </div>
@@ -64,39 +119,17 @@
         <div class="title del-title">删除账号</div>
         <div class="content del-content"><i class="el-icon-error error r10" />你确定要删除<span class="error l10">{{ deleteUserName }}</span>?</div>
         <div class="foot Delfoot right t30">
-          <el-button size="medium" type="danger" class="r24" @click="del()">删除</el-button>
+          <el-button
+            size="medium"
+            type="danger"
+            class="r24"
+            @click="del()"
+          >删除</el-button>
 
-          <el-button size="medium" @click="dialogVisible = false">取消</el-button>
-        </div>
-      </div>
-    </Dialog>
-    <!--新增/编辑-->
-    <Dialog :flag="editDialogVisible" width="508px" :show-flag="true">
-      <div class="airportInfoDialog dialog-public-background">
-        <div class="title">{{ editDialogTitle }}</div>
-        <div class="content">
-          <el-form ref="ruleForm" :model="ruleForm" :rules="rules" label-width="130px" class="demo-ruleForm">
-            <el-form-item label="账号名称" prop="UserName">
-              <el-input v-model="ruleForm.UserName" size="medium" placeholder="请输入账号名称" />
-            </el-form-item>
-            <el-form-item label="账号密码" prop="UserPwd">
-              <div class="flex-wrap">
-                <el-input v-model="ruleForm.UserPwd" class="r25" disabled size="medium" placeholder="请输入密码" />
-                <el-button size="medium" @click="resetPwd" style="position: relative;top: 4px;" class="r26" type="primary">重置密码</el-button>
-              </div>
-            </el-form-item>
-            <el-form-item label="账号描述" prop="UserDesc">
-              <el-input v-model="ruleForm.UserDesc" size="medium" type="textarea" :rows="3" placeholder="请输入角色描述" />
-            </el-form-item>
-            <el-form-item label="是否启用" prop="Status">
-              <el-radio v-model="ruleForm.Status" :label="1">是</el-radio>
-              <el-radio v-model="ruleForm.Status" :label="2">否</el-radio>
-            </el-form-item>
-          </el-form>
-        </div>
-        <div class="foot center t30">
-          <el-button size="medium" type="primary" class="r25 r26" @click="submitClickHandler()">提交</el-button>
-          <el-button size="medium" class="r26" @click="resetForm('ruleForm')">取消</el-button>
+          <el-button
+            size="medium"
+            @click="dialogVisible = false"
+          >取消</el-button>
         </div>
       </div>
     </Dialog>
@@ -106,16 +139,11 @@
 <script>
 import Search from '@/layout/components/Search'
 import Dialog from '@/layout/components/Dialog'
-import { GetAccountList, ChangeUserStatus, delAccount, getAccountDetails, editAccount, addAccount } from '@/api/Account'
-import { pwdProduce } from '@/utils/validate'
-import { mapGetters } from 'vuex'
+import { GetAccountList, ChangeUserStatus, delAccount } from '@/api/Account'
 export default {
   components: { Search, Dialog },
-  data () {
+  data() {
     return {
-      pwdStruc: '',
-      pwdLengthBegin: 0,
-      pwdLengthEnd: 0,
       dialogVisible: false,
       accountArr: [],
       deleteUserId: '',
@@ -127,58 +155,23 @@ export default {
       PageIndex: 1,
       PageSize: 20,
       pages: null,
-      loading: false,
-      editDialogVisible: false,
-      editDialogTitle: '新增账号',
-      editType: 'add',
-      ruleForm: {
-        // 协议信息表单
-        UserName: "",
-        Status: "",
-        UserDesc: "",
-        UserPwd: "",
-        AuthList: [],
-        GroupList: [],
-        RoleList: [],
-        TacList: [],
-      },
-      rules: {
-        // 协议信息表单验证
-        UserName: [
-          { required: true, message: "请输入账号名称", trigger: "blur" },
-        ],
-      },
-      ruleFormObj: {},
-      roleId: ''
+      loading: false
     }
   },
   computed: {
-    ...mapGetters(['systemSet']),
-    noMore () {
+    noMore() {
       return this.PageIndex >= this.pages
     },
-    disabled () {
+    disabled() {
       return this.loading || this.noMore
     }
   },
   watch: {
-    searchInfo (val) {
+    searchInfo(val) {
       val.length === 0 && this.pageInit()
     }
   },
-  created () {
-    // 获取系统配置
-    let obj
-    if (typeof this.systemSet === 'string') {
-      obj = JSON.parse(this.systemSet)
-    } else {
-      obj = this.systemSet
-    }
-    // console.log(obj)
-    const { PwdStruc, PwdLengthBegin, PwdLengthEnd } = obj
-    this.pwdStruc = PwdStruc
-    this.pwdLengthBegin = PwdLengthBegin
-    this.pwdLengthEnd = PwdLengthEnd
+  created() {
     if (!this.searchInfo) {
       this.accountList()
     } else {
@@ -186,96 +179,30 @@ export default {
       this.accountList()
     }
   },
-  mounted () {
-    this.resetPwd()
-  },
   methods: {
-    // 随机生成密码
-    resetPwd () {
-      this.ruleForm.UserPwd = pwdProduce(this.pwdLengthBegin, this.pwdLengthEnd, this.pwdStruc)
-    },
-    // 编辑账号
-    async saveEditAccount () {
-      try {
-        const res = await editAccount(this.ruleForm)
-        if (res.code === 0) {
-          this.$message.success(res.message)
-          this.resetForm('ruleForm')
-          this.pageInit()
-        } else {
-          this.$message.error(res.message)
-        }
-      } catch (error) {
-        console.log('出错了', error)
-      }
-    },
-    // 新增账号
-    async saveAddAccount () {
-      try {
-        const res = await addAccount(this.ruleForm)
-        if (res.code === 0) {
-          this.$message.success(res.message)
-          this.resetForm('ruleForm')
-          this.pageInit()
-        } else {
-          this.$message.error(res.message)
-        }
-      } catch (error) {
-        console.log('出错了', error)
-      }
-    },
-    // 获取当前账号信息
-    async getAccountInfo () {
-      const res = await getAccountDetails({
-        UserId: this.roleId
-      })
-      if (res.code == 0) {
-        const { Status, UserDesc, UserName, UserPwd } = res.returnData
-        this.ruleForm.Status = Status
-        this.ruleForm.UserDesc = UserDesc
-        this.ruleForm.UserName = UserName
-        this.ruleForm.UserPwd = UserPwd
-      } else {
-        this.$message.error(res.message)
-      }
-    },
-    // 新增/编辑-确认
-    submitClickHandler () {
-      this.$refs["ruleForm"].validate((valid) => {
-        if (valid) {
-          if (this.editType == 'add') {
-            this.saveAddAccount()
-          } else {
-            this.saveEditAccount()
-          }
-        } else {
-          return false
-        }
-      });
-    },
     // 滚动加载
-    load () {
+    load() {
       this.PageIndex += 1
       this.accountList()
     },
     // 回到第一页
-    pageInit () {
+    pageInit() {
       this.PageIndex = 1
       this.accountArr = []
       this.accountList()
     },
     // 查询
-    getSearchData (val) {
+    getSearchData(val) {
       this.searchInfo = val
       this.pageInit()
     },
 
     // 清除查询
-    clearSearchData () {
+    clearSearchData() {
       this.searchInfo = ''
     },
     // 修改状态
-    async userActiveToggle ({ Flag, Status, UserId }) {
+    async userActiveToggle({ Flag, Status, UserId }) {
       Status = Flag ? 2 : 3
       try {
         const result = await ChangeUserStatus({
@@ -297,33 +224,25 @@ export default {
         console.log('出错了', error)
       }
     },
-    deleteUser (user) {
+    deleteUser(user) {
       this.dialogVisible = true
       this.deleteUserId = user.UserId
       this.deleteUserName = user.UserName
     },
-    toEdit (userId) {
-      this.editDialogVisible = true
-      this.editType = 'edit'
-      this.editDialogTitle = '编辑账号'
-      this.roleId = userId
-      this.getAccountInfo()
-    },
-    addAccount () {
-      this.editDialogTitle = '新增账号'
-      this.editDialogVisible = true
-      this.editType = 'add'
-      // this.$router.push({
-      //   path: '/account/accountAdd'
-      // })
+    toEdit(userId) {
+      this.userId = userId
+      this.$router.push({
+        path: '/account/accountEdit',
+        query: { userId: this.userId }
+      })
     },
-    // 重置
-    resetForm (formName) {
-      this.$refs[formName].resetFields()
-      this.editDialogVisible = false
+    addAccount() {
+      this.$router.push({
+        path: '/account/accountAdd'
+      })
     },
     // 获取列表
-    async accountList () {
+    async accountList() {
       try {
         this.loading = true
         const result = await GetAccountList({
@@ -348,7 +267,7 @@ export default {
     },
 
     // 删除接口
-    async del () {
+    async del() {
       const result = await delAccount({
         UserId: this.deleteUserId
       })
@@ -361,15 +280,6 @@ export default {
       } else {
         this.$message.success(result.message)
       }
-    },
-
-    // 账号权限
-    authAccount (item) {
-      this.roleId = item.userId
-      this.$router.push({
-        path: '/account/accountAuth',
-        query: { userId: this.roleId }
-      })
     }
   }
 }
@@ -505,22 +415,14 @@ export default {
           width: 14px;
           height: 14px;
           margin-left: 24px;
-          background: url("../../../assets/status/ic_edit_default.png")
-            no-repeat;
+          background: url('../../../assets/status/ic_edit_default.png') no-repeat;
           background-size: 100% 100%;
           cursor: pointer;
         }
         .loger:hover {
-          background: url("../../../assets/status/ic_edit_hovar.png") no-repeat;
+          background: url('../../../assets/status/ic_edit_hovar.png') no-repeat;
           background-size: 100% 100%;
         }
-        .cap-auth {
-          margin-left: 12px;
-          background-image: url("../../../assets/status/ic_edit_authorization.png");
-          &:hover {
-            background-image: url("../../../assets/status/ic_edit_authorization_hover.png");
-          }
-        }
       }
 
       .content {

+ 1 - 1
src/views/authorityManagement/components/authorityAppAdd.vue

@@ -75,7 +75,7 @@ export default {
   },
   methods: {
     handleRemove (file, fileList) {
-      console.log(file, fileList);
+      // console.log(file, fileList);
     },
     handlePictureCardPreview (file) {
       this.dialogImageUrl = file.url;

+ 38 - 27
src/views/authorityManagement/components/authorityHome.vue

@@ -271,6 +271,7 @@ export default {
       title: "", //弹框title
       flag: false, //弹框开关
       dataId: null, //tree数据id
+      currData:null,
       currDataArr: [],
       currDataArrId: 0,
       childrenData: [],
@@ -321,9 +322,17 @@ export default {
   methods: {
     // 新增
     addAuth () {
-      this.editDialogTitle = '新增下级权限'
-      this.editDialogVisible = true
-      this.editType = 'add'
+      // this.editDialogTitle = '新增下级权限'
+      // this.editDialogVisible = true
+      // this.editType = 'add'
+      this.$router.push({
+          path: "/authority/addPower",
+          query: {
+            AuthId: this.currData.AuthId,
+            Status: this.currData.Status,
+            UpAuthId: this.currData.UpAuthId,
+          },
+        });
     },
     // 重置
     resetForm (formName) {
@@ -335,9 +344,9 @@ export default {
       this.$refs["ruleForm"].validate((valid) => {
         if (valid) {
           if (this.editType == 'add') {
-            console.log('新增')
+            // console.log('新增')
           } else {
-            console.log('编辑')
+            // console.log('编辑')
           }
         } else {
           return false
@@ -347,6 +356,7 @@ export default {
     //树点击
     handleNodeClick (data) {
       const dataNew = _.cloneDeep(data);
+      this.currData = dataNew;
       this.currDataArrId = dataNew.AuthId;
       this.currDataArr = [];
       this.childrenData = [];
@@ -360,6 +370,7 @@ export default {
     //下级卡片点击
     childrenClick (data) {
       const dataNew = _.cloneDeep(data);
+      this.currData = dataNew;
       this.currDataArrId = dataNew.AuthId;
       this.currDataArr = [];
       this.childrenData = [];
@@ -405,28 +416,28 @@ export default {
     },
     // 修改权限
     renderEdit (data) {
-      this.editDialogVisible = true;
-      this.editDialogTitle = '编辑下级权限';
-      this.editType = 'edit';
-      // if (data.Type === 1) {
-      //   this.$router.push({
-      //     path: "/authority/appEdit",
-      //     query: {
-      //       AuthId: data.AuthId,
-      //       Status: data.Status,
-      //       UpAuthId: data.UpAuthId,
-      //     },
-      //   });
-      // } else if (data.Type > 2) {
-      //   this.$router.push({
-      //     path: "/authority/editPower",
-      //     query: {
-      //       AuthId: data.AuthId,
-      //       Status: data.Status,
-      //       UpAuthId: data.UpAuthId,
-      //     },
-      //   });
-      // }
+      // this.editDialogVisible = true;
+      // this.editDialogTitle = '编辑下级权限';
+      // this.editType = 'edit';
+      if (data.Type === 1) {
+        this.$router.push({
+          path: "/authority/appEdit",
+          query: {
+            AuthId: data.AuthId,
+            Status: data.Status,
+            UpAuthId: data.UpAuthId,
+          },
+        });
+      } else if (data.Type > 2) {
+        this.$router.push({
+          path: "/authority/editPower",
+          query: {
+            AuthId: data.AuthId,
+            Status: data.Status,
+            UpAuthId: data.UpAuthId,
+          },
+        });
+      }
     },
     // 权限树
     renderSub (data) {

+ 35 - 13
src/views/baggageManagement/components/arrival/index.vue

@@ -193,7 +193,7 @@
           >
             <template #header>
               <el-tooltip
-                :content="childCol.label"
+                :content="childCol.disc"
                 placement="top"
               >
                 <TableHeaderCell
@@ -277,6 +277,7 @@ export default {
             {
               prop: 'FlightNO',
               label: '航班号',
+              disc:'指航班编号',
               width: 80,
               filterable: true,
               sortable: true
@@ -284,6 +285,7 @@ export default {
             {
               prop: 'FlightDate',
               label: '执飞日期',
+              disc:'指航班计划起飞日期(不变的,机票上),不是预计起飞日期(预计起飞时间可能多个),也不是实际起飞日期(实际起飞等于最后预计)',
               width: 105,
               filterable: true,
               sortable: true
@@ -291,6 +293,7 @@ export default {
             {
               prop: 'arrivalTime',
               label: '到港时间',
+              disc:'指航班预计降落时间,数据是变化的,仅显示最新结果',
               width: 150,
               filterable: true,
               sortable: true
@@ -298,6 +301,7 @@ export default {
             {
               prop: 'departureTerminal',
               label: '起飞航站',
+              disc:'指航班执飞航段的起飞航站,以航站三字码显示',
               width: 85,
               filterable: true,
               sortable: true
@@ -305,6 +309,7 @@ export default {
             {
               prop: 'arrivalTerminal',
               label: '到达航站楼',
+              disc:'指航班执飞航段的目的航站的航站楼代码',
               width: 100,
               filterable: true,
               sortable: true
@@ -312,6 +317,7 @@ export default {
             {
               prop: 'luggageCarousel',
               label: '行李转盘',
+              disc:'指航班进港,旅客提取行李转盘的代码',
               width: 85,
               filterable: true,
               sortable: true
@@ -319,6 +325,7 @@ export default {
             {
               prop: 'parkingSpace',
               label: '停机位',
+              disc:'指航班的停机位代码,数据是变化的,仅显示最新信息',
               filterable: true,
               sortable: true
             }
@@ -330,15 +337,18 @@ export default {
           children: [
             {
               prop: 'checkIns',
-              label: '值机'
+              label: '值机',
+              disc:'指已办理值机托运的行李数量,含取消托运的行李数量,含未激活',
             },
             {
               prop: 'projectedLoad',
-              label: '预计装载'
+              label: '预计装载',
+              disc:'指已办理值机托运的行李数量,不含取消托运的行李数量,不包含未激活',
             },
             {
               prop: 'loadedQuantity',
-              label: '已装载'
+              label: '已装载',
+              disc:'指实际装机完成的行李数量,不包含取消托运的行李数量',
             }
           ]
         },
@@ -348,20 +358,24 @@ export default {
           children: [
             {
               prop: 'numberOfDestinationArrivals',
-              label: '到达'
+              label: '到达',
+              disc:'指行李到达提取转盘的行李数量,数据是变化的,仅显示最新信息',
             },
             {
               prop: 'endPointNotReached',
-              label: '未到达'
+              label: '未到达',
+              disc:'指行李仍未到达提取转盘的行李数量,数据是变化的,仅显示最新信息',
             },
             {
               prop: 'specialQuantity',
               label: '特殊',
+              disc:'指非正常行李的数量,包括(装笼动物、乘务员行李、易碎行李、VIP 行李等),参考 BSM 报文.E 项',
               width: 65
             },
             {
               prop: 'numberOfClaims',
               label: '理赔',
+              disc:'指航班收到旅客申请理赔的行李数量',
               width: 65
             }
           ]
@@ -372,11 +386,13 @@ export default {
           children: [
             {
               prop: 'uninstalled',
-              label: '已卸载'
+              label: '已卸载',
+              disc:'指卸机的行李数量,数据是变化的,仅显示最新信息',
             },
             {
               prop: 'numberToBeUninstalled',
-              label: '待卸载'
+              label: '待卸载',
+              disc:'指仍未卸机的行李数量,数据是变化的,仅显示最新信息',
             }
           ]
         },
@@ -386,11 +402,13 @@ export default {
           children: [
             {
               prop: 'terminateArrivalQuantity',
-              label: '到达'
+              label: '到达',
+              disc:'指旅客已到达目的站的行李数量,数据是变化的,仅显示最新信息',
             },
             {
               prop: 'terminateUnreachedQuantity',
-              label: '未到达'
+              label: '未到达',
+              disc:'指未到达目的站的行李数量,数据是变化的,仅显示最新信息',
             }
           ]
         },
@@ -400,11 +418,13 @@ export default {
           children: [
             {
               prop: 'quantityShipped',
-              label: '已交运'
+              label: '已交运',
+              disc:'指当前航班中转出的行李已完成交运的行李数量,数据是变化的,仅显示最新信息',
             },
             {
               prop: 'undeliveredQuantity',
-              label: '未交运'
+              label: '未交运',
+              disc:'指当前航班中转出的行李未完成交运的行李数量,数据是变化的,仅显示最新信息',
             }
           ]
         },
@@ -414,11 +434,13 @@ export default {
           children: [
             {
               prop: 'numberOfContainers',
-              label: '容器'
+              label: '容器',
+              disc:'指当前航班使用容器装载的行李数量,数据是变化的,仅显示最新信息',
             },
             {
               prop: 'numberOfBulk',
               label: '散装',
+              disc:'指当前航班没有使用容器装载的行李数量,数据是变化的,仅显示最新信息',
               width: 65
             }
           ]

+ 2 - 2
src/views/baggageManagement/components/baggage/index copy.vue

@@ -418,14 +418,14 @@ export default {
         return h('span', {
           attrs: {},
           domProps: {
-            innerHTML: '<span>' + arr[0] + '</span><br>' + arr[1]
+            // innerHTML: '<span>' + arr[0] + '</span><br>' + arr[1]
           }
         })
       } else {
         return h('span', {
           attrs: {},
           domProps: {
-            innerHTML: '<span>' + arr[0] + '</span>'
+            // innerHTML: '<span>' + arr[0] + '</span>'
           }
         })
       }

+ 38 - 16
src/views/baggageManagement/components/departure/index.vue

@@ -187,7 +187,7 @@
         >
           <template #header>
             <el-tooltip
-              :content="col.label"
+              :content="col.disc"
               placement="top"
             >
               <TableHeaderCell
@@ -265,6 +265,7 @@ export default {
         {
           prop: 'FlightNO',
           label: '航班号',
+          disc:'指航班编号',
           width: 80,
           fixed: 'left',
           filterable: true,
@@ -273,6 +274,7 @@ export default {
         {
           prop: 'FlightDate',
           label: '执飞日期',
+          disc:'指航班计划起飞日期(不变的,机票上),不是预计起飞日期(预计起飞时间可能多个),也不是实际起飞日期(实际起飞等于最后预计)',
           width: 105,
           fixed: 'left',
           filterable: true,
@@ -281,6 +283,7 @@ export default {
         {
           prop: 'PlanDepartureTime',
           label: '预计起飞时间',
+          disc:'指航班预计起飞时间,数据是变化的,仅显示最新结果',
           width: 150,
           filterable: true,
           sortable: true
@@ -288,86 +291,105 @@ export default {
         {
           prop: 'TargetAirport',
           label: '目的站',
+          disc:'指航班执飞航段的目的航站,以航站三字码显示',
           filterable: true,
           sortable: true
         },
         {
           prop: 'DepartureBuild',
           label: '航站楼',
+          disc:'指航班执飞航段的目的航站楼',
           filterable: true,
           sortable: true
         },
         {
           prop: 'BordingGate',
           label: '登机口',
+          disc:'指航班的登机口代码,数据是变化的,仅显示最新信息',
           filterable: true,
           sortable: true
         },
         {
           prop: 'StandForDepartrue',
           label: '停机位',
+          disc:'指航班的停机位代码,数据是变化的,仅显示最新信息',
           filterable: true,
           sortable: true
         },
         {
           prop: 'checkInTravellerNumber',
-          label: '托运旅客'
+          label: '托运旅客',
+          disc:'指航班已办理行李托运业务的旅客人数,含取消托运的旅客人数',
         },
         {
           prop: 'checkInNumber',
-          label: '值机数'
+          label: '值机数',
+          disc:'指已办理值机托运的行李数量,含取消托运的行李数量,含未激活',
         },
         {
           prop: 'unActive',
-          label: '未激活'
+          label: '未激活',
+          disc:'指最后的 BSM 报文“.S”中行李状态为“I”的行李数量,含取消托运的行李数量',
         },
         {
           prop: 'preLoad',
-          label: '预计装载'
+          label: '预计装载',
+          disc:'指已办理值机托运的行李数量,不含取消托运的行李数量,不包含未激活',
         },
         {
           prop: 'checkNumber',
-          label: '安检'
+          label: '安检',
+          disc:'指进行安检的行李数量,含取消托运的行李数量',
         },
         {
           prop: 'sortNumber',
-          label: '分拣'
+          label: '分拣',
+          disc:'指已分拣完成的行李数量,含取消托运的行李数量',
         },
         {
           prop: 'loadNumber',
-          label: '装车'
+          label: '装车',
+          disc:'指已在分拣口装车完成的行李数量,含取消托运的行李数量',
         },
         {
           prop: 'landingNumber',
-          label: '装机'
+          label: '装机',
+          disc:'指装机完成的行李数量,不含取消托运的行李数量',
         },
         {
           prop: 'tounLoad',
-          label: '待翻减'
+          label: '待翻减',
+          disc:'指旅客在办理行李托运后,旅客取消该行李的托运并且行李此时已经过装车节点,而没有完成翻减的行李数量(须翻减总数减去已翻减数)',
         },
         {
           prop: 'unLoad',
-          label: '已翻减'
+          label: '已翻减',
+          disc:'指旅客在办理行李托运后,旅客取消该行李的托运并且行李此时已经过装车节点,且已完成翻减的行李数量',
         },
         {
           prop: 'noCheckInNumber',
-          label: '取消托运'
+          label: '取消托运',
+          disc:'指旅客在办理行李托运后,又取消托运的行李总数量',
         },
         {
           prop: 'noBSM',
-          label: '无BSM'
+          label: '无BSM',
+          disc:'行李有处理信息(BPM)但无值机信息(BSM)的行李数量',
         },
         {
           prop: 'riskWarning',
-          label: '风险预警'
+          label: '风险预警',
+          disc:'指依据航班信息中预计起飞时间和当前时间差,与根据分拣到停机位设置的报警阈值对比,超过阈值的为风险行李,本项显示风险预警行李数量',
         },
         {
           prop: 'departureAnomaly',
-          label: '离港异常'
+          label: '离港异常',
+          disc:'指航班关闭货仓门后,应装而未装的行李数量',
         },
         {
           prop: 'midIn',
-          label: '中转进行李'
+          label: '中转进行李',
+          disc:'指从其他航班中转到当前航班的行李数量',
         }
       ],
       tableDataSortRules: {

+ 23 - 3
src/views/baggageManagement/components/transferArrival/index.vue

@@ -230,7 +230,7 @@
           >
             <template #header>
               <el-tooltip
-                :content="childCol.label"
+                :content="childCol.disc"
                 placement="top"
               >
                 <TableHeaderCell
@@ -323,6 +323,7 @@ export default {
             {
               prop: 'PreFlightNO',
               label: '航班号',
+              disc:'进港航班编号',
               width: 80,
               filterable: true,
               sortable: true
@@ -330,11 +331,13 @@ export default {
             {
               prop: 'PreFlightDate',
               label: '航班日期',
+              disc:'指航班计划起飞日期(不变的,机票上),不是预计起飞日期(预计起飞时间可能多个),也不是实际起飞日期(实际起飞等于最后预计)',
               width: 100
             },
             {
               prop: 'PreAirport',
               label: '起飞航站',
+              disc:'指进港航班的起飞机场三字码',
               width: 100,
               filterable: true,
               sortable: true
@@ -342,11 +345,13 @@ export default {
             {
               prop: 'ActualLandingTime',
               label: '降落时间',
+              disc:'指航班预计到达时间,数据是变化的,仅显示最新结果',
               width: 100
             },
             {
               prop: 'LandingBuild',
               label: '降落航站楼',
+              disc:'指航班降落后位于机场的哪个航站楼',
               width: 98,
               filterable: true,
               sortable: true
@@ -354,6 +359,7 @@ export default {
             {
               prop: 'Carousel',
               label: '行李转盘',
+              disc:'指航班到达后行李提取的地方,仅显示最新信息',
               width: 100,
               filterable: true,
               sortable: true
@@ -361,17 +367,21 @@ export default {
             {
               prop: 'StandForLanding',
               label: '降落停机位',
+              disc:'指航班的停机位代码,数据是变化的,仅显示最新信息',
               width: 98,
               filterable: true,
               sortable: true
             },
             {
               prop: 'inTransferBaggageCount',
-              label: '中转行李数'
+              label: '中转行李数',
+              disc:'指航班在本航站预计需要中转至对应航班的行李数量',
+
             },
             {
               prop: 'inTransferredBaggageCount',
               label: '已中转行李数',
+              disc:'指航班在本航站实际已经中转至对应航班的行李数量',
               width: 100
             }
           ]
@@ -383,6 +393,7 @@ export default {
             {
               prop: 'FlightNO',
               label: '航班号',
+              disc:'指航班编号',
               width: 80,
               filterable: true,
               sortable: true
@@ -390,22 +401,26 @@ export default {
             {
               prop: 'FlightDate',
               label: '航班日期',
+              disc:'指航班计划起飞日期(不变的,机票上),不是预计起飞日期(预计起飞时间可能多个),也不是实际起飞日期(实际起飞等于最后预计)',
               width: 100
             },
             {
               prop: 'ActualDepartureTime',
               label: '起飞时间',
+              disc:'指航班预计起飞时间,数据是变化的,仅显示最新结果',
               width: 100
             },
             {
               prop: 'TargetAirport',
               label: '目的站',
+              disc:'指航班执飞航段的目的航站,以航站三字码+航站简称显示',
               filterable: true,
               sortable: true
             },
             {
               prop: 'DepartureBuild',
               label: '起飞航站楼',
+              disc:'指航班执飞航段的起飞航站的航站楼',
               width: 98,
               filterable: true,
               sortable: true
@@ -413,6 +428,7 @@ export default {
             {
               prop: 'BordingGate',
               label: '起飞登机口',
+              disc:'指航班的登机口代码,数据是变化的,仅显示最新信息',
               width: 98,
               filterable: true,
               sortable: true
@@ -420,6 +436,7 @@ export default {
             {
               prop: 'StandForDepartrue',
               label: '起飞停机位',
+              disc:'指航班的停机位代码,数据是变化的,仅显示最新信息',
               width: 98,
               filterable: true,
               sortable: true
@@ -427,16 +444,19 @@ export default {
             {
               prop: 'outTransferBaggageCount',
               label: '中转进行李数',
+              disc:'指其它航班预计中转至本航班的行李数量',
               width: 100
             },
             {
               prop: 'outTransferredBaggageCount',
               label: '已中转进行李数',
+              disc:'指其它航班实际已中转至本航班的行李数量',
               width: 120
             },
             {
               prop: 'timeDifference',
-              label: '转运时间'
+              label: '转运时间',
+              disc:'指中转动作完成时间',
             }
           ]
         }

+ 3 - 3
src/views/dataIntegration/views/interfaceLog.vue

@@ -85,9 +85,9 @@ export default {
   },
   mounted () {
     document.querySelector('.interfaceLog_head_time_start .el-input__prefix i').remove()
-    document.querySelector('.interfaceLog_head_time_start .el-input__prefix').innerHTML = '开始:'
+    // document.querySelector('.interfaceLog_head_time_start .el-input__prefix').innerHTML = '开始:'
     document.querySelector('.interfaceLog_head_time_end .el-input__prefix i').remove()
-    document.querySelector('.interfaceLog_head_time_end .el-input__prefix').innerHTML = '结束:'
+    // document.querySelector('.interfaceLog_head_time_end .el-input__prefix').innerHTML = '结束:'
   },
   methods: {
     getSearchData (val) {
@@ -205,4 +205,4 @@ export default {
     }
   }
 }
-</style>
+</style>

+ 1 - 0
src/views/login/index.vue

@@ -78,6 +78,7 @@ export default {
   components: { Identify, Dialog },
   data () {
     return {
+      text:`<a onclick='("XSS")'>链接</a>`,
       type: 1,
       flag: false,
       PwdMessage: null,

+ 1 - 1
vue.config.js

@@ -101,7 +101,7 @@ module.exports = {
         .use('script-ext-html-webpack-plugin', [
           {
             // `runtime` must same as runtimeChunk name. default is `runtime`
-            inline: /runtime\..*\.js$/
+            sync: /runtime\..*\.js$/
           }
         ])
         .end()