123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416 |
- <template>
- <view class="content">
- <view class="card-list">
- <view class="card-label">{{memberInfo.typeValue}}</view>
- <view class="card-num">¥{{memberInfo.originalAmount ? memberInfo.originalAmount : 0}}</view>
- <view class="card-icon iconfont iconzu4931"></view>
- </view>
- <u-form :model="form" label-width="140" style="width: 100%; float: left;">
- <u-form-item label="选择场馆" :right-icon="venueEdit ? 'arrow-right' : ''" required @click.native="venueShow = venueEdit ? true : false">
- <text>{{venueName}}</text>
- </u-form-item>
- <u-form-item label="使用时间">
- <text>{{memberInfo.startDate + '~' + memberInfo.endDate}}</text>
- </u-form-item>
- <u-form-item label="学员姓名" :right-icon="studentEdit ? 'arrow-right' : ''" required @click.native="studentShow = studentEdit ? true : false">
- <text>{{studentName}}</text>
- </u-form-item>
- <u-form-item label="优惠金额" right-icon="arrow-right" @click.native="couponShow = true">
- <text>{{couponId ? '-¥' + memberInfo.discountsAmount : ''}}</text>
- </u-form-item>
- <u-form-item label="实际金额">
- <text>{{'¥' + (memberInfo.realPayAmount ? memberInfo.realPayAmount : 0)}}</text>
- </u-form-item>
- <u-form-item label="家长名称" required>
- <u-input v-model="form.parentName" placeholder="请输入家长姓名" />
- </u-form-item>
- <!--<u-form-item label="性别" prop="sex" required right-icon="arrow-right" @click.native="sexShow = true">
- <text>{{form.sex}}</text>
- </u-form-item>-->
- </u-form>
- <u-popup v-model="couponShow" mode="bottom" border-radius="30" closeable>
- <scroll-view scroll-y style="height:300px;margin: 30px 0 15px 0;">
- <u-card :show-head="false" :show-foot="false" padding="0px" margin="0px 30px 20px 30px" borderRadius="40" v-for="(item, index) in couponList"
- :key="index" class="class-card" @click="selectCoupon(item)">
- <view class="class-content" slot="body">
- <view class="class-info-img">
- <u-image width="60px" height="60px" :src="item.url" shape="circle"></u-image>
- </view>
- <view class="class-info-content">
- <view class="class-info-label">{{item.name}}¥{{item.amount}}</view>
- <view class="class-info-text">{{item.typeValue}} {{item.content}}</view>
- <view class="class-info-text">{{item.endDate}} 到期</view>
- </view>
- </view>
- </u-card>
- </scroll-view>
- </u-popup>
- <view class="handle-fix-box">
- <u-button type="warning" shape="circle" :ripple="true" :custom-style="customStyle" @click="toPay()">确定支付¥{{memberInfo.realPayAmount ? memberInfo.realPayAmount : 0}}</u-button>
- </view>
- <u-popup v-model="venueShow" mode="bottom" border-radius="30">
- <scroll-view scroll-y class="student-box">
- <u-card :title="item.studentName" title-size="32" :head-style="cardStyle" :head-border-bottom="false" :show-foot="false"
- margin="10px" borderRadius="20" v-for="(item, index) in venueList" :key="index" @click="selectVenue(item)">
- <view class="student-card" slot="body">
- <view class="class-info-text">{{item.venueName}}</view>
- </view>
- </u-card>
- </scroll-view>
- </u-popup>
- <u-popup v-model="studentShow" mode="bottom" border-radius="30">
- <scroll-view scroll-y class="student-box">
- <u-card :title="item.studentName" title-size="32" :head-style="cardStyle" :head-border-bottom="false" :show-foot="false"
- margin="10px" borderRadius="20" v-for="(item, index) in studentList" :key="index" @click="selectStudent(item)">
- <view class="student-card" slot="body">
- <view class="class-info-text">性别:{{item.sex}} 年龄:{{item.age}}</view>
- </view>
- </u-card>
- </scroll-view>
- <u-button type="warning" shape="circle" :ripple="true" :custom-style="{...customStyle,margin:'15px',float: 'left',width: 'calc(100% - 30px)'}"
- @click="goToSubscribelForm()">新增学员</u-button>
- </u-popup>
- <u-action-sheet :list="sexList" v-model="sexShow" @click="setSex"></u-action-sheet>
- <u-top-tips ref="uTips"></u-top-tips>
- </view>
- </template>
- <script>
- import {
- mapGetters
- } from 'vuex'
- const NET = require('@/utils/request')
- const API = require('@/config/api')
- export default {
- computed: {
- ...mapGetters([
- 'mainColor',
- 'customStyle',
- ])
- },
- data() {
- return {
- memberCardType: '',
- memberInfo: {
- id: '',
- originalAmount: '',
- discountsAmount: '',
- realPayAmount: '',
- typeValue: '',
- endDate: '',
- startDate: '',
- },
- venueEdit: true,
- venueId: '',
- venueName: '',
- venueShow: false,
- venueList: [],
- couponId: '',
- couponShow: false,
- couponList: [],
- cardStyle: {
- fontWeight: 'bold'
- },
- studentEdit: true,
- studentId: '',
- studentName: '',
- studentShow: false,
- studentList: [],
- form: {
- parentName: 'xsaxs',
- sex: '',
- },
- sexShow: false,
- sexList: [{
- text: '男'
- },
- {
- text: '女'
- }
- ],
- }
- },
- onLoad(options) {
- if (options.venueId) {
- this.venueEdit = false
- this.venueId = options.venueId
- this.venueName = options.venueName
- }
- if (options.studentId) {
- this.studentEdit = false
- this.studentId = options.studentId
- this.studentName = options.studentName
- }
- this.memberCardType = options.memberCardType
- if (this.venueId) {
- this.getMemberInfo(1)
- } else {
- this.memberInfo.typeValue = options.typeValue
- }
- },
- onUnload(){
- console.log('1111')
- },
- onBackPress(){
- console.log('2222')
- },
- onShow() {
- NET.request(API.getAllVenueList, uni.getStorageSync('locationData'), 'POST').then(res => {
- this.venueList = res.data
- }).catch(error => {
- this.$refs.uTips.show({
- title: error.message,
- type: 'warning',
- })
- })
- NET.request(API.getAllStudentList, {}, 'POST').then(res => {
- this.studentList = res.data
- }).catch(error => {
- this.$refs.uTips.show({
- title: error.message,
- type: 'warning',
- })
- })
- },
- onReady() {
- NET.request(API.getParentInfo, {}, 'POST').then(res => {
- this.form.parentName = res.data.parentName
- this.form.sex = res.data.sex
- }).catch(error => {
- this.$refs.uTips.show({
- title: error.message,
- type: 'warning',
- })
- })
- },
- methods: {
- // 获取数据
- getMemberInfo(type) {
- NET.request(API.getMemberCardInfo, {
- type: this.memberCardType,
- venueId: this.venueId,
- couponId: this.couponId,
- studentId: this.studentId
- }, 'POST').then(res => {
- this.memberInfo = res.data
- if (type == 1) {
- this.getCouponList()
- }
- }).catch(error => {
- this.$refs.uTips.show({
- title: error.message,
- type: 'warning',
- })
- this.venueId = ''
- this.venueName = ''
- this.memberInfo = {
- id: '',
- originalAmount: '',
- discountsAmount: '',
- realPayAmount: '',
- typeValue: this.memberInfo.typeValue,
- endDate: '',
- startDate: '',
- }
- })
- },
- // 获取优惠券
- getCouponList() {
- this.couponId = ''
- NET.request(API.getUsableCouponList, {
- id: this.memberInfo.id,
- studentId: this.studentId
- }, 'POST').then(res => {
- this.couponList = res.data.row
- }).catch(error => {
- this.$refs.uTips.show({
- title: error.message,
- type: 'warning',
- })
- })
- },
- // 选择优惠券
- selectCoupon(item) {
- this.couponId = item.id
- this.couponShow = false
- this.getMemberInfo(2)
- },
- // 选择场馆
- selectVenue(item) {
- this.venueId = item.id
- this.venueName = item.venueName
- this.venueShow = false
- this.getMemberInfo(1)
- },
- // 选择学员
- selectStudent(item) {
- console.log(item.sex)
- this.studentId = item.studentId
- this.studentName = item.studentName
- this.studentShow = false
- this.couponId = ''
- this.getMemberInfo(1)
- this.form.sex=item.sex
- },
- // 设置性别
- setSex(index) {
- this.form.sex = this.sexList[index].text
- },
- // 支付
- toPay(contractId) {
- if (!this.studentId) {
- this.$refs.uTips.show({
- title: '请选择学员',
- type: 'warning',
- })
- return
- }
- if (!this.form.parentName) {
- this.$refs.uTips.show({
- title: '请输入家长姓名',
- type: 'warning',
- })
- return
- }
- if (!this.form.sex) {
- this.$refs.uTips.show({
- title: '请选择性别',
- type: 'warning',
- })
- return
- }
- uni.navigateTo({
- url: '/pagesMain/contractInfo?memberCardId=' + this.memberInfo.id + '&couponId=' + this.couponId + '&studentId=' +
- this.studentId + '&realPayAmount=' + this.memberInfo.realPayAmount + '&parentName=' + this.form.parentName +
- '&sex=' + this.form.sex
- });
- },
- // 跳转支付结果
- goToPayResult(oderNo) {
- uni.redirectTo({
- url: '/pagesMain/payResult?id=' + oderNo
- });
- },
- // 跳转新增学员表单
- goToSubscribelForm() {
- uni.navigateTo({
- url: '/pagesMember/subscribelForm'
- });
- },
- },
- }
- </script>
- <style>
- page {
- width: 100%;
- height: 100%;
- }
- </style>
- <style lang="scss" scoped>
- @import "@/static/css/themes.scss";
- .content {
- width: 100%;
- float: left;
- // padding: 15px 15px 85px 15px;
- padding: 15px 15px 60px 15px;
- box-sizing: border-box;
- .card-list {
- width: 100%;
- padding: 15px 20px;
- margin-bottom: 15px;
- float: left;
- background-color: #FFFFFF;
- border-radius: 15px;
- box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
- position: relative;
- overflow: hidden;
- .card-label {
- width: 100%;
- margin-bottom: 10px;
- float: left;
- font-size: 18px;
- font-weight: bold;
- line-height: 20px;
- }
- .card-num {
- width: 100%;
- float: left;
- font-size: 28px;
- line-height: 28px;
- color: $mainColor;
- }
- .card-icon {
- font-size: 80px;
- color: $mainColor;
- position: absolute;
- right: -15px;
- bottom: -15x;
- opacity: 0.5;
- }
- }
- .class-card {
- .class-content {
- padding: 10px 15px;
- display: flex;
- align-items: center;
- position: relative;
- }
- .class-info-img {
- width: 60px;
- height: 60px;
- margin-right: 10px;
- }
- .class-info-content {
- flex: 1;
- }
- .class-info-label {
- font-size: 16px;
- color: #000000;
- word-break: break-all;
- }
- .class-info-text {
- color: #999999;
- margin-bottom: 5px;
- }
- }
- .student-box {
- max-height: 200px;
- padding: 0 15px;
- margin: 25px 0 0 0;
- box-sizing: border-box;
- overflow: auto;
- /deep/.u-card__head {
- padding-bottom: 0px !important;
- }
- }
- .canvas-container {
- width: 100%;
- height: 200px;
- }
- .handle-fix-box {
- // height: 85px;
- height: 60px;
- text-align: center;
- .contract-link {
- color: $mainColor;
- line-height: 25px;
- }
- }
- }
- </style>
|