123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277 |
- <template>
- <view class="page" :style="{'min-height':(h)+'px','padding-top':mt+'px'}">
- <c-nav-bar title="交易账单"></c-nav-bar>
- <view class="query">
- <u-icon @click="show=true" name="calendar" label="自定义查询" labelPos="right" labelColor="#666" color="#666"
- size="25px"></u-icon>
- </view>
- <view class="list">
- <view class="time">
- <text v-if="date==cdate">今日</text>
- <text>{{date}}</text>
- </view>
- <view class="money">
- <view>
- <text>收入金额</text>
- <text class="in">¥{{merchantType==10?info.paymentAmount||0:info.orderAmount||0}}</text>
- <text>{{merchantType==10?info.paymentCount:info.orders||0}}笔</text>
- </view>
- <view>
- <text>退款金额</text>
- <text>¥{{merchantType==10?info.refundAmount:info.refundOrderAmount||0}}</text>
- <text>{{merchantType==10?info.refundCount:info.refundOrders||0}}笔</text>
- </view>
- </view>
- <template v-if="merchantType==10">
- <view class="li" v-for="(item,index) in pageDataList" :key="index" @click="detail(item)">
- <view class="left">
- <text>{{item.playDate}}
- {{item.playTime}}出发/{{item.orderType==2?'包船':'拼船'}}/{{item.boatNo||'拼团中'}}</text>
- <text>{{item.payTime}}</text>
- </view>
- <view class="right" v-if="item.realPrice<0" style="color: #111">{{item.realPrice}}</text>
- </view>
- <view class="right" v-else>+{{item.realPrice}}</text>
- </view>
- </view>
- </template>
- <template v-if="merchantType==4">
- <view class="li" v-for="(item,index) in merchantOrderDTOSList" :key="index" @click="detail(item)">
- <view class="left">
- <text>{{item.productName}}</text>
- <text>{{item.orderTime}}</text>
- </view>
- <view class="right" v-if="item.realityPay<0" style="color: #111">{{item.realityPay}}</view>
- <view class="right" v-else>+{{item.realityPay}}</view>
- </view>
- </template>
- </view>
- <u-datetime-picker @confirm="confirmDate" @cancel="show=false" :show="show" v-model="value1"
- mode="date"></u-datetime-picker>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- cdate: new Date().Format('yyyy-MM-dd'),
- date: new Date().Format('yyyy-MM-dd'),
- show: false,
- value1: Number(new Date()),
- mt: uni.getSystemInfoSync().statusBarHeight + 44,
- info: {
- orderAmount: 0,
- orders: 0,
- refundOrderAmount: 0,
- fishermanOrderDTOS: [],
- refundOrders: 0,
- },
- merchantId: uni.getStorageSync('merchantId'),
- merchantType: uni.getStorageSync('merchantType'),
- pageDataList:[],
- merchantOrderDTOSList:[],
- page:1,
- limit:10,
- isOver:false,
- }
- },
- onLoad() {
- if (this.merchantType == 10) {
- this.getList()
- } else {
- this.getList2()
- }
- },
- onReachBottom() {
- if (this.isOver) return;
- if (this.merchantType == 10) {
- this.getList()
- } else {
- this.getList2()
- }
- },
- methods: {
- confirmDate(e) {
- // 创建一个Date对象并传入时间戳
- const date = new Date(e.value);
- // 使用Date对象的方法获取年、月、日、小时、分钟和秒
- const year = date.getFullYear();
- const month = ('0' + (date.getMonth() + 1)).slice(-2);
- const day = ('0' + date.getDate()).slice(-2);
- // 格式化时间
- const formattedTime = `${year}-${month}-${day}`;
- this.date = formattedTime;
- if (this.merchantType == 10) {
- this.getList()
- } else {
- this.getList2()
- }
- this.show = false;
- },
- //渔家乐
- getList() {
- this.$api.get('/scenic/api/order/tradeBills', {
- startDate: this.date,
- endDate: '',
- dateType: '1',
- merchantId: uni.getStorageSync('merchantId'),
- page:this.page,
- limit:this.limit
- }).then(res => {
- if (res.data.code === 0) {
- this.info = res.data.data;
- this.page++;
- let { list, total } = res.data.data.pageData;
- if (this.pageDataList.length + list.length > total || list.length == 0) return this.isOver = true;
- this.pageDataList = [...this.pageDataList, ...list];
- this.merchantOrderDTOSList = this.info.merchantOrderDTOS;
- } else {
- this.info = {
- pageData: {
- list: []
- },
- paymentAmount: 0,
- paymentCount: 0,
- refundAmount: 0,
- refundCount: 0,
- };
- this.pageDataList = [];
- this.merchantOrderDTOSList = [];
- }
- })
- },
- //餐饮
- getList2() {
- this.$api.post('/api/merchant/food/getMerchantFoodDeal', {
- dateTime: this.date,
- dateType: '1',
- merchantId: uni.getStorageSync('merchantId')
- }).then(res => {
- if (res.data.code === 0) {
- this.info = res.data.data;
- this.merchantOrderDTOSList = this.info.merchantOrderDTOS;
- } else {
- this.info = {
- orderAmount: 0,
- orders: 0,
- refundOrderAmount: 0,
- fishermanOrderDTOS: [],
- refundOrders: 0,
- }
- this.merchantOrderDTOSList = [];
- }
- })
- },
- detail(item) {
- item.real
- let info = encodeURIComponent(JSON.stringify(item));
- uni.navigateTo({
- url: "/pagesHouse/home/orderBillDetail?info=" + info
- })
- }
- },
- }
- </script>
- <style lang="less" scoped>
- .page {
- background: #F3F4F4;
- padding-bottom: 40rpx;
- box-sizing: border-box;
- .query {
- height: 100rpx;
- display: flex;
- align-items: center;
- padding-left: 30rpx;
- background-color: #fff;
- }
- .list {
- width: calc(100% - 36rpx);
- margin: 20rpx auto;
- padding: 36rpx 24rpx;
- background-color: #fff;
- border-radius: 24rpx;
- .time {
- text {
- &:first-child {
- font-size: 40rpx;
- font-weight: bold;
- color: #666;
- margin-right: 10rpx;
- }
- }
- margin-bottom: 30rpx;
- }
- .money {
- display: flex;
- align-items: center;
- &>view {
- width: 50%;
- text {
- display: block;
- font-weight: bold;
- &:first-child {
- color: #111;
- font-size: 28rpx;
- }
- &:nth-child(2) {
- font-size: 40rpx;
- margin: 14rpx 0 16rpx;
- }
- &:last-child {
- color: #999;
- font-size: 26rpx;
- font-weight: inherit;
- }
- }
- .in {
- color: #FEA400;
- }
- }
- }
- .li {
- display: flex;
- justify-content: space-between;
- padding: 30rpx 0;
- border-bottom: 1rpx solid #EFEFEF;
- .left {
- text {
- &:first-child {
- font-size: 28rpx;
- color: #111;
- margin-bottom: 15rpx;
- }
- display: block;
- color: #999;
- font-size: 26rpx;
- }
- }
- .right {
- color: #FEA400;
- font-size: 36rpx;
- font-weight: bold;
- }
- }
- }
- }
- </style>
|