diff --git a/src/views/shop/collect/index.vue b/src/views/shop/collect/index.vue index 6ef6c7e..4af75ef 100644 --- a/src/views/shop/collect/index.vue +++ b/src/views/shop/collect/index.vue @@ -85,7 +85,7 @@ import pagination from '@crud/Pagination' import MaterialList from "@/components/material"; // crud交由presenter持有 -const defaultCrud = CRUD({ title: 'ProductRelation', url: 'api/yxStoreProductRelation', type:'collect',sort: 'creat_time,desc', crudMethod: { ...crudYxStoreProductRelation }}) +const defaultCrud = CRUD({ title: 'ProductRelation', url: 'api/yxStoreProductRelation', sort: 'creat_time,desc', crudMethod: { ...crudYxStoreProductRelation }}) const defaultForm = { id: null, uid: null, productId: null, type: null, category: null, createTime: null, updateTime: null, isDel: null } export default { name: 'YxStoreProductRelation', @@ -93,7 +93,9 @@ export default { mixins: [presenter(defaultCrud), header(), form(defaultForm), crud()], data() { return { - + query: { + type: 'collect', + }, permission: { add: ['admin', 'yxStoreProductRelation:add'], edit: ['admin', 'yxStoreProductRelation:edit'], @@ -116,6 +118,8 @@ export default { methods: { // 获取数据前设置好接口地址 [CRUD.HOOK.beforeRefresh]() { + const query = this.query + this.crud.params[query.type] = 'collect' return true }, // 新增与编辑前做的操作 [CRUD.HOOK.afterToCU](crud, form) { diff --git a/src/views/shop/foot/index.vue b/src/views/shop/foot/index.vue index 10228bd..2284df9 100644 --- a/src/views/shop/foot/index.vue +++ b/src/views/shop/foot/index.vue @@ -93,7 +93,9 @@ export default { mixins: [presenter(defaultCrud), header(), form(defaultForm), crud()], data() { return { - + query:{ + type: 'foot', + }, permission: { add: ['admin', 'yxStoreProductRelation:add'], edit: ['admin', 'yxStoreProductRelation:edit'], @@ -116,6 +118,8 @@ export default { methods: { // 获取数据前设置好接口地址 [CRUD.HOOK.beforeRefresh]() { + const query = this.query + this.crud.params[query.type] = 'foot' return true }, // 新增与编辑前做的操作 [CRUD.HOOK.afterToCU](crud, form) {