|
@@ -71,10 +71,7 @@ export default {
|
|
|
...room(['query', 'delete', 'update', 'fetch']),
|
|
|
...roomuser({ roomuserquery: 'query' }),
|
|
|
async search({ skip = 0, limit = 10, ...info } = {}) {
|
|
|
- console.log();
|
|
|
-
|
|
|
let res = await this.query({ skip, limit, ...info });
|
|
|
- console.log(res.data);
|
|
|
this.$set(this, `list`, res.data);
|
|
|
this.$set(this, `total`, res.total);
|
|
|
},
|
|
@@ -89,6 +86,7 @@ export default {
|
|
|
let { model, value } = data;
|
|
|
let res = '';
|
|
|
if (model === 'anchorid') {
|
|
|
+ console.log(value);
|
|
|
let findRes = this.clientList.find(f => f.id === value);
|
|
|
if (findRes) res = findRes.name;
|
|
|
}
|