|
|
@@ -190,6 +190,14 @@
|
|
|
</picker>
|
|
|
</tui-list-cell>
|
|
|
|
|
|
+ <tui-list-cell class="line-cell" :hover="false" :arrow="true">
|
|
|
+ <view class="tui-title">历史日期</view>
|
|
|
+ <picker mode="date" :value="form.historyDate" @change="bindHistoryDateChange" style="width:400upx;">
|
|
|
+ <view class="uni-input" v-if="form.historyDate==''" style="color:#CCCCCC;">请选择,默认当天</view>
|
|
|
+ <view class="uni-input">{{form.historyDate}}</view>
|
|
|
+ </picker>
|
|
|
+ </tui-list-cell>
|
|
|
+
|
|
|
<tui-list-cell class="line-cell" :hover="false" :arrow="false">
|
|
|
<view class="tui-title">备注</view>
|
|
|
<textarea style="height: 100upx;z-index:0" v-model="form.remark" placeholder-class="remark-class" placeholder=".." />
|
|
|
@@ -306,6 +314,7 @@ export default {
|
|
|
sendSide: "2",
|
|
|
sendDate: "",
|
|
|
sendTimeWant: "",
|
|
|
+ historyDate:"",
|
|
|
sendCost: "",
|
|
|
customId: "",
|
|
|
packCost:"",
|
|
|
@@ -450,6 +459,10 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
...mapActions(["initMerchantInfo"]),
|
|
|
+ bindHistoryDateChange(e){
|
|
|
+ let date = e.detail.value
|
|
|
+ this.form.historyDate = date
|
|
|
+ },
|
|
|
bindDateChange(e){
|
|
|
let date = e.detail.value
|
|
|
this.form.sendTimeWant = date
|