1234567891011121314151617181920212223242526272829303132333435363738 |
- <cu-custom bgColor="bg-gradual-blue" isBack>
- <view slot="backText">返回</view>
- <view slot="content">{{title}}</view>
- </cu-custom>
- <view class="section">
- <view wx:for="{{value.value}}" wx:key="index" class="item margin-bottom-sm bg-white padding">
- <view class="type padding-bottom text-xl text-black">{{item.status_text}}</view>
- <view class="text-cut lheight text-lg">
- <text class="title">姓名</text>
- <text class=" text-grey">{{item.name}}</text>
- </view>
- <view class="text-cut lheight text-lg">
- <text class="title">手机号</text>
- <text class=" text-grey">{{item.tel}}</text>
- </view>
- <view class="text-cut lheight text-lg">
- <text class="title">产品</text>
- <text class=" text-grey">{{item.laompany_text}}</text>
- </view>
- <view class="text-cut lheight text-lg">
- <text class="title">创建时间</text>
- <text class=" text-grey">{{item.create_time_f}}</text>
- </view>
- <view class="text-cut lheight text-lg">
- <text class="title">创建者</text>
- <text class=" text-grey">{{item.create_user_text}}</text>
- </view>
- <view class="btns">
- <button bindtap="btnsFunc" wx:for="{{btns}}" wx:for-item="it" wx:for-index="ind" data-index="{{ind}}"
- data-id="{{item.id}}" data-order="{{index}}" data-index="{{ind}}"
- wx:if="{{it.type==type && (it.type != 'provided' || item.status == 2 || item.status==0 || it.name == '查看')}}"
- class="cu-btn round bg-blue button-hover margin-left margin-top" wx:key="ind">{{it.name}}</button>
- </view>
- </view>
- <view class="cu-load text-grey {{value.page > value.totalPage ?'over':'loading'}}"></view>
- <van-empty wx:if="{{value.value.length == 0}}" description="暂无商品" />
- </view>
- <van-dialog id="van-dialog" />
|