|
@@ -18,7 +18,7 @@
|
18
|
18
|
<th width="10%">真实姓名</th>
|
19
|
19
|
<th width="15%">微信二维码图</th>
|
20
|
20
|
<th width="10%">在职状态</th>
|
21
|
|
- <th width="10%">二维码推广状态</th>
|
|
21
|
+ <th width="10%">接粉状态</th>
|
22
|
22
|
<th width="15%">操作</th>
|
23
|
23
|
</tr>
|
24
|
24
|
</thead>
|
|
@@ -32,15 +32,15 @@
|
32
|
32
|
<td class="text-c">{{$a['realname']}}</td>
|
33
|
33
|
<td class="text-c"><img width=100 src="{{$a['qrcode']}}" /></td>
|
34
|
34
|
<td class="text-c">@if($a['is_use'] == 1) 在职 @else 已离职@endif</td>
|
35
|
|
- <td class="text-c">@if($a['is_qrcode_use'] == 1) 已启用 @else 已禁用@endif</td>
|
|
35
|
+ <td class="text-c">@if($a['is_qrcode_use'] == 1) 可以接粉 @else 不可接粉@endif</td>
|
36
|
36
|
<td class="f-14 product-brand-manage">
|
37
|
37
|
@if($a['is_use'] == 1)
|
38
|
38
|
<a style="text-decoration:none" class="ml-5" onClick="admin_del(this, '{{$a['id']}}')" href="javascript:;" title="离职"><span class="btn btn-danger radius">设为离职</span></a>
|
39
|
39
|
|
40
|
40
|
@if($a['is_qrcode_use'] == 1)
|
41
|
|
- <a style="text-decoration:none" class="ml-5" onClick="qrcode_del(this, '{{$a['id']}}')" href="javascript:;" title="禁用"><span class="btn btn-danger radius">禁用二维码推广</span></a>
|
|
41
|
+ <a style="text-decoration:none" class="ml-5" onClick="qrcode_del(this, '{{$a['id']}}')" href="javascript:;" title="禁用"><span class="btn btn-danger radius">禁止接粉</span></a>
|
42
|
42
|
@else
|
43
|
|
- <a style="text-decoration:none" class="ml-5" onClick="qrcode_up(this, '{{$a['id']}}')" href="javascript:;" title="启用二维码"><span class="btn btn-success radius">启用二维码推广</span></a></td>
|
|
43
|
+ <a style="text-decoration:none" class="ml-5" onClick="qrcode_up(this, '{{$a['id']}}')" href="javascript:;" title="启用二维码"><span class="btn btn-success radius">开启接粉</span></a></td>
|
44
|
44
|
@endif
|
45
|
45
|
|
46
|
46
|
@else
|