123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <web-view src="{{weburl}}"></web-view>
- <!-- <view wx:if="{{type==0&&resourceobj.respool.length>0}}" class="fontr28 fontfpr color384855 poolmsg">
- <view class="lhr48">分配给资源库:</view>
- <view class="lhr40 mgt16">
- <view wx:for="{{resourceobj.respool}}">
- <view>{{item.name}} 资源库 {{item.count}}条</view>
- </view>
- </view>
- </view>
- <view wx:if="{{type==0}}" class="bgbox bgF0F4F7"></view>
- <view wx:if="{{type==0&&resourceobj.emp.length>0}}" class="fontr28 fontfpr color384855 poolmsg">
- <view class="lhr48">分配给员工:</view>
- <view class=" mgt16">
- <view wx:for="{{resourceobj.emp}}" class="personbox clearfix">
- <image class="pull-left headimg" src="{{item.headimgurl?item.headimgurl:'../../../img/default.png'}}"></image>
- <view class="pull-left lhr48">{{item.name}} {{item.count}}条</view>
- </view>
- </view>
- </view>
- <view wx:if="{{type==1}}" class="resourcelistbox">
- <view class="fontr36 fontfpm lhr88 tcenter">{{pooltype==1?"选择客户":'选择员工'}}</view>
- <van-checkbox-group wx:if="{{pooltype==1}}" value="{{ result }}" bind:change="onChange">
- <van-cell-group>
- <van-cell wx:for="{{customerlist}}" wx:key="index" value-class="value-class" title="{{ item.name}}{{resourcetype=='topool'?' 资源库':''}}" clickable data-index="{{ index }}" bind:click="toggle" >
- <van-checkbox catch:tap="noop" class="checkboxes-{{ index }} checkbox" name="{{ item.id}}" />
- </van-cell>
- </van-cell-group>
- </van-checkbox-group>
- <van-radio-group wx:if="{{pooltype==2}}" value="{{radio}}" bind:change="onChanget">
- <van-cell-group>
- <van-cell wx:for="{{customerlist}}" wx:key="index" title="{{ item.name}}{{resourcetype=='topool'?' 资源库':''}}" clickable
- data-name="{{item.id}}" bind:click="onClick">
- <van-radio slot="right-icon" name="{{item.id}}" />
- </van-cell>
- </van-cell-group>
- </van-radio-group>
- </view>
- <view wx:if="{{type==1}}" class="selectbox clearfix fontfpr fontr28">
- <view data-type="1" bindtap="selectap" class="width50_ pull-left tcenter colorfff bg249efb">选择客户</view>
- <view data-type="2" bindtap="selectap" class="width50_ pull-left tcenter bgD4E4ED colorfff">选择员工</view>
- </view>
- <view wx:if="{{type==1&&pooltype==2}}" bindtap="surebatchtap" class="surebatchtbox fontfpr fontr32">确定分配</view> -->
|