添加下单联系人

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>
</block>
<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']}}">
<view class="botwarp data-v-e5a6e2f8">
<view class="wa_li data-v-e5a6e2f8">

View File

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

View File

@ -48,6 +48,15 @@
</view>
</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}}">
<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>