|
|
@@ -1,18 +1,15 @@
|
|
|
<template>
|
|
|
<view class="app-content">
|
|
|
<view>
|
|
|
+
|
|
|
+ <view style="background-color: white;">
|
|
|
+ <text style="margin-right:30upx;font-size:35upx;">充值优惠方式:</text>
|
|
|
+ <view class="admin-button-com big blue" @click="">升会员</view>
|
|
|
+ <view style="margin-left:60upx;" class="admin-button-com big default" @click="">送余额</view>
|
|
|
+ </view>
|
|
|
+ <view style="background-color: white;padding-bottom:30upx;"> </view>
|
|
|
<t-table :headerBackgroundColor="'#F0F2F6'">
|
|
|
<view>
|
|
|
- <t-tr header>
|
|
|
- <t-th><view style="color:black;">会员名称</view></t-th>
|
|
|
- <t-th>
|
|
|
- <view style="color:black;">
|
|
|
- <view>享折扣</view>
|
|
|
- </view>
|
|
|
- </t-th>
|
|
|
- </t-tr>
|
|
|
- </view>
|
|
|
- <view>
|
|
|
<view v-for="(item, inIndex) in map" :key="inIndex">
|
|
|
<t-tr>
|
|
|
<t-td align="center" color="info">
|
|
|
@@ -20,22 +17,18 @@
|
|
|
</t-td>
|
|
|
<t-td align="center" color="info">
|
|
|
<view>
|
|
|
- <input v-model="item.discount" type="digit" style="border:1upx solid #cccccc;color:black;font-size:30upx;" @focus="item.discount=''" placeholder="9折写0.9,85折写0.85" />
|
|
|
+ <input v-model="item.discount" type="digit" style="border:1upx solid #cccccc;color:black;font-size:30upx;" @focus="item.discount=''" placeholder="" />
|
|
|
</view>
|
|
|
</t-td>
|
|
|
</t-tr>
|
|
|
</view>
|
|
|
</view>
|
|
|
</t-table>
|
|
|
- <view style="font-size:36upx;font-weight:bold;height:50upx;margin-top:50upx;display: flex;align-items: center;justify-content: center;">
|
|
|
- 超过
|
|
|
- <input v-model="reduceDay" type="number" @focus="reduceDay=''" placeholder="填0则不自动降级" style="border:1upx solid #cccccc;color:black;font-size:30upx;width:180upx;display: inline-block;text-align:center;margin:0 10upx 0 10upx;" />
|
|
|
- 天未消费降一级
|
|
|
- </view>
|
|
|
+
|
|
|
</view>
|
|
|
<view class="app-footer">
|
|
|
<view class="admin-button-com big blue" @click="goBack()">返回上级</view>
|
|
|
- <view style="margin-left:50upx;" class="admin-button-com big blue" @click="saveData">提交修改</view>
|
|
|
+ <view style="margin-left:60upx;" class="admin-button-com big blue" @click="saveData">提交修改</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</template>
|