|
@@ -54,7 +54,7 @@ export default {
|
|
|
methods: {
|
|
|
...transactions({ transactionsfetch: 'fetch', transactionslist: 'query', transactiondetele: 'detele', transactionupdate: 'update' }),
|
|
|
...dock({ dockQuery: 'query', dockFetch: 'fetch' }),
|
|
|
- async searchInfo() {
|
|
|
+ async searchInfo({ skip = 0, limit = 10, ...info } = {}) {
|
|
|
let res = await this.dockFetch(this.user.uid);
|
|
|
this.$set(this, `dock_id`, res.data.id);
|
|
|
let arr = await this.transactionslist({ skip, limit, dockid: this.dock_id, ...info });
|