|
@@ -60,9 +60,9 @@ export default {
|
|
|
...tranaudit({ tranauditList: 'query', tranauditListupdate: 'update' }),
|
|
|
...transactions({ transactionsfetch: 'fetch', transactionslist: 'query', transactiondetele: 'detele', transactionupdate: 'update' }),
|
|
|
...dock({ dockQuery: 'query', dockFetch: 'fetch' }),
|
|
|
- async search() {
|
|
|
+ async search({ skip = 0, limit = 10, ...info } = {}) {
|
|
|
const res = await this.dockFetch(this.user.uid);
|
|
|
- const arr = await this.transactionslist({ skip, dockid: res.data.id, limit, ...info });
|
|
|
+ const arr = await this.transactionslist({ skip, dockid: res.data.id, limit, status: '4', ...info });
|
|
|
this.$set(this, `recruitInfo`, arr.data);
|
|
|
this.$set(this, `total`, arr.total);
|
|
|
},
|