|
|
@@ -1,4 +1,4 @@
|
|
|
- <!--packageA/activity/modules/list/index.wxml-->
|
|
|
+<!--packageA/activity/modules/list/index.wxml-->
|
|
|
<navigator class="offer-list" url="/packageA/publicClue/detail?sat_orderclueid={{item.sat_orderclueid}}" wx:for="{{list}}" wx:key="item.sat_orderclueid">
|
|
|
<view class="title">
|
|
|
<text class="line-1">{{item.enterprisename_customer}}</text>
|
|
|
@@ -9,16 +9,13 @@
|
|
|
<view class="exp line-1">手机号:<text>{{item.phonenumber || '--'}}</text></view>
|
|
|
<view class="exp line-1">来源:<text>{{item.cluesource ? item.cluesource : '--'}}</text></view>
|
|
|
<view class="exp line-1">线索类型:<text>{{item.cluetype ? item.cluetype : '--'}}</text></view>
|
|
|
-
|
|
|
- <navigator wx:if="{{item.status=='待分配'}}" class="action" catchtap="distribution" data-item="{{item}}">
|
|
|
- <view style="color: red;margin-right: 30rpx;" class="iconfont icon-dibu-genghuanjingxiaoshang"></view>
|
|
|
- </navigator>
|
|
|
+ <van-button wx:if="{{item.status=='待分配'}}" custom-class='action' catchtap="distribution" data-item="{{item}}">分配</van-button>
|
|
|
</navigator>
|
|
|
|
|
|
<My_empty wx:if="{{list.length == 0}}" />
|
|
|
|
|
|
<wxs module="backColor">
|
|
|
- module.exports.getColor = function(status) {
|
|
|
+ module.exports.getColor = function (status) {
|
|
|
var color = null;
|
|
|
if (status == '待分配') {
|
|
|
color = '#FA8C16';
|