Selaa lähdekoodia

高级查询修改

zhaoke 1 vuosi sitten
vanhempi
commit
0ed08e1742
3 muutettua tiedostoa jossa 60 lisäystä ja 15 poistoa
  1. 6 6
      public/staticConfig.js
  2. 53 7
      src/components/AdvancedQuery/index.vue
  3. 1 2
      src/views/table/index.vue

+ 6 - 6
public/staticConfig.js

@@ -51,10 +51,10 @@ switch (baseNewUrl) {
   case 'localhost':
     PLATFROM_CONFIG = {
       ...PLATFROM_CONFIG,
-      baseNewUrl: 'http://192.168.3.79:9500',
-      baseURLCA: 'http://192.168.3.79:9500',
-      fileUrl: 'http://192.168.3.79:9500',
-      expressUrl: 'http://192.168.3.79:9500',
+      baseNewUrl: 'http://120.26.64.82:9500',
+      baseURLCA: 'http://120.26.64.82:9500',
+      fileUrl: 'http://120.26.64.82:9500',
+      expressUrl: 'http://120.26.64.82:9500',
       tempUrl: 'http://10.211.67.163:16300', // 1.0临时地址
       tempToken: 'bb1bcfcb336b40e9b8602e808b053c3b', // 1.0临时token
       tempUserId: '1656481036109',
@@ -65,8 +65,8 @@ switch (baseNewUrl) {
   default:
     PLATFROM_CONFIG = {
       ...PLATFROM_CONFIG,
-      baseNewUrl: 'http://192.168.3.79:9500',
-      baseURLCA: 'http://192.168.3.79:9500',
+      baseNewUrl: 'http://120.26.64.82:9500',
+      baseURLCA: 'http://120.26.64.82:9500',
     }
     break
 }

+ 53 - 7
src/components/AdvancedQuery/index.vue

@@ -68,9 +68,9 @@
       <el-scrollbar style="height: 100%" :horizontal="false">
         <div v-for="(item,index) in catchOptions" :key="index">
           <div style="cursor: pointer;" class="flex">
-            <span class="AdvancedQuery_list_text">{{ item.itemKey }}</span>
-            <el-popconfirm :title="'确定删除'+item.itemKey+'吗?'">
-              <span slot="reference" class="el-icon-error"></span>
+            <span @click="queryRecover(item)" class="AdvancedQuery_list_text">{{ item.itemKey }}</span>
+            <el-popconfirm @confirm="queryConfirm(item,index)" :title="'确定删除'+item.itemKey+'吗?'">
+              <el-button slot="reference" type="text">删除</el-button>
             </el-popconfirm>
           </div>
           <el-divider v-if="catchOptions.length != index+1"></el-divider>
@@ -133,7 +133,7 @@ export default {
     return {
       queryContent: [],
       catchOptions: JSON.parse(localStorage.getItem('catchOptions')) || [],
-      catchOptionsAll: [],
+      catchOptionsAll: [JSON.parse(localStorage.getItem('catchOptions'))] || [],
       flightDate: new Array(2).fill(parseTime(new Date(), '{y}-{m}-{d}')),
       paramsForm: {
         params: [],
@@ -210,7 +210,6 @@ export default {
   methods: {
     queryHandler () {
       const colDatas = this.authMsg
-      console.log(colDatas)
       if (colDatas?.length) {
         const columns = colDatas.filter(item => item.isdisplay != 0)
         const datas = _.orderBy(columns, ['displaynumber'], ['asc', 'desc'])
@@ -376,18 +375,65 @@ export default {
       }).then(({ value }) => {
         this.catchOptionsAll.push(this.queryContent)
         const catchItem = {
+          itemId: this.catchOptionsAll.length,
           itemKey: value,
           itemVal: this.catchOptionsAll?.at(-1)
         }
         this.catchOptions.push(catchItem)
         localStorage.setItem('catchOptions', JSON.stringify(this.catchOptions))
-      }).catch((err) => {
-        console.log(err)
+      }).catch(() => {
         this.$message({
           type: 'info',
           message: '取消输入'
         });
       });
+    },
+    //删除收藏
+    queryConfirm (item, index) {
+      const catchCopy = this.catchOptions
+      catchCopy.splice(index, 1)
+      this.catchOptionsAll = []
+      this.catchOptionsAll = [catchCopy]
+      localStorage.setItem('catchOptions', JSON.stringify(catchCopy))
+    },
+    //收藏查询
+    queryRecover (item) {
+      const { itemVal } = item
+      this.queryRecoverFunc(itemVal)
+    },
+    //查询恢复
+    queryRecoverFunc (itemArray) {
+      if (!itemArray.length) return
+      const [datas, types] = [[], []]
+      itemArray.forEach(item => {
+        if (isNaN(item.value) && !isNaN(Date.parse(item.value))) {
+          types.push('date')
+        } else {
+          types.push('text')
+        }
+        const paramValue = ['is Null', 'is not Null'].includes(
+          item.comparisonOperator
+        )
+          ? ' '
+          : item.value
+        const obj = {
+          // leftBrackets: item.left,
+          paramKey: item.column,
+          comparisonOperator: item.comparator,
+          // rightBrackets: item.right,
+          paramValue,
+          connector: item.connector,
+        }
+        datas.push(obj)
+      })
+      this.queryHandler()
+      setTimeout(() => {
+        this.paramsTableCols[1].options = new Array(itemArray.length).fill(
+          comparisonOperatorOptions.slice(0, 5).reverse()
+        )
+        this.paramsTableCols[2].inputType = types
+        this.paramsForm.params = datas
+      }, 200)
     }
   }
 }

+ 1 - 2
src/views/table/index.vue

@@ -429,7 +429,6 @@ export default {
       // this.tableOptions = arrbegin;
     },
     load () {
-      //
       if (!this.isTree) {
         if (this.noMore || this.loading) {
           return;
@@ -1012,7 +1011,7 @@ export default {
       this.$refs[refName].advancedQueryHandler()
     },
     getAdvancedQueryData (dataRules) {
-      this.selectOptions.push(dataRules)
+      console.log(dataRules)
     },
     //收藏
     queryCollect (refName) {