WechatOwnerService/pages/roomFee/ownerCoupon.vue
2022-03-18 19:20:00 +08:00

165 lines
4.0 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view>
<view class="block__title" v-if="couponList.length > 0">可使用优惠卷</view>
<view class="block__title" v-if="couponList.length < 1">请使用商城系统积累优惠卷</view>
<!-- 费用项 -->
<uni-collapse @change="change" class="margin-top fee-content">
<uni-tr v-show="false">
<uni-th align="center" :with="50"> </uni-th>
</uni-tr>
<!-- 多个复选框带全选 -->
<view class="tl-section">
<checkbox-group class="block" @change="checkboxChange">
<view class="cu-form-group" v-for="(coupon,index) in couponList">
<view class="title">{{coupon.couponName}} 面值:{{coupon.actualPrice}}元
有效期:{{coupon.actualPrice}}
</view>
<checkbox class='round' :class="couponList[index].checked?'checked':''"
:checked="couponList[index].checked?true:false" :value="coupon.couponId"></checkbox>
</view>
</checkbox-group>
</view>
</uni-collapse>
<view class=" bg-white border flex justify-end" style="position: fixed;width: 100%;bottom: 0;">
<view class="action text-orange margin-right line-height">
合计:{{couponAmount}}元
</view>
<view class="btn-group">
<button class="cu-btn bg-red shadow-blur lgplus sharp" @click="_navigateBack()">确定</button>
</view>
</view>
</view>
</template>
<script>
// pages/payParkingFee/payParkingFee.js
import context from '../../lib/java110/Java110Context.js';
const constant = context.constant;
import vcDiscount from '@/components/vc-discount/vc-discount.vue'
import vcUserAccount from '@/components/vc-user-account/vc-user-account.vue'
// import mapping from '../../constant/MappingConstant.js'
// #ifdef H5
const WexinPayFactory = require('../../factory/WexinPayFactory.js');
// #endif
// #ifdef APP-PLUS
import {
getPayInfo
} from '../../factory/WexinAppPayFactory.js'
// #endif
import {
addMonth,
formatDate,
date2String,
dateSubOneDay
} from '../../lib/java110/utils/DateUtil.js'
import {
getCouponUsers
} from '../../api/fee/feeApi.js'
export default {
data() {
return {
couponList: [],
tmpCouponList: [],
userLink: '',
couponAmount: 0.0
}
},
onLoad: function(options) {
context.onLoad(options);
this._loadCouponUsers();
},
methods: {
checkboxChange(e) {
this.couponAmount = '0'
var items = this.couponList
var values = e.detail.value;
for (var i = 0, lenI = items.length; i < lenI; ++i) {
items[i].checked = false;
for (var j = 0, lenJ = values.length; j < lenJ; ++j) {
if (items[i].couponId == values[j]) {
items[i].checked = true;
break
}
}
if (items[i].checked == true) {
this.couponAmount = (parseFloat(this.couponAmount) + parseFloat(items[i].actualPrice)).toFixed(2);
}
}
console.log(this.couponList);
},
_loadCouponUsers: function() {
let _that = this;
let _objData = {
page: 1,
row: 30,
tel: context.getUserInfo().link,
state: '1001'
}
_that.couponList = [];
let _couponUsers = [];
getCouponUsers(_objData, _couponUsers)
.then((_couponList) => {
console.log("测试测试");
_couponList.data.forEach(items => {
items['checked'] = false;
if (items.isExpire == 'Y') {
_that.couponList.push(items);
}
})
//_that.noData = false;
}, () => {
//_that.noData = true;
})
},
_navigateBack: function() {
let _that = this;
let newCouponList = [];
_that.couponList.forEach(items => {
if (items.checked == true) {
newCouponList.push(items);
}
})
let outCouponList = {
couponList: newCouponList,
couponAmount: _that.couponAmount
};
uni.setStorageSync(constant.mapping.COUPON_USER_KEY, outCouponList);
uni.navigateBack();
}
}
}
</script>
<style>
@import "./roomFee.css";
.fee-last {
margin-bottom: 200upx;
}
.cu-btn.lgplus {
padding: 0 20px;
font-size: 18px;
height: 100upx;
}
.cu-btn.sharp {
border-radius: 0upx;
}
.line-height {
line-height: 100upx;
}
</style>