|
@@ -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>
|