| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <view>
- <view wx:if="{{content.sat_campaignid == 0}}" class="header">
- <view>
- <view class="label">实际发生费用</view>
- <view class="value">{{allCost}}元</view>
- </view>
- <view>
- <view class="label">产品培训总费用</view>
- <view class="value">{{trainingCost}}元</view>
- </view>
- <view>
- <view class="label">其他费用</view>
- <view class="value">{{otheramount1}}元</view>
- </view>
- </view>
- <Yl_Headline title='基本信息' type='switch' switchLabel='仅显示必填信息' switch='{{showAll}}' bind:callBack='onChange' />
- <Yl_field id='Form' form='{{form}}' showAll='{{!showAll}}' bind:onConfirm='onConfirm' bind:interrupt='interrupt' />
- </view>
- <block wx:if="{{content.sat_campaignid == 0}}">
- <view class="head">
- <view class="count">
- 参与活动医生
- </view>
- <view class="expand">
- <navigator url="#" class="but" bindtap="insetr">
- <van-icon name="plus" />
- </navigator>
- </view>
- </view>
- <view class="project-item" wx:for="{{list}}" wx:key="sa_doctorid">
- <view class="main">
- <view class="label">
- {{item.doctorname}}
- </view>
- <view class="replenish">
- <text style="color: #666;">职称:</text>
- <text>{{item.professional}}</text>
- </view>
- <view class="replenish">
- <text style="color: #666;">科室:</text>
- <text>{{item.hospitaldepname || '--'}}</text>
- </view>
- <view class="replenish">
- <text style="color: #666;">医院:</text>
- <text>{{item.hospitalname || item.enterprisename || '--'}}</text>
- </view>
- <view class="bottom">
- <text style="color: #666;">产品培训费用:</text>
- <input placeholder="费用(元)" type="digit" value="{{item.amount ||''}}" bindblur="changeAmount"
- data-index="{{index}}" />
- </view>
- <view class="iconfont-box" data-item="{{item}}" bind:tap="deleteItem">
- <view class="iconfont icon-shanchu1" />
- </view>
- </view>
- </view>
- </block>
- <view style="height: 160rpx;" />
- <view class="new-footer" style="padding-bottom:12rpx;">
- <van-button custom-class="new-submit {{content.sa_doctorid ? 'orange' : 'blue' }}" disabled='{{disabled ||loading}}'
- loading='{{loading}}' bindclick='submit'>
- {{content.sa_doctorid ? '保存' : '确定'}}
- </van-button>
- </view>
|