|
|
@@ -80,19 +80,6 @@
|
|
|
</tui-list-cell>
|
|
|
</div>
|
|
|
|
|
|
- <div class="module-com gift-wrap input-line-wrap">
|
|
|
- <tui-list-cell class="line-cell" :hover="false">
|
|
|
- <div class="tui-title">选择贺卡</div>
|
|
|
- <div class="gift-content">
|
|
|
- <div class="flex-center">
|
|
|
- <radio-group @change="needCardChange">
|
|
|
- <label class="radio"><radio value="1" checked="true" />需要</label>
|
|
|
- <label class="radio"><radio value="0" />不需要</label>
|
|
|
- </radio-group>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </tui-list-cell>
|
|
|
-
|
|
|
<tui-list-cell class="line-cell" :hover="false" v-show="showCardInfo">
|
|
|
<div class="tui-title">贺卡内容</div>
|
|
|
<input v-model="form.cardInfo" placeholder-class="phcolor" placeholder-style="color:#ccc" class="tui-input" name="cardInfo" style="width:100%;" placeholder="请填写内容,留空寄出空白贺卡" />
|
|
|
@@ -172,7 +159,6 @@ export default {
|
|
|
bookMobile: "", // 订花人手机号
|
|
|
reachDate: 0, // 配送时间
|
|
|
reachPeriod: "0", // 配送时段,0上午1下午2晚上
|
|
|
- needCard: "1", // 是否要贺卡 0不要 1要
|
|
|
cardInfo: "", // 贺卡信息
|
|
|
remark: "", // 备注
|
|
|
anonymity:0
|
|
|
@@ -225,11 +211,6 @@ export default {
|
|
|
timeTodaySelFn(index) {
|
|
|
this.form.reachPeriod = index;
|
|
|
},
|
|
|
- needCardChange(e) {
|
|
|
- this.form.needCard = e.target.value;
|
|
|
- this.showCardInfo = e.target.value == 0 ? false : true;
|
|
|
- this.form.cardInfo = '';
|
|
|
- },
|
|
|
anonymityChange(e) {
|
|
|
this.form.anonymity = e.detail.value == 1 ? 1 : 0;
|
|
|
},
|