|
@@ -149,17 +149,17 @@
|
|
|
</picker>
|
|
</picker>
|
|
|
</tui-list-cell>
|
|
</tui-list-cell>
|
|
|
|
|
|
|
|
|
|
+ <tui-list-cell class="line-cell" :hover="false" :arrow="false" v-if="form.sendType == 2">
|
|
|
|
|
+ <view class="tui-title">运费</view>
|
|
|
|
|
+ <input type="digit" placeholder="请填写运费" v-model="form.sendCost" placeholder-class="tui-placeholder"/>
|
|
|
|
|
+ </tui-list-cell>
|
|
|
|
|
+
|
|
|
<tui-list-cell class="line-cell" :hover="false" :arrow="false">
|
|
<tui-list-cell class="line-cell" :hover="false" :arrow="false">
|
|
|
<view class="tui-title">打印小票</view>
|
|
<view class="tui-title">打印小票</view>
|
|
|
<button @tap="form.needPrint = 2" class="admin-button-com middle" style="width:140upx;" :class="form.needPrint == 2? 'blue' : 'default'">不打印</button>
|
|
<button @tap="form.needPrint = 2" class="admin-button-com middle" style="width:140upx;" :class="form.needPrint == 2? 'blue' : 'default'">不打印</button>
|
|
|
<button @click="form.needPrint = 1" class="admin-button-com middle" style="width:140upx;" :class="form.needPrint == 1 ? 'blue' : 'default'">打印</button>
|
|
<button @click="form.needPrint = 1" class="admin-button-com middle" style="width:140upx;" :class="form.needPrint == 1 ? 'blue' : 'default'">打印</button>
|
|
|
</tui-list-cell>
|
|
</tui-list-cell>
|
|
|
|
|
|
|
|
- <tui-list-cell class="line-cell" :hover="false" :arrow="false" v-if="form.sendType == 2">
|
|
|
|
|
- <view class="tui-title">运费</view>
|
|
|
|
|
- <input type="digit" placeholder="请填写运费" v-model="form.sendCost" placeholder-class="tui-placeholder"/>
|
|
|
|
|
- </tui-list-cell>
|
|
|
|
|
-
|
|
|
|
|
<tui-list-cell class="line-cell" :hover="false" :arrow="false" >
|
|
<tui-list-cell class="line-cell" :hover="false" :arrow="false" >
|
|
|
<view class="tui-title">
|
|
<view class="tui-title">
|
|
|
<text>合计金额</text>
|
|
<text>合计金额</text>
|
|
@@ -179,7 +179,8 @@
|
|
|
</tui-list-cell>
|
|
</tui-list-cell>
|
|
|
|
|
|
|
|
<tui-list-cell class="line-cell" :hover="false" :arrow="true">
|
|
<tui-list-cell class="line-cell" :hover="false" :arrow="true">
|
|
|
- <view class="tui-title">配送日期</view>
|
|
|
|
|
|
|
+ <view class="tui-title" v-if="form.sendType == 1">取花日期</view>
|
|
|
|
|
+ <view class="tui-title" v-else>配送日期</view>
|
|
|
<picker mode="date" :value="form.reachDate" @change="bindDateChange" style="width:400upx;">
|
|
<picker mode="date" :value="form.reachDate" @change="bindDateChange" style="width:400upx;">
|
|
|
<view class="uni-input" v-if="form.reachDate==''" style="color:#CCCCCC;">请选择,默认当天</view>
|
|
<view class="uni-input" v-if="form.reachDate==''" style="color:#CCCCCC;">请选择,默认当天</view>
|
|
|
<view class="uni-input">{{form.reachDate}}</view>
|
|
<view class="uni-input">{{form.reachDate}}</view>
|
|
@@ -187,7 +188,8 @@
|
|
|
</tui-list-cell>
|
|
</tui-list-cell>
|
|
|
|
|
|
|
|
<tui-list-cell class="line-cell" :hover="false" :arrow="true">
|
|
<tui-list-cell class="line-cell" :hover="false" :arrow="true">
|
|
|
- <view class="tui-title">配送时间</view>
|
|
|
|
|
|
|
+ <view class="tui-title" v-if="form.sendType == 1">取花时间</view>
|
|
|
|
|
+ <view class="tui-title" v-else>配送时间</view>
|
|
|
<picker mode="multiSelector" :range="timeOptions" @change="bindTimeChange">
|
|
<picker mode="multiSelector" :range="timeOptions" @change="bindTimeChange">
|
|
|
<view class="uni-input" style="width:450upx;">{{form.reachPeriod}}<text style="margin-left:10upx;">前</text></view>
|
|
<view class="uni-input" style="width:450upx;">{{form.reachPeriod}}<text style="margin-left:10upx;">前</text></view>
|
|
|
</picker>
|
|
</picker>
|