linwenxin vor 4 Monaten
Ursprung
Commit
5b25a0c37d
2 geänderte Dateien mit 117 neuen und 128 gelöschten Zeilen
  1. 11 3
      src/packageMine/pages/myWebsit.vue
  2. 106 125
      src/packageMine/pages/salesProfit/orderList.vue

+ 11 - 3
src/packageMine/pages/myWebsit.vue

@@ -8,11 +8,11 @@
             <view :class="{ hengxian: true, xuanzhong: tab == 0 }"> </view>
           </view>
           <view class="toubuyangsTabItem" @click="tabQiehuan(1)">
-            <view>待审核</view>
+            <view>待审核{{ websitCount.dsh ? ` (${websitCount.dsh})` : '' }}</view>
             <view :class="{ hengxian: true, xuanzhong: tab == 1 }"></view>
           </view>
           <view class="toubuyangsTabItem" @click="tabQiehuan(2)">
-            <view>已入驻</view>
+            <view>已入驻{{ websitCount.yrz ? ` (${websitCount.yrz})` : '' }}</view>
             <view :class="{ hengxian: true, xuanzhong: tab == 2 }"></view>
           </view>
         </view>
@@ -125,11 +125,15 @@ export default {
       loadStatus: 0,
       keyword: '',
       baoxiandangqianxianxitishi: [],
-      isShowWebsitDialog: false
+      isShowWebsitDialog: false,
+      websitCount: {}
     }
   },
   onShow() {
     this.refreshLish()
+    this.$api.get('/user/apply/websitCount').then(res => {
+      this.websitCount = res.data
+    })
   },
   computed: {
     userInfo() {
@@ -149,6 +153,7 @@ export default {
     async getList() {
       this.loadStatus = 1
       var { latitude, longitude } = await this.$getLocation()
+
       this.$api
         .get('/user/apply/websit', {
           lat: latitude,
@@ -180,6 +185,9 @@ export default {
           })()
         })
         .then(res => {
+          this.$api.get('/user/apply/websitCount').then(res2 => {
+            this.websitCount = res2.data
+          })
           this.loadStatus = 2
           this.refresherTriggered = false
           this.dataList = res.data

+ 106 - 125
src/packageMine/pages/salesProfit/orderList.vue

@@ -1,5 +1,4 @@
 <template>
-  <!-- #ifdef H5 -->
   <view>
     <zj-page-layout
       :isScroll="true"
@@ -64,137 +63,133 @@
 
     <zj-dialog-dateRangePicker v-model="isShowDatePicker" @confirm="confirmDate"></zj-dialog-dateRangePicker>
   </view>
-  <!-- #endif -->
-
-  <!-- #ifndef H5 -->
-  <web-view
-    :src="webViewHref(`/packageMine/pages/salesProfit/orderList`, pam, crossPagePam)"
-    @message="crossPage.$listener"
-  ></web-view>
-  <!-- #endif -->
 </template>
 
 <script>
- // #ifdef H5
-import zjDialogDateRangePicker from '@/components/zj-dialog/zj-dialog-dateRangePicker.vue';
+import zjDialogDateRangePicker from '@/components/zj-dialog/zj-dialog-dateRangePicker.vue'
 
- export default {
-	components: {
-		zjDialogDateRangePicker,
-	},
+export default {
+  components: {
+    zjDialogDateRangePicker
+  },
 
-   filters: {
-     statusFilter(val) {
-       const MAP = {
-         WAIT: '待结算',
+  filters: {
+    statusFilter(val) {
+      const MAP = {
+        WAIT: '待结算',
         //  WAIT_ING: '可提现',
         //  ING: '提现中',
-         OVER: '已结算',
-         YC: '异常结算',
-         OK : '已结算',
-         LINE: '线下结算',
-       }
-       return MAP[val];
-     },
-   },
+        OVER: '已结算',
+        YC: '异常结算',
+        OK: '已结算',
+        LINE: '线下结算'
+      }
+      return MAP[val]
+    }
+  },
 
-   data() {
-     return {
-			dataList: [],
-			pageNum: 1,
-			loadStatus: 0,
+  data() {
+    return {
+      dataList: [],
+      pageNum: 1,
+      loadStatus: 0,
       refresherTriggered: false,
       tabList: [
-        {name: '待结算', value: 'WAIT'},
-      //  {name: '可提现', value: 'WAIT_ING'},
-      //  {name: '提现中', value: 'ING'},
-        {name: '已结算', value: 'OVER'},
+        { name: '待结算', value: 'WAIT' },
+        //  {name: '可提现', value: 'WAIT_ING'},
+        //  {name: '提现中', value: 'ING'},
+        { name: '已结算', value: 'OVER' }
       ],
       status: '',
       isShowDatePicker: false,
       startDate: '',
-      endDate: '',
-     }
-   },
+      endDate: ''
+    }
+  },
 
-   computed:{
-   	tabCurrent() {
-   		return this.tabList.map(item => item.value).indexOf(this.status);
-   	}
-   },
+  computed: {
+    tabCurrent() {
+      return this.tabList.map(item => item.value).indexOf(this.status)
+    }
+  },
 
-   onLoad({tab}) {
-     this.status = tab;
-     this.getList();
-   },
+  onLoad({ tab }) {
+    this.status = tab
+    this.getList()
+  },
 
-   methods: {
-     getList() {
-     	this.loadStatus = 1;
-     	this.$api.post('/settlementOrder/list/pageV2', {
-     	  pageNum: this.pageNum,
-     	  pageSize: 10,
-        startTime: this.startDate ? this.startDate + ' 00:00:00' : '',
-        endTime: this.endDate ? this.endDate + ' 23:59:59' : '',
-        status: ({
-          WAIT: "WAIT, YC",
-          OVER:"OK, LINE"
-        })[this.status] || "",
-     	}).then(res => {
-     		this.loadStatus = 0;
-     		let list = res.data.records;
-     		if (list.length < 10) {
-     		  this.loadStatus = 2;
-     		}
-     		this.dataList = this.dataList.concat(list);
-     	}).catch(() => {
-     	  this.loadStatus = 2;
-     	}).finally(res => {
-     	  this.refresherTriggered = false;
-     	})
-     },
+  methods: {
+    getList() {
+      this.loadStatus = 1
+      this.$api
+        .post('/settlementOrder/list/pageV2', {
+          pageNum: this.pageNum,
+          pageSize: 10,
+          startTime: this.startDate ? this.startDate + ' 00:00:00' : '',
+          endTime: this.endDate ? this.endDate + ' 23:59:59' : '',
+          status:
+            {
+              WAIT: 'WAIT, YC',
+              OVER: 'OK, LINE'
+            }[this.status] || ''
+        })
+        .then(res => {
+          this.loadStatus = 0
+          let list = res.data.records
+          if (list.length < 10) {
+            this.loadStatus = 2
+          }
+          this.dataList = this.dataList.concat(list)
+        })
+        .catch(() => {
+          this.loadStatus = 2
+        })
+        .finally(res => {
+          this.refresherTriggered = false
+        })
+    },
 
-     changeTab(e) {
-     	// this.tabCurrent = e.index;
-     	this.status = e.value;
-       this.refreshList();
-     },
+    changeTab(e) {
+      // this.tabCurrent = e.index;
+      this.status = e.value
+      this.refreshList()
+    },
 
-     // 选择日期
-     confirmDate(item) {
-     	let [start, end] = item;
-     	if (start == '' || end == '') {
-     		this.startDate = '';
-     		this.endDate = '';
-     		return;
-     	}
-     	this.startDate = start;
-     	this.endDate = end;
+    // 选择日期
+    confirmDate(item) {
+      let [start, end] = item
+      if (start == '' || end == '') {
+        this.startDate = ''
+        this.endDate = ''
+        return
+      }
+      this.startDate = start
+      this.endDate = end
 
-     	this.refreshList();
-     },
+      this.refreshList()
+    },
 
-     refreshList() {
-     	this.dataList = [];
-     	this.pageNum = 1;
-     	this.getList();
-     },
+    refreshList() {
+      this.dataList = []
+      this.pageNum = 1
+      this.getList()
+    },
 
-     // 滚动到底部
-     scrolltolower(e) {
-     	if (this.loadStatus === 0) {
-     		this.pageNum++;
-     		this.getList();
-     	}
-     },
+    // 滚动到底部
+    scrolltolower(e) {
+      if (this.loadStatus === 0) {
+        this.pageNum++
+        this.getList()
+      }
+    },
 
-     // 触发下拉刷新
-     refresherrefresh(e) {
-     	this.refresherTriggered = true;
-     	this.refreshList();
-     },
+    // 触发下拉刷新
+    refresherrefresh(e) {
+      this.refresherTriggered = true
+      this.refreshList()
+    },
 
-     toDetail(item) {
+    toDetail(item) {
       if (item.goodsTyp == 'M') {
         this.$navToPage({
           url: `/packageMaterial/pages/sale/orderDetail?id=${item.orderId}`
@@ -204,23 +199,9 @@ import zjDialogDateRangePicker from '@/components/zj-dialog/zj-dialog-dateRangeP
           url: `/packageMaterial/pages/newSale/orderDetail?id=${item.orderId}`
         })
       }
-    },
-   },
- }
-
- // #endif
- // #ifndef H5
- export default {
-   data() {
-     return {
-       pam: {},
-     }
-   },
-   onLoad(pam) {
-     this.pam = pam;
-   }
- }
- // #endif
+    }
+  }
+}
 </script>
 
 <style lang="scss" scoped>