123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- <template>
- <view>
- <global-loading />
- <view v-if="FindMySalesData.total > 0">
- <view v-for="(item, index) in FindMySalesDatalist" :key="index" class="flex-center clientList-box">
- <view class="directAward-box font-color-656 fs26">
- <view class="directAward-icon flex-row-plus flex-items flex-sp-between" @click="arrowTypeChange(index)">
- <view class="flex-column-plus font-color-333 fs30">
- <label class="orderId-box">订单号:{{ item.orderId }}</label>
- <view class="orderId-box mar-top-20">
- 佣金:<label class="font-color-C5AA7B">¥{{ item.commission }}</label>
- </view>
- </view>
- <view>
- <image v-if="item.ifOpen == false" class="arrow-down" src="../../static/images/origin/arrowDownIcon.png">
- </image>
- <image v-if="item.ifOpen == true" class="arrow-down" src="../../static/images/origin/arrowUpIcon.png">
- </image>
- </view>
- </view>
- <view v-if="item.ifOpen == true" class="upBox">
- <view class="flex-row-plus flex-items mar-top-30 flex-sp-between">
- <label class="orderId-box font-color-999 fs26">商品数:{{ item.products }}</label>
- <label class="orderId-box font-color-999 fs26">实付金额:¥{{ item.price }}</label>
- </view>
- <view class="flex-row-plus flex-items mar-top-30 flex-sp-between">
- <label class="orderId-box font-color-999 fs26">下单人:{{ item.customerName }}</label>
- <label class="commission-box mar-left-70 font-color-999 fs26">
- 状态:<text
- class="state"
- :class="{ current: item.state == 0 }"
- >
- {{ item.state === 0 ? '未结算' : '已结算' }}
- </text>
- </label>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view v-else class="emptyCart-box flex-items-plus flex-column">
- <image class="emptyCart-img" src="../../static/images/origin/collectEmpty.png"></image>
- <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label>
- </view>
- </view>
- </template>
- <script>
- const NET = require('../../utils/request')
- const API = require('../../config/api')
- export default {
- data() {
- return {
- shopId: 0,
- distributorId: 0,
- page: 1,
- pageSize: 20,
- FindMySalesData: [],
- FindMySalesDatalist: []
- }
- },
- onLoad(options) {
- this.shopId = options.shopId
- this.distributorId = options.distributorId
- this.getSalesOrderPage()
- },
- onReachBottom() {
- if (this.loadingType == 1) {
- uni.stopPullDownRefresh()
- } else {
- this.page = this.page + 1
- this.getSalesOrderPage()
- }
- },
- methods: {
- getSalesOrderPage() {
- // uni.showLoading({
- // title: '加载中...'
- // })
- NET.request(API.FindMySalesPage, {
- shopId: this.shopId,
- distributorId: this.distributorId,
- page: this.page,
- pageSize: this.pageSize
- }, 'GET').then((res) => {
- uni.hideLoading()
- if (res.data.list.length == 0) {
- this.loadingType = 1
- this.page = this.page
- }
- this.FindMySalesDatalist = this.FindMySalesDatalist.concat(res.data.list)
- this.FindMySalesData = res.data
- })
- .catch((res) => {
- uni.hideLoading()
- })
- },
- arrowTypeChange(arrowTypeId) {
- this.FindMySalesDatalist[arrowTypeId].ifOpen = this.FindMySalesDatalist[arrowTypeId].ifOpen != true
- }
- }
- }
- </script>
- <style lang="scss">
- page {
- background: #F8F8F8;
- }
- .emptyCart-box {
- margin-top: 70upx;
- .emptyCart-img {
- margin-top: 30%;
- width: 198rpx;
- height: 183rpx;
- }
- }
- .directAward-box {
- width: 95%;
- display: flex;
- justify-content: flex-start;
- flex-direction: column;
- background-color: #FFFFFF;
- padding: 40upx 20upx;
- margin-top: 30upx;
- .orderId-box {
- width: 320upx;
- }
- .commission-box {
- width: 340upx;
- }
- .state {
- color: #16BB89;
- }
- .current {
- color: #C83732 !important;
- }
- .arrow-down {
- width: 24upx;
- height: 24upx;
- }
- .upBox {
- border-top: 1upx solid #EDEDED;
- margin-top: 30upx;
- }
- }
- </style>
|