linwenxin 8 ヶ月 前
コミット
aefd8652b1

+ 7 - 14
src/packageMine/pages/repairSettle/detail.vue

@@ -135,14 +135,11 @@ export default {
     this.summaryBatchNo = summaryBatchNo
     this.type = type
     this.id = id
-    // const { websit_number, number } = this.$store.state.userInfo.websit_worker
-    // this.websitNumber = websit_number
-    // this.workerNumber = number
     this.getDetail()
   },
 
   methods: {
-    getDetail() {
+    async getDetail() {
       let url = ''
       if (this.type == 1) {
         url = '/daily/mywallet/repair/detail'
@@ -151,16 +148,12 @@ export default {
       } else {
         url = '/daily/mywallet/not/issue/list'
       }
-      this.$axios({
-        url,
-        method: 'get',
-        params: {
-          // workerNumber: this.workerNumber,
-          salaryNo: this.salaryNo || '',
-          summaryBatchNo: this.summaryBatchNo || '',
-          id: this.id || ''
-        },
-        isLoading: 1
+
+      this.$api.get(url,{
+        workerNumber: await getUserInfo().workerNumber,
+        salaryNo: this.salaryNo || '',
+        summaryBatchNo: this.summaryBatchNo || '',
+        id: this.id || ''
       }).then(res => {
         this.detailData = res.data[0]
       })

+ 9 - 16
src/packageMine/pages/repairSettle/detailed.vue

@@ -51,6 +51,9 @@
 </template>
 
 <script>
+import {
+  getUserInfo,
+} from '@/common/utils/util'
 export default {
   data() {
     return {
@@ -67,26 +70,22 @@ export default {
     this.getList()
   },
 
-  onLoad({ salaryNo, summaryBatchNo, type }) {
+  async onLoad({ salaryNo, summaryBatchNo, type }) {
     this.salaryNo = salaryNo
     this.summaryBatchNo = summaryBatchNo
     this.type = type
-
-    // const { websit_number, number } = this.$store.state.userInfo.websit_worker
-    // this.websitNumber = websit_number
-    // this.workerNumber = number
     this.getList()
   },
 
   methods: {
     // 获取列表
-    getList() {
+    async getList() {
       let url = ''
       let params = {}
       if (this.type == 1) {
         url = '/daily/mywallet/repair/detail'
         params = {
-          // workerNumber: this.workerNumber,
+          workerNumber: await getUserInfo().workerNumber,
           salaryNo: this.salaryNo || '',
           summaryBatchNo: this.summaryBatchNo || '',
           q: this.keyword
@@ -94,7 +93,7 @@ export default {
       } else if (this.type == 2) {
         url = '/daily/mywallet/repair/month/detail'
         params = {
-          // workerNumber: this.workerNumber,
+          workerNumber: await getUserInfo().workerNumber,
           salaryNo: this.salaryNo || '',
           summaryBatchNo: this.summaryBatchNo || '',
           q: this.keyword
@@ -102,20 +101,14 @@ export default {
       } else {
         url = '/daily/mywallet/not/issue/list'
         params = {
-          // workerNumber: this.workerNumber,
+          workerNumber: await getUserInfo().workerNumber,
           salaryNo: this.salaryNo || '',
           summaryBatchNo: this.summaryBatchNo || '',
           q: this.keyword,
           install: false
         }
       }
-
-      this.$axios({
-        url,
-        method: 'get',
-        params,
-        isLoading: 1
-      })
+      this.$api.get(url,params)
         .then(res => {
           this.dataList = res.data
         })

+ 9 - 14
src/packageMine/pages/repairSettle/list.vue

@@ -145,6 +145,9 @@
 </template>
 
 <script>
+import {
+  getUserInfo,
+} from '@/common/utils/util'
 export default {
   data() {
     return {
@@ -160,25 +163,17 @@ export default {
     this.getList()
   },
 
-  onLoad() {
-    // const { websit_number, number } = this.$store.state.userInfo.websit_worker
-    // this.websitNumber = websit_number
-    // this.workerNumber = number
+  async onLoad() {
     this.getList()
   },
 
   methods: {
     // 获取列表
-    getList() {
-      this.$axios({
-        url: this.currentTab === 1 ? '/daily/mywallet/issue/list' : '/daily/mywallet/issue/monthlist',
-        method: 'get',
-        params: {
-          // workerNumber: this.workerNumber,
-          date: this.currentDate == '请选择日期' ? '' : this.currentDate,
-          install: false
-        },
-        isLoading: 1
+    async getList() {
+      this.$api.get(this.currentTab === 1 ? '/daily/mywallet/issue/list' : '/daily/mywallet/issue/monthlist',{
+        workerNumber: await getUserInfo().workerNumber,
+        date: this.currentDate == '请选择日期' ? '' : this.currentDate,
+        install: false
       })
         .then(res => {
           this.dataList = res.data