|
@@ -103,8 +103,14 @@ export default {
|
|
|
},
|
|
|
playAd(item) {
|
|
|
this.submit(item, '', 2)
|
|
|
- if (item.actionType === '1' || item.actionType === '3' || item.actionType === '4' || item.actionType === '5' || item.actionType === '6') {
|
|
|
- window.open(item.clickUrl, '_blank', '')
|
|
|
+ if (item.actionType === '1' || item.actionType === '3' || item.actionType === '5' || item.actionType === '6') {
|
|
|
+ window.open(item.clickUrl, '_blank')
|
|
|
+ } else if (item.actionType === '4') {
|
|
|
+ if (this.$userAgent.isIos) {
|
|
|
+ window.open(item.deeplink, '_blank')
|
|
|
+ } else {
|
|
|
+ window.open(item.clickUrl, '_blank')
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
submit(item, ele, flag) {
|