diff --git a/resources/frontend/src/views/goods/combination.vue b/resources/frontend/src/views/goods/combination.vue
index 5f09a89..61ad12b 100644
--- a/resources/frontend/src/views/goods/combination.vue
+++ b/resources/frontend/src/views/goods/combination.vue
@@ -4,11 +4,11 @@
商品名称:
-
+
商品编码:
-
+
创建时间:
@@ -21,11 +21,12 @@
format="yyyy-MM-dd"
value-format="yyyy-MM-dd"
clearable
- style="width: 250px;">
+ style="width: 250px;"
+ @change="handleChoose()">
- 筛选
+ 筛选
diff --git a/resources/frontend/src/views/goods/goods.vue b/resources/frontend/src/views/goods/goods.vue
index fd78913..380f406 100644
--- a/resources/frontend/src/views/goods/goods.vue
+++ b/resources/frontend/src/views/goods/goods.vue
@@ -5,7 +5,7 @@
商品名称:
-
+
商品品种/品类:
@@ -22,11 +22,11 @@
商品编码:
-
+
商品状态:
-
+
@@ -42,7 +42,8 @@
format="yyyy-MM-dd"
value-format="yyyy-MM-dd"
clearable
- style="width: 250px;">
+ style="width: 250px;"
+ @change="handleChoose()">
diff --git a/resources/frontend/src/views/logs/logs.vue b/resources/frontend/src/views/logs/logs.vue
index 3a04896..89deafe 100644
--- a/resources/frontend/src/views/logs/logs.vue
+++ b/resources/frontend/src/views/logs/logs.vue
@@ -4,42 +4,42 @@
-
+
-
+
-
+
-
+
-
+
+ end-placeholder="止" value-format="yyyy-MM-dd HH:mm:ss" style="width: 340px;" @change="query(1)">
@@ -307,7 +307,7 @@ export default {
userId: "",//操作人id(用户列表)
},
value1: "", //筛选时间变量
- loading: true,
+ loading: false,
tableData: [], //列表数据
Paginationdata: {}, //分页相关数据
current_page: 1, //当前页
@@ -317,6 +317,7 @@ export default {
methods: {
//请求列表数据
getList() {
+ this.loading = true;
let page = {
page: this.current_page,
per_page: this.per_page,
@@ -324,8 +325,11 @@ export default {
recordList(page).then((res) => {
this.tableData = res.data.data;
this.Paginationdata = res.data.meta;
- });
- this.loading = false;
+ this.loading = false;
+ }).catch(() => {
+ this.loading = false;
+ })
+
},
// 获取用户列表
@@ -337,6 +341,7 @@ export default {
// 查询
query(page) {
+ this.loading = true;
let queryData = {
page: page,
per_page: this.per_page,
@@ -353,7 +358,10 @@ export default {
recordList(queryData).then((res) => {
this.tableData = res.data.data;
this.Paginationdata = res.data.meta;
- });
+ this.loading = false;
+ }).catch(() => {
+ this.loading = false;
+ })
},
//分页功能
diff --git a/resources/frontend/src/views/plat/afterSaleOrder.vue b/resources/frontend/src/views/plat/afterSaleOrder.vue
index afa03da..76ed166 100644
--- a/resources/frontend/src/views/plat/afterSaleOrder.vue
+++ b/resources/frontend/src/views/plat/afterSaleOrder.vue
@@ -4,25 +4,25 @@
店铺:
-
+
售后单状态:
-
+
订单编号:
-
+
售后单编号:
-
+
创建时间:
@@ -33,7 +33,8 @@
start-placeholder="开始时间"
end-placeholder="结束时间"
value-format="yyyy-MM-dd HH:mm:ss"
- style="width: 340px">
+ style="width: 340px"
+ @change="handleSearch()">
diff --git a/resources/frontend/src/views/plat/goodsList.vue b/resources/frontend/src/views/plat/goodsList.vue
index 9fa756b..34aff01 100644
--- a/resources/frontend/src/views/plat/goodsList.vue
+++ b/resources/frontend/src/views/plat/goodsList.vue
@@ -3,19 +3,19 @@
-
+
-
+
-
+
diff --git a/resources/frontend/src/views/plat/orderList.vue b/resources/frontend/src/views/plat/orderList.vue
index a0722e5..067c95d 100644
--- a/resources/frontend/src/views/plat/orderList.vue
+++ b/resources/frontend/src/views/plat/orderList.vue
@@ -3,14 +3,14 @@
-
+
-
+
@@ -19,7 +19,7 @@
-
+
@@ -27,7 +27,7 @@
-
+
@@ -35,7 +35,7 @@
-
+
@@ -43,7 +43,7 @@
-
+
@@ -70,12 +70,12 @@
+ end-placeholder="止" format="yyyy-MM-dd HH:mm:ss" value-format="yyyy-MM-dd HH:mm:ss" @change="handleChoose()">
-
+
@@ -266,8 +266,8 @@ export default {
...this.form,
page: 1,
per_page: this.per_page,
- confirm_at_start: this.confirmAt[0] ? this.confirmAt[0] : '',
- confirm_at_end: this.confirmAt[1] ? this.confirmAt[1] : ''
+ confirm_at_start: this.confirmAt ? this.confirmAt[0] : '',
+ confirm_at_end: this.confirmAt ? this.confirmAt[1] : ''
};
this.getPlatOrderList(params)
},
diff --git a/resources/frontend/src/views/supplyChain/dailyStock.vue b/resources/frontend/src/views/supplyChain/dailyStock.vue
index 07cf59f..adc202b 100644
--- a/resources/frontend/src/views/supplyChain/dailyStock.vue
+++ b/resources/frontend/src/views/supplyChain/dailyStock.vue
@@ -4,11 +4,11 @@
商品名称:
-
+
商品编码:
-
+
创建时间:
@@ -19,7 +19,8 @@
start-placeholder="开始时间"
end-placeholder="结束时间"
value-format="yyyy-MM-dd HH:mm:ss"
- style="width: 340px">
+ style="width: 340px"
+ @change="handleSearch()">
diff --git a/resources/frontend/src/views/supplyChain/lossRecord.vue b/resources/frontend/src/views/supplyChain/lossRecord.vue
index cba7113..b58791b 100644
--- a/resources/frontend/src/views/supplyChain/lossRecord.vue
+++ b/resources/frontend/src/views/supplyChain/lossRecord.vue
@@ -4,11 +4,11 @@
商品名称:
-
+
商品编码:
-
+
创建时间:
@@ -19,7 +19,8 @@
start-placeholder="开始时间"
end-placeholder="结束时间"
value-format="yyyy-MM-dd HH:mm:ss"
- style="width: 340px">
+ style="width: 340px"
+ @change="handleSearch()">
diff --git a/resources/frontend/src/views/supplyChain/procureCheck.vue b/resources/frontend/src/views/supplyChain/procureCheck.vue
index 73bab56..1d83b1a 100644
--- a/resources/frontend/src/views/supplyChain/procureCheck.vue
+++ b/resources/frontend/src/views/supplyChain/procureCheck.vue
@@ -4,11 +4,11 @@
商品名称:
-
+
商品编码:
-
+
创建时间:
@@ -19,12 +19,13 @@
start-placeholder="开始时间"
end-placeholder="结束时间"
value-format="yyyy-MM-dd HH:mm:ss"
- style="width: 340px">
+ style="width: 340px"
+ @change="handleSearch()">
审核状态:
-
+
diff --git a/resources/frontend/src/views/supplyChain/procureLog.vue b/resources/frontend/src/views/supplyChain/procureLog.vue
index 1dddb95..15e4b4a 100644
--- a/resources/frontend/src/views/supplyChain/procureLog.vue
+++ b/resources/frontend/src/views/supplyChain/procureLog.vue
@@ -4,11 +4,11 @@
商品名称:
-
+
商品编码:
-
+
创建时间:
@@ -19,12 +19,13 @@
start-placeholder="开始时间"
end-placeholder="结束时间"
value-format="yyyy-MM-dd HH:mm:ss"
- style="width: 340px">
+ style="width: 340px"
+ @change="handleSearch()">
审核状态:
-
+