zhongtianhaoyuan 4 سال پیش
والد
کامیت
a4f2f5b111
2فایلهای تغییر یافته به همراه3 افزوده شده و 30 حذف شده
  1. 2 1
      src/views/taskManagement/component/routers/route.js
  2. 1 29
      src/views/taskManagement/tranManagementTransport.vue

+ 2 - 1
src/views/taskManagement/component/routers/route.js

@@ -85,7 +85,8 @@ const tranManagementRouter = {
         title: 'moveWarehouseTask',
         shortcutEntrance: 'tranManagement',
         module: 'tranManagement.tranManagementDriver.moveWarehouseTask',
-      }
+      },
+      hidden: true,
     },
     //移库查看
     {

+ 1 - 29
src/views/taskManagement/tranManagementTransport.vue

@@ -438,39 +438,11 @@ export default {
     handleCloe() {
       this.dialogViewSpareMoney = false
     },
-    history(row) {
-      billoperatehis({ id: row.id })
-        .toPromise()
-        .then(response => {
-          this.historyList = response
-        })
-    },
+
     find() {
       this.currentPage = 1
       this.getList()
     },
-    async exportlist() {
-      const { data } = await export1(
-        {
-          compId: sessionStorage.getItem('ws-pf_compId'),
-          contractType: this.contractType,
-          currentPage: this.currentPage,
-          pageSize: this.pageSize,
-          searchType: this.searchType,
-          searchKeyWord: this.searchKeyWord,
-          startDate: this.startDate,
-          endDate: this.endDate
-        },
-        {},
-        { responseType: 'blob' }
-      ).toPromise()
-      downloadFile({
-        res: data,
-        fileName: `${this.date.year +
-          (this.date.month ? `-${this.date.month}` : '')}_采购合同`,
-        type: 'xls'
-      })
-    }
   }
 }
 </script>