|
@@ -87,14 +87,22 @@ export default {
|
|
|
dialogVisible(val) {
|
|
|
if (val) {
|
|
|
this.dialogForm.platformId = this.channelType === 16 ? 3 : this.channelType === 17 ? 2 : null
|
|
|
+ this.getPlatform({
|
|
|
+ audioType: this.dialogForm.audioType
|
|
|
+ })
|
|
|
this.getList()
|
|
|
}
|
|
|
},
|
|
|
channelType(val) {
|
|
|
- this.getPlatform({
|
|
|
- audioType: this.dialogForm.audioType = this.channelOptions[val][0].value
|
|
|
- })
|
|
|
+ this.dialogForm.audioType = this.channelOptions[val][0].value
|
|
|
},
|
|
|
+ 'dialogForm.audioType'(val) {
|
|
|
+ if(this.dialogVisible){
|
|
|
+ this.getPlatform({
|
|
|
+ audioType: val
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
},
|
|
|
computed: {
|
|
|
// 弹窗
|