Commit fad1d0e4 authored by Mac's avatar Mac

1

parent ace8f882
...@@ -284,7 +284,8 @@ ...@@ -284,7 +284,8 @@
</div> </div>
<div class="title">会员购买</div> <div class="title">会员购买</div>
<div class="form-body el-row fxzx"> <div class="form-body el-row fxzx">
<el-form label-width="150px" style="padding:20px;"> <el-form label-width="160px" style="padding:20px;">
<el-form-item label="会员购买显示状态" size="small"> <el-form-item label="会员购买显示状态" size="small">
<el-switch v-model="addMsg.IsShowVIPBuyPic" :active-value="1" :inactive-value="0"></el-switch> <el-switch v-model="addMsg.IsShowVIPBuyPic" :active-value="1" :inactive-value="0"></el-switch>
</el-form-item> </el-form-item>
...@@ -300,9 +301,12 @@ ...@@ -300,9 +301,12 @@
<el-form-item label="会员购买链接" size="small"> <el-form-item label="会员购买链接" size="small">
<el-input v-model="addMsg.VipBuyUrl" style="width:40%" size="small" placeholder="请输入内容"></el-input> <el-input v-model="addMsg.VipBuyUrl" style="width:40%" size="small" placeholder="请输入内容"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="开启离线收益提醒" size="small">
<el-switch v-model="addMsg.OpenOfflineEarnings" :active-value="1" :inactive-value="0"></el-switch>
</el-form-item>
</el-form> </el-form>
</div> </div>
<div class="title">文字</div> <div class="title">文字</div>
<el-form style="padding:20px 0;background:#fff" ref="addMsg" :model="addMsg" label-width="50px"> <el-form style="padding:20px 0;background:#fff" ref="addMsg" :model="addMsg" label-width="50px">
<el-form-item label=""> <el-form-item label="">
...@@ -664,7 +668,7 @@ ...@@ -664,7 +668,7 @@
<img :src="getIconLink(vipMsg.VipICO)" alt=""/> <img :src="getIconLink(vipMsg.VipICO)" alt=""/>
</div> </div>
<div> <div>
<div class="vip_Month">×个月<span class="vip_yellow">×</span></div> <div class="vip_Month">×个月<span class="vip_yellow">×</span></div>
</div> </div>
</div> </div>
<input type="button" class="my_VipBtn" value="立即开通"/> <input type="button" class="my_VipBtn" value="立即开通"/>
......
...@@ -27,6 +27,13 @@ ...@@ -27,6 +27,13 @@
<el-input v-model="addMsg.IndateDay" @keyup.native="checkInteger(addMsg,'IndateDay')" style="width:478px" <el-input v-model="addMsg.IndateDay" @keyup.native="checkInteger(addMsg,'IndateDay')" style="width:478px"
size="small"></el-input> size="small"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="加入充值中心">
<el-switch
v-model="addMsg.PickupCenter"
:active-value="1" :inactive-value="0"
>
</el-switch>
</el-form-item>
</el-form> </el-form>
</div> </div>
<div style="margin-top:20px"> <div style="margin-top:20px">
...@@ -52,7 +59,8 @@ ...@@ -52,7 +59,8 @@
CouponIco: '', //封面 CouponIco: '', //封面
SalePrice: '', //售价 SalePrice: '', //售价
DepositPrice: '', //金额 DepositPrice: '', //金额
IndateDay: '' //有效期 IndateDay: '', //有效期
PickupCenter:0,//加入充值中心
}, },
rules: { rules: {
Name: [{ Name: [{
...@@ -97,6 +105,7 @@ ...@@ -97,6 +105,7 @@
this.addMsg.SalePrice = tempDate.SalePrice; this.addMsg.SalePrice = tempDate.SalePrice;
this.addMsg.DepositPrice = tempDate.DepositPrice; this.addMsg.DepositPrice = tempDate.DepositPrice;
this.addMsg.IndateDay = tempDate.IndateDay; this.addMsg.IndateDay = tempDate.IndateDay;
this.addMsg.PickupCenter = tempDate.PickupCenter;
}) })
}, },
goUrl() { goUrl() {
......
...@@ -259,6 +259,11 @@ ...@@ -259,6 +259,11 @@
active-text="" inactive-text=""> active-text="" inactive-text="">
</el-switch> </el-switch>
</el-form-item> </el-form-item>
<el-form-item label="储值卡功能">
<el-switch class="inputM_l" :active-value="1" :inactive-value="0" v-model="msg.DepositFun"
active-text="" inactive-text="">
</el-switch>
</el-form-item>
<el-form-item label="商品面议联系方式"> <el-form-item label="商品面议联系方式">
<el-tooltip class="item" effect="dark" content="若客服和外链客服两者都不勾选,默认勾选客服;客服和外链客服前端统一显示为客服" placement="top" <el-tooltip class="item" effect="dark" content="若客服和外链客服两者都不勾选,默认勾选客服;客服和外链客服前端统一显示为客服" placement="top"
...@@ -880,6 +885,7 @@ ...@@ -880,6 +885,7 @@
PayWay: '', PayWay: '',
DeliverWay: '', DeliverWay: '',
BalanceFun: 0, BalanceFun: 0,
DepositFun:0,//储值卡
ConsultWay: '', ConsultWay: '',
MinSwitch: 1, MinSwitch: 1,
MinBackColor: '#000000', MinBackColor: '#000000',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment