添加注释,删除无用代码

This commit is contained in:
mabo
2021-05-13 18:09:36 +08:00
parent 967e673647
commit a2752a731d
122 changed files with 868 additions and 1185 deletions

View File

@@ -36,14 +36,14 @@ import { getShopListData } from "@/api/shops.js";
export default {
data() {
return {
loading: false,
total: "",
params: {
loading: false, // 加载状态
total: "", // 总数
params: { // 请求参数
pageNumber: 1,
pageSize: 10,
storeName: "",
},
shopsData: [],
shopsData: [], // 店铺数据
selected: 9999999999, //设置一个不可能选中的index
};
},