|
@@ -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
|
|
|
})
|