index.wxml 1.4 KB

12345678910111213141516171819202122
  1. <!-- 查重 -->
  2. <van-popup show="{{ show }}" custom-class='popup' round position="bottom" custom-style="height: 100%;" bind:close="repClose">
  3. <view class="title">
  4. 当前项目疑似重复,以下为疑似重复项目
  5. <van-icon custom-class='icon' size='40rpx' name="cross" bindtap="repClose" />
  6. </view>
  7. <navigator url="#" class="enterprise" wx:for="{{repetitionList}}" wx:key="sa_projectid">
  8. <view class="enterprise_title">{{item.projectname}}</view>
  9. <view class="tag-box">
  10. <van-tag custom-class='tag' wx:for="{{item.tag_sys}}" wx:key="index" wx:for-item='tag' color='#3874f6' text-color='#fff' round>{{tag}}</van-tag>
  11. <van-tag custom-class='tag' wx:for="{{item.tag}}" wx:key="index" wx:for-item='tag' color='#FA8C16' text-color='#fff' round>{{tag}}</van-tag>
  12. </view>
  13. <view class="exp">项目状态:{{item.status ||' --'}}</view>
  14. <view class="exp">项目编号:{{item.projectnum ||' --'}}</view>
  15. <view class="exp">项目地址:{{item.address ||' --'}}</view>
  16. <view class="exp">项目类型:{{item.projecttype ||' --'}}</view>
  17. <view class="exp">领域:{{item.tradefield||' --'}}</view>
  18. <view class="exp">品牌:{{item.brandname||' --'}}</view>
  19. <view class="exp">负责人:{{item.leader[0].name||' --'}}</view>
  20. <!-- <view class="exp">手机号:{{item.phonenumber||" --"}}</view> -->
  21. </navigator>
  22. </van-popup>