|
|
|
|
@ -333,6 +333,7 @@ export default {
|
|
|
|
|
try {
|
|
|
|
|
let res = await index(this.select, false);
|
|
|
|
|
this.total = res.total ?? 0;
|
|
|
|
|
this.list = [];
|
|
|
|
|
this.list = res.data.map((item) => {
|
|
|
|
|
return item.fileds_all ? { ...item, ...item.fileds_all } : item;
|
|
|
|
|
});
|
|
|
|
|
@ -385,6 +386,8 @@ export default {
|
|
|
|
|
|
|
|
|
|
async search() {
|
|
|
|
|
//await this.getTemplate();
|
|
|
|
|
this.select.page = 1;
|
|
|
|
|
this.total = 0;
|
|
|
|
|
await this.getTemplateItemDetail();
|
|
|
|
|
await this.getList();
|
|
|
|
|
},
|
|
|
|
|
|