|
@@ -29,6 +29,10 @@
|
|
|
{{scope.row.CompanyName}}
|
|
|
</span>
|
|
|
<span v-else :class="scope.row.BtnItem.BtnView?'customName':''" :style="{color:scope.row.BtnItem.BtnView?'#409EFF':'#606266',cursor:scope.row.BtnItem.BtnView?'pointer':'text'}" @click="goDetail(scope.row)">{{scope.row.CompanyName}}</span>
|
|
|
+ <el-tooltip content="此客户存在长期且反复申请试用,但从未签约的情况,请谨慎领取" placement="top" :open-delay="500"
|
|
|
+ v-if="RaiSellerRole && scope.row.IsScrounge == 1">
|
|
|
+ <img width="16" style="cursor: pointer;" src="../../assets/img/icons/warning_triangle_yellow.png" />
|
|
|
+ </el-tooltip>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
@@ -460,6 +464,8 @@
|
|
|
<div style="padding:20px 0;"></div>
|
|
|
</el-dialog>
|
|
|
<!-- 查看备注弹窗 -->
|
|
|
+ <!-- 权限详情弹框 -->
|
|
|
+ <permission-detail :isPermissionDetailShow.sync="isPermissionDetailShow" :researchDetailId.sync="researchDetailId"/>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -471,10 +477,18 @@ import Cauthlist from './compontents/CauthList.vue'
|
|
|
import CompleteInfo from './compontents/CompleteInfo.vue'
|
|
|
import ContractInfo from './compontents/ContractInfo.vue'
|
|
|
import mPage from '@/components/mPage.vue'
|
|
|
+import PermissionDetail from './compontents/permissionDetail.vue'
|
|
|
export default {
|
|
|
name:'',
|
|
|
- components: {Capplydia,Contactdia,Cauthlist,CompleteInfo,ContractInfo,mPage},
|
|
|
+ components: {Capplydia,Contactdia,Cauthlist,CompleteInfo,ContractInfo,mPage, PermissionDetail},
|
|
|
computed:{
|
|
|
+ Role() {
|
|
|
+ let role = localStorage.getItem('Role') || '';
|
|
|
+ return role;
|
|
|
+ },
|
|
|
+ RaiSellerRole(){
|
|
|
+ return ['rai_seller','rai_admin','admin'].includes(this.Role)
|
|
|
+ },
|
|
|
RoleType() {
|
|
|
let type = localStorage.getItem('RoleType') || '';
|
|
|
return type;
|
|
@@ -628,13 +642,16 @@ export default {
|
|
|
BtnTurnPositive: '申请转正',
|
|
|
BtnUpdate: '续约申请',
|
|
|
BtnView: '查看权限',
|
|
|
- BtnRemarkView: '备注'
|
|
|
+ BtnRemarkView: '备注',
|
|
|
+ IsResearchShow:'研选详情'
|
|
|
}, // 按钮命令列表
|
|
|
lookRemarkTitle:'',//查看备注标题
|
|
|
lookRemarkList:[],//查看备注列表
|
|
|
lookRemarkTextarea:'',//备注的文本框
|
|
|
isRemarkLook:false ,////查看备注弹窗
|
|
|
lookRemarkItem:{},////查看备注的item项
|
|
|
+ isPermissionDetailShow:false ,// 权限详情 弹框
|
|
|
+ researchDetailId:0,
|
|
|
};
|
|
|
},
|
|
|
/* 页面跳转前记录参数 */
|
|
@@ -738,7 +755,7 @@ export default {
|
|
|
}).then(res => {
|
|
|
if(res.Ret === 200) {
|
|
|
this.tableData = res.Data?res.Data.List:[];
|
|
|
- this.pageinfo.total=res.Data.Paging.Totals
|
|
|
+ this.pageinfo.total=res.Data && res.Data.Paging ? res.Data.Paging.Totals : 0
|
|
|
this.tableData.forEach(item => {
|
|
|
item.ApproveStatus = item.ApproveStatus=='待审批'?'待审批':''
|
|
|
})
|
|
@@ -778,8 +795,18 @@ export default {
|
|
|
itemclickHandle(query) {
|
|
|
if(query.type == '申请转正') {
|
|
|
this.applyTurn(query.data)
|
|
|
- }else if(query.type == '申请延期' || query.type == '申请解冻' || query.type == '申请领取') {
|
|
|
+ }else if(query.type == '申请延期' || query.type == '申请解冻') {
|
|
|
this.applyHandle(query.type,query.data)
|
|
|
+ }else if(query.type == '申请领取') {
|
|
|
+ if(this.RaiSellerRole && query.data.IsScrounge == 1){
|
|
|
+ this.$confirm('此客户存在长期且反复申请试用,但从未签约的情况,确定要领取吗?','申请领取',{
|
|
|
+ type:'warning'
|
|
|
+ }).then(() => {
|
|
|
+ this.applyHandle('申请领取',query.data)
|
|
|
+ }).catch(() => {});
|
|
|
+ }else{
|
|
|
+ this.applyHandle('申请领取',query.data)
|
|
|
+ }
|
|
|
}else if(query.type == '修改销售') {
|
|
|
this.updateSale(query.data);
|
|
|
}else if(query.type == '启用' || query.type == '暂停') {
|
|
@@ -802,9 +829,19 @@ export default {
|
|
|
this.addAgreement(query.data)
|
|
|
this.addAgreement(query.data)
|
|
|
}else if(query.type=='领取客户'){
|
|
|
- this.receiveHandle(query.data)
|
|
|
+ if(this.RaiSellerRole && query.data.IsScrounge == 1){
|
|
|
+ this.$confirm('此客户存在长期且反复申请试用,但从未签约的情况,确定要领取吗?','领取客户',{
|
|
|
+ type:'warning'
|
|
|
+ }).then(() => {
|
|
|
+ this.receiveHandle(query.data)
|
|
|
+ }).catch(() => {})
|
|
|
+ }else{
|
|
|
+ this.receiveHandle(query.data)
|
|
|
+ }
|
|
|
}else if(query.type=='备注'){
|
|
|
this.lookRemarkHandle(query.data)
|
|
|
+ }else if(query.type=='研选详情'){
|
|
|
+ this.researchDetailHandle(query.data)
|
|
|
}
|
|
|
},
|
|
|
/* 查看权限 */
|
|
@@ -1068,6 +1105,16 @@ export default {
|
|
|
let flag=await this.getCustomerDetail(item.CompanyId,0)
|
|
|
if(flag) return
|
|
|
|
|
|
+ if(this.RaiSellerRole && item.IsScrounge == 1){
|
|
|
+ // 已经弹过二次确认弹窗 避免再一次的弹窗
|
|
|
+ this.isPickLoss = true;
|
|
|
+ this.regionType = item.RegionType;
|
|
|
+ this.addCompanyId = item.CompanyId;
|
|
|
+ this.diaform.telCode='86'
|
|
|
+ this.isAddContact = true;
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
this.$confirm('是否确认领取该客户?','提示',{
|
|
|
type:'warning'
|
|
|
}).then(() => {
|
|
@@ -1076,8 +1123,8 @@ export default {
|
|
|
this.isPickLoss = true;
|
|
|
this.addCompanyId = item.CompanyId;
|
|
|
this.regionType=item.RegionType
|
|
|
+ this.diaform.telCode='86'
|
|
|
this.isAddContact = true;
|
|
|
-
|
|
|
// }else {
|
|
|
// customInterence.Pick({
|
|
|
// CompanyId:item.CompanyId,
|
|
@@ -1564,8 +1611,12 @@ export default {
|
|
|
})
|
|
|
}
|
|
|
},
|
|
|
- //删除备注
|
|
|
- async lookRemarkDelete(data){
|
|
|
+ researchDetailHandle(item) {
|
|
|
+ this.isPermissionDetailShow = true
|
|
|
+ this.researchDetailId = item.CompanyId
|
|
|
+ },
|
|
|
+ //删除备注
|
|
|
+ async lookRemarkDelete(data){
|
|
|
this.$confirm('备注删除后不可恢复,确认删除吗?','提示',{
|
|
|
confirmButtonText: '确定',
|
|
|
cancelButtonText: '取消',
|