添加下单联系人

master
xcw 2023-03-29 14:53:16 +08:00
parent b6abe3a992
commit 75a7cd2087
3 changed files with 13 additions and 1 deletions

View File

@ -113,7 +113,7 @@
<u-empty vue-id="61167fc6-2" text="暂无更多" class="data-v-e5a6e2f8" bind:__l="__l"></u-empty> <u-empty vue-id="61167fc6-2" text="暂无更多" class="data-v-e5a6e2f8" bind:__l="__l"></u-empty>
</block> </block>
<view style="height:200rpx;" class="data-v-e5a6e2f8"></view> <view style="height:200rpx;" class="data-v-e5a6e2f8"></view>
<view data-event-opts="{{[['tap',[['lookTotal',['$event']]]]]}}" class="bot_total data-v-e5a6e2f8" bindtap="__e">总金额合计></view> <view wx:if="{{has_amount_view}}" data-event-opts="{{[['tap',[['lookTotal',['$event']]]]]}}" class="bot_total data-v-e5a6e2f8" bindtap="__e">总金额合计></view>
<uni-popup vue-id="61167fc6-3" type="bottom" background-color="#fff" data-ref="popup" data-event-opts="{{[['^touchmove',[['',['$event']]]]]}}" catch:touchmove="__e" class="data-v-e5a6e2f8 vue-ref" bind:__l="__l" vue-slots="{{['default']}}"> <uni-popup vue-id="61167fc6-3" type="bottom" background-color="#fff" data-ref="popup" data-event-opts="{{[['^touchmove',[['',['$event']]]]]}}" catch:touchmove="__e" class="data-v-e5a6e2f8 vue-ref" bind:__l="__l" vue-slots="{{['default']}}">
<view class="botwarp data-v-e5a6e2f8"> <view class="botwarp data-v-e5a6e2f8">
<view class="wa_li data-v-e5a6e2f8"> <view class="wa_li data-v-e5a6e2f8">

View File

@ -97,6 +97,7 @@
consume_type: "", consume_type: "",
money: "", money: "",
theme:"", theme:"",
place_order_contact:'',
remark: "", remark: "",
file_ids: "", file_ids: "",
BASE_IMG_URL: c.BASE_IMG_URL, BASE_IMG_URL: c.BASE_IMG_URL,
@ -294,6 +295,7 @@
saveFollow: function() { saveFollow: function() {
var i = this.money, var i = this.money,
theme = this.theme, theme = this.theme,
place_order_contact = this.place_order_contact,
agreementId = this.agreementId, agreementId = this.agreementId,
s = this.remark, s = this.remark,
c = this.imgList, c = this.imgList,
@ -314,6 +316,7 @@
// consume_time: t, // consume_time: t,
consume_type: n, consume_type: n,
theme:theme, theme:theme,
place_order_contact:place_order_contact,
contract_id:agreementId, contract_id:agreementId,
money: i, money: i,
remark: s, remark: s,

View File

@ -48,6 +48,15 @@
</view> </view>
</block> </block>
<block wx:if="{{!isRequired}}">
<view class="fllow_form">
<view>下单联系人</view>
<view class="form_input"><input class="{{[place_order_contact?'valueActive':'']}}" type="text" placeholder-style="font-size:30rpx;color: #999;" placeholder="请输入下单联系人" data-event-opts="{{[['input',[['__set_model',['','place_order_contact','$event',[]]]]]]}}" value="{{place_order_contact}}" bindinput="__e" /></view>
</view>
</block>
<block wx:if="{{!isRequired}}"> <block wx:if="{{!isRequired}}">
<view class="fllow_area"> <view class="fllow_area">
<view class="area_head">备注</view><textarea class="{{[remark?'valueActive':'']}}" placeholder="请输入备注" placeholder-style="color:#999" data-event-opts="{{[['input',[['__set_model',['','remark','$event',[]]]]]]}}" value="{{remark}}" bindinput="__e"></textarea></view> <view class="area_head">备注</view><textarea class="{{[remark?'valueActive':'']}}" placeholder="请输入备注" placeholder-style="color:#999" data-event-opts="{{[['input',[['__set_model',['','remark','$event',[]]]]]]}}" value="{{remark}}" bindinput="__e"></textarea></view>