| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <import src="detail.skeleton.wxml" />
- <template is="skeleton" wx:if="{{loading}}" />
- <!-- 头部 样式使用list样式 -->
- <view class="setclient-list-item" url="#">
- <view class="con">
- <view class="portrait {{detail.enterprisename <=2?'min-portrait':''}}">{{handle.getName(detail.enterprisename)}}
- </view>
- <view class="mian">
- <view class="label line-1">{{detail.enterprisename}}</view>
- <view class="tag-box" wx:if="{{appAuth.isdatatag}}">
- <Yl-tags id="Tags" add ownertable='sa_customers' bind:onGetList='onGetList'
- ownerid='{{sa_customersid}}' />
- </view>
- </view>
- <view class="extend">
- <!-- <Info /> -->
- </view>
- </view>
- </view>
- <!-- 简介 -->
- <Yl_Detail list="{{briefs}}">
- </Yl_Detail>
- <view style="height: 20rpx;" />
- <!-- 功能 -->
- <Yl_FunTabs list='{{tabsList}}' active='{{tabsActive}}' bind:onChenge="tabsChange">
- <Trace resource='医院管理' slot='跟进动态' id='Trace' ownertable='sa_customers' ownerid='{{sa_customersid}}'
- disabled="{{detail.status != '已终止'}}" ownerid1='{{detail.sys_enterpriseid}}' />
- <Preview slot='详细信息' list1='{{list1}}' list2='{{list2}}' />
- <Address slot='地址管理' id='Address'
- disabled="{{(per.query(options,'address')||isAdmin||isLeader)&& detail.status != '已终止'}}" />
- <Contract slot='合同' id='Contract' />
- <Record slot="操作" id="Record" ownertable='sa_customers' ownerid='{{sa_customersid}}' />
- <Files slot="附件" id="Files" ownertable='sa_customers' ownerid='{{sa_customersid}}'
- disabled="{{detail.status != '已终止'}}" />
- </Yl_FunTabs>
- <!-- 底部 -->
- <Yl_Tabbar wx:if="{{tabbarList.length}}" list='{{tabbarList}}' bind:callback="tabbarOnClick" />
- <!-- 处理四字 -->
- <wxs module="handle">
- module.exports.getName = function (name) {
- return name.substring(0, 4)
- };
- </wxs>
- <!-- 查重 -->
- <van-popup show="{{ repetitionShow }}" custom-class='popup' round position="bottom" custom-style="height: 100%;"
- bind:close="repClose">
- <view class="title">
- {{language['查重']||'查重'}}
- <van-icon custom-class='icon' size='40rpx' name="cross" bindtap="repClose" />
- </view>
- <navigator url="#" class="enterprise" wx:for="{{repetitionList}}" wx:key="sys_enterpriseid" data-item="{{item}}"
- bindtap="toRepDetail">
- <view class="enterprise_title" style="color: {{item.chars['enterprisename'] ? 'red' : '#666666'}}">
- {{item.enterprisename||" --"}}
- </view>
- <view class="tag-box">
- <van-tag custom-class='tag' wx:for="{{item.tag_sys}}" wx:key="index" wx:for-item='tag' color='#3874f6'
- text-color='#fff' round>{{language[tag]||tag}}</van-tag>
- <van-tag custom-class='tag' wx:for="{{item.tag}}" wx:key="index" wx:for-item='tag' color='#FA8C16'
- text-color='#fff' round>{{language[tag]||tag}}</van-tag>
- </view>
- <view class="exp" style="color: {{item.chars['address'] ? 'red' : '#666666'}}">
- {{language['地址管理']||'地址管理'}}:{{item.address||" --"}}
- </view>
- <view class="exp" style="color: {{item.chars['taxno'] ? 'red' : '#666666'}}">
- {{language['企业税号']||'企业税号'}}:{{item.taxno||" --"}}
- </view>
- <view class="exp" style="color: {{item.chars['type'] ? 'red' : '#666666'}}">
- {{language['医院类型']||'医院类型'}}:{{item.type||" --"}}
- </view>
- <view class="exp" style="color: {{item.chars['leader'] ? 'red' : '#666666'}}">
- {{language['负责人']||'负责人'}}:{{item.leader[0].name||" --"}}
- </view>
- <view class="exp" style="color: {{item.chars['phonenumber'] ? 'red' : '#666666'}}">
- {{language['手机号']||'手机号'}}:{{item.phonenumber||" --"}}
- </view>
- <view class="exp" style="color: {{item.chars['tradingstatus'] ? 'red' : '#666666'}}">
- {{language['成交状态']||'成交状态'}}:{{item.tradingstatus||" --"}}
- </view>
- <view class="exp" style="color: {{item.chars['followdate'] ? 'red' : '#666666'}}">
- {{language['最近跟进时间']||'最近跟进时间'}}:{{item.followdate||" --"}}
- </view>
- <view class="exp" style="color: {{item.chars['systemapp'] ? 'red' : '#666666'}}">
- {{language['归属应用']||'归属应用'}}:{{item.systemapp||" --"}}
- <block wx:if="{{item.systemapp=='回收站'}}">
- <icon style="padding-left:10rpx;" type="warn" size="11" color='red' />
- <text
- style="color: red;margin-left: 2rpx;">{{language['当前重复客户归属回收站,请联系管理处理!']||'当前重复客户归属回收站,请联系管理处理!'}}</text>
- </block>
- </view>
- </navigator>
- </van-popup>
- <wxs src='../../utils/wxmlQueryPer.wxs' module="per" />
- <!-- 更换合作模式 -->
- <van-action-sheet show="{{ changeMode }}" actions="{{ modeList }}" cancel-text="{{language['取消']||'取消'}}"
- bind:select='modeSelect' bind:cancel='modeCancel' bind:click-overlay='modeCancel' z-index='9999999' />
|