|
@@ -3338,6 +3338,7 @@ function checkTagDisabled () {
|
|
showPage: true,
|
|
showPage: true,
|
|
inResourceBIiframe: getParam('resource') === 'BI',
|
|
inResourceBIiframe: getParam('resource') === 'BI',
|
|
inBIPropertyiframe: getParam('property') === 'BIProperty', // 物业专版
|
|
inBIPropertyiframe: getParam('property') === 'BIProperty', // 物业专版
|
|
|
|
+ BISubtype: getParam('subtype'),
|
|
listState: {
|
|
listState: {
|
|
prevPageNum: 1,
|
|
prevPageNum: 1,
|
|
size: pageSize,
|
|
size: pageSize,
|
|
@@ -3658,6 +3659,11 @@ function checkTagDisabled () {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|
|
})
|
|
|
|
+ // url添加subtype参数回显信息类型---物业版专属功能
|
|
|
|
+ if(this.BISubtype) {
|
|
|
|
+ const BISubtypeArr = this.BISubtype.indexOf(',') !== -1 ? this.BISubtype.split(',') : [this.BISubtype]
|
|
|
|
+ this.setInfoTypeEcho(BISubtypeArr)
|
|
|
|
+ }
|
|
}
|
|
}
|
|
},
|
|
},
|
|
destroyed: function () {
|
|
destroyed: function () {
|
|
@@ -5476,6 +5482,14 @@ function checkTagDisabled () {
|
|
this.proxyTags = item.agency ? item.agency.split(',') : []
|
|
this.proxyTags = item.agency ? item.agency.split(',') : []
|
|
beforeSubmit('page-init-recovery');
|
|
beforeSubmit('page-init-recovery');
|
|
},
|
|
},
|
|
|
|
+ // 回显信息类型下拉框筛选条件
|
|
|
|
+ setInfoTypeEcho: function (param) {
|
|
|
|
+ // 回显信息类型下拉组件
|
|
|
|
+ try{
|
|
|
|
+ this.$refs.selectInfoType.initData()
|
|
|
|
+ this.$refs.selectInfoType.processingsubtype(param)
|
|
|
|
+ }catch(e){}
|
|
|
|
+ },
|
|
// 删除筛选项
|
|
// 删除筛选项
|
|
onDeleteFilter: function (id) {
|
|
onDeleteFilter: function (id) {
|
|
var _this = this
|
|
var _this = this
|