diff --git a/src/components/order/taobao.vue b/src/components/order/taobao.vue
index 0337c66..2c68993 100644
--- a/src/components/order/taobao.vue
+++ b/src/components/order/taobao.vue
@@ -11,6 +11,22 @@
导出
+
+
+
+
+
@@ -53,12 +69,19 @@ export default {
return {
loading: false,
retData: { TotalCount: 0, Data: [] },
+ dateRange:[],
searchModel: {
PageIndex: 1,
keyWord: '',
+ shop: '',
Btime: '',
Etime: ''
- }
+ },
+ shops: [
+ { text: "可乐开发商", value: "可乐开发商" },
+ { text: "老鹰动态pptp", value: "老鹰动态pptp" },
+ { text: "强子pptp动态", value: '强子pptp动态' },
+ ],
}
},
created () {
@@ -68,6 +91,10 @@ export default {
methods: {
search () {
this.searchModel.PageIndex = 1
+ if (this.dateRange && this.dateRange.length == 2) {
+ this.searchModel.Btime = this.dateRange[0];
+ this.searchModel.Etime = this.dateRange[1];
+ }
this.get()
},
get () {