|
@@ -34,10 +34,11 @@ export default {
|
|
|
console.log(this.companyList)
|
|
|
const stepList = []
|
|
|
// 去授权引导 -- 客户状态生效且登记薄状态为未失效
|
|
|
- const tipDom = document.querySelectorAll(`.authorization-${outerIndex}-${innerIndex}:nth-child(1)`).length
|
|
|
+ const tipDom = document.querySelectorAll(`.authorization-${outerIndex}-${innerIndex}:nth-child(1)`)
|
|
|
const tipCondition = this.companyList[outerIndex].customerStatus === '生效' &&
|
|
|
this.companyList[outerIndex].vipAccountBasicInfoList[innerIndex].accountStatus === 1 &&
|
|
|
this.companyList[outerIndex].vipAccountBasicInfoList[innerIndex].authorizationStatus !== 4
|
|
|
+ console.log(tipDom)
|
|
|
if (tipDom && tipCondition) {
|
|
|
stepList.push({
|
|
|
element: `.authorization-${outerIndex}-${innerIndex}:nth-child(1)`,
|
|
@@ -73,6 +74,7 @@ export default {
|
|
|
const tipActive = document.querySelectorAll('.activation:nth-child(1)').length
|
|
|
const tipActiveCondition = this.companyList[outerIndex].customerStatus === '生效' &&
|
|
|
this.companyList[outerIndex].vipAccountBasicInfoList[innerIndex].accountStatus === 1 &&
|
|
|
+ this.companyList[outerIndex].vipAccountBasicInfoList[innerIndex].bindAccountInfoList.length &&
|
|
|
this.companyList[outerIndex].vipAccountBasicInfoList[innerIndex].bindAccountInfoList[0].bindSts === 2
|
|
|
|
|
|
if (tipActive && tipActiveCondition) {
|
|
@@ -106,7 +108,7 @@ export default {
|
|
|
element: `#new-account-${index}`,
|
|
|
popover: {
|
|
|
title: '授权认证超时',
|
|
|
- description: '超过授权次数或授权失效,请重新进行账户开通',
|
|
|
+ description: '超过授权次数或授权失效,请重新进行账户开通'
|
|
|
}
|
|
|
})
|
|
|
}
|