| 12345678910111213141516171819202122232425262728293031 |
- <van-tabs wx:if="{{tabShow}}" bind:change="onChange" title-active-color='#3874F6' color='#3874F6'>
- <van-tab title="费用">
- <view class="head">
- <view class="count">费用</view>
- <view class="expand">
- <navigator wx:if="{{!disabled}}" url="#" class="but" bindtap="addExpense">
- <van-icon name="plus" />
- </navigator>
- </view>
- </view>
- <List list='{{list}}' disabled='{{!disabled}}' bindchange='changeExpense' bindhandleDetele='handleDetele' />
- </van-tab>
- <van-tab title="报价说明">
- <view class="head">
- <view class="count">报价说明</view>
- <view class="expand">
- <navigator wx:if="{{!disabled}}" url="#" class="but" bindtap="addQuotedpricenotes">
- <van-icon name="plus" />
- </navigator>
- </view>
- </view>
- <view class="exprow" wx:for="{{quotedpricenotes}}" wx:key="index">
- <view style="margin-right: {{index>=2?'0':'30rpx'}};">{{item}}</view>
- <text wx:if="{{index>=2}}" wx:if="{{!disabled}}" class="iconfont icon-guanlian-shanchu" bindtap="deleteItem" data-index="{{index}}"></text>
- </view>
- </van-tab>
- </van-tabs>
- <van-dialog use-slot title="添加报价说明" show="{{ dialog }}" show-cancel-button confirm-button-color='#3874F6' bind:confirm='onConfirm' bind:cancel='onCancel'>
- <textarea placeholder="请填写" value="{{newExplain}}" bindinput="areaInput" class="textarea" />
- </van-dialog>
|