|
@@ -84,7 +84,7 @@
|
|
|
top="10vh" class="group-dialog"
|
|
|
> -->
|
|
|
<el-dialog title="分组管理" :visible.sync="commidyVisible" width="900px" center top="10vh" :close-on-click-modal="false">
|
|
|
- <CommGroup :type="type" :group-options="tableData" :group-id="shopGroupId" @cancel="commidyVisible = false" @reload="search" />
|
|
|
+ <CommGroup :type="type" :group-options="tableData" :group-id="shopGroupId" @getAllData="getAll" @cancel="commidyVisible = false" @reload="search" />
|
|
|
</el-dialog>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -245,7 +245,12 @@ export default {
|
|
|
},
|
|
|
// 初始化查询所有数据
|
|
|
async getAll(formInline) {
|
|
|
- const res = await commodityListGetAll(formInline)
|
|
|
+ let res
|
|
|
+ if (formInline) {
|
|
|
+ res = await commodityListGetAll(formInline)
|
|
|
+ } else {
|
|
|
+ res = await commodityListGetAll(this.formInline)
|
|
|
+ }
|
|
|
this.total = res.data.total
|
|
|
this.tableData = res.data.list
|
|
|
},
|