|
@@ -171,6 +171,9 @@ $(function () {
|
|
success: function(res) {
|
|
success: function(res) {
|
|
if (res && Array.isArray(res.data)) {
|
|
if (res && Array.isArray(res.data)) {
|
|
_this.powerList = res.data
|
|
_this.powerList = res.data
|
|
|
|
+ if (_this.checkPower()) {
|
|
|
|
+ $('.contact_content button').text('立即使用')
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|
|
})
|
|
@@ -179,10 +182,15 @@ $(function () {
|
|
var options = options || {}
|
|
var options = options || {}
|
|
simpleLeaveSource.doLeaveInfo(source, options)
|
|
simpleLeaveSource.doLeaveInfo(source, options)
|
|
},
|
|
},
|
|
|
|
+ checkPower: function () {
|
|
|
|
+ var _this = this
|
|
|
|
+ var power = 'bi_yx_wyzb'
|
|
|
|
+ return Array.isArray(_this.powerList) && this.powerList.indexOf(power) !== -1
|
|
|
|
+ },
|
|
initEvents: function() {
|
|
initEvents: function() {
|
|
var _this = this
|
|
var _this = this
|
|
$('.contact button').on('click', function() {
|
|
$('.contact button').on('click', function() {
|
|
- if (Array.isArray(_this.powerList) && _this.powerList.indexOf('bi_yx_wyzb') !== -1) {
|
|
|
|
|
|
+ if (_this.checkPower()) {
|
|
_this.toProductPage()
|
|
_this.toProductPage()
|
|
} else {
|
|
} else {
|
|
_this.doLeaveInfo('pc_property_consult')
|
|
_this.doLeaveInfo('pc_property_consult')
|