diff --git a/src/views/inventory/consumables/index.vue b/src/views/inventory/consumables/index.vue
index 83cfd3d..73176b2 100644
--- a/src/views/inventory/consumables/index.vue
+++ b/src/views/inventory/consumables/index.vue
@@ -123,7 +123,13 @@ function toGoods(id: number | string) {
//统计数据
const gongjiData = reactive({ totalRow: 0 });
function getTongji(params: IObject | undefined) {
- consApi.statistics(params).then((res) => {
+ const query = { ...params };
+ if (params?.createAt) {
+ query.beginTime = params.createAt[0];
+ query.endTime = params.createAt[1];
+ delete query.createAt;
+ }
+ consApi.statistics(query).then((res) => {
Object.assign(gongjiData, res);
});
}
diff --git a/src/views/shop/list/components/activateCode.vue b/src/views/shop/list/components/activateCode.vue
new file mode 100644
index 0000000..7b77d78
--- /dev/null
+++ b/src/views/shop/list/components/activateCode.vue
@@ -0,0 +1,60 @@
+
+
+
+
+
+ 注:输入有效激活码表示添加的同时直接激活该店铺。
+
+
+
+ 取消
+ 确定
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/shop/list/index.vue b/src/views/shop/list/index.vue
index fe6c761..a084d3d 100644
--- a/src/views/shop/list/index.vue
+++ b/src/views/shop/list/index.vue
@@ -103,12 +103,16 @@
-
+
编辑
+
+
+ 激活
+
更多
@@ -143,16 +147,22 @@
+
+