|
@@ -12,12 +12,12 @@
|
|
|
<u-form-item label="使用时间">
|
|
|
<text>{{memberInfo.startDate + '~' + memberInfo.endDate}}</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="学员姓名" :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>
|
|
@@ -241,6 +241,7 @@
|
|
|
this.studentId = item.studentId
|
|
|
this.studentName = item.studentName
|
|
|
this.studentShow = false
|
|
|
+ this.couponId = ''
|
|
|
this.getMemberInfo(1)
|
|
|
},
|
|
|
// 设置性别
|