From bf16d4b3bdbf3482ac183d0b03cfd83f3591ba0b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E8=B0=A2=E6=AC=A3=E6=82=A6?= <2289014031@qq.com>
Date: Wed, 28 Aug 2024 19:55:28 +0800
Subject: [PATCH] ok
---
src/views/market/orders/index.vue | 66 +++++++++++--------------------
1 file changed, 23 insertions(+), 43 deletions(-)
diff --git a/src/views/market/orders/index.vue b/src/views/market/orders/index.vue
index 23b0caa..9abfb5f 100644
--- a/src/views/market/orders/index.vue
+++ b/src/views/market/orders/index.vue
@@ -9,26 +9,17 @@
- 输入搜索:
- 订单编号:
- 订单分类:
-
-
-
-
-
- 订单状态:
-
-
- 审核状态:
-
+ 输入搜索:
+ 订单编号:
+
+
+
+
+
+ 订单款项状态:
+
+
@@ -43,31 +34,31 @@
-
+
{{ scope.row.ordersLaunchdate }}
-
+
- 订单编号: {{ scope.row.ordersNum }}
+ {{ scope.row.ordersNum }}
-
+
{{ scope.row.userName }}
-
+
{{ scope.row.productName }}
-
+
{{ scope.row.ordersPrice }}
@@ -77,7 +68,7 @@
{{ scope.row.ordersSpecification }}
-
+
待支付
已付款
@@ -138,7 +129,9 @@ export default {
arr:[],
type:[],
Cascader:{ expandTrigger:'hover',value:'id',label:'typeName',children:'parentPOS' },
- typeId:[]
+ typeId:[],
+ startDate: null,
+ endDate: null,
};
},
//计算属性 类似于data概念",
@@ -147,19 +140,7 @@ export default {
watch: {},
//方法集合",
methods: {
- // 商品分类下拉框
- shopTypeId(){
- for (let i = 0; i < this.typeId.length; i++) {
- this.orders.typeId=this.typeId[i]
- }
- },
- /**递归*/
- diGui(){
- diGui(this.orders.typeId).then(
- res => {
- this.type=res.data
- }
- )
+
},
// 删除
handleDelete(orders){
@@ -207,7 +188,7 @@ export default {
// 查询
findShop(){
this.selectList()
- },
+ },
// 添加跳转路径
add(){
this.$router.push('index')
@@ -225,11 +206,10 @@ export default {
this.orders.total=res.data.total
}
)
- }
},
//生命周期 - 创建完成(可以访问当前this实例)",
created() {
- this.diGui()
+ // this.diGui()
this.selectList()
},
//生命周期 - 挂载完成(可以访问DOM元素)",