|
@@ -132,7 +132,7 @@ const devFucMixin = {
|
|
};
|
|
};
|
|
},
|
|
},
|
|
|
|
|
|
-
|
|
|
|
|
|
+
|
|
mounted() {
|
|
mounted() {
|
|
functionList({
|
|
functionList({
|
|
status: 0,
|
|
status: 0,
|
|
@@ -427,6 +427,32 @@ const platformMixin = {
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
// 通过音频类型获取对应的平台
|
|
// 通过音频类型获取对应的平台
|
|
|
|
+ // {"data":[{"id":"5","name":"音乐随身听","status":1,"isThird":null,"updateTime":1684215874,"createTime":0,
|
|
|
|
+ // "audioType":"10,9,11,15,6,8,12","joinType":"2,3"},{"id":"6","name":"QQ音乐","status":1,"isThird":null,
|
|
|
|
+ // "updateTime":1666345649,"createTime":0,"audioType":"10,11,9,15","joinType":"1"},
|
|
|
|
+ // {"id":"25","name":"验收测试环境3","status":1,"isThird":null,
|
|
|
|
+ // "updateTime":1664274267,"createTime":1663146321,"audioType":"10,11,9,15","joinType":"1"}
|
|
|
|
+ // ,{"id":"72","name":"测试3","status":1,"isThird":null,"updateTime":1667455705,
|
|
|
|
+ // "createTime":1664173454,"audioType":"2,8,6,11,10,9,12,15","joinType":"1,3"},
|
|
|
|
+ // {"id":"82","name":"测试本地管理","status":1,"isThird":null,"updateTime":1684208429,"createTime":1684206852,
|
|
|
|
+ // "audioType":"2,6,8,9,10,11,12,15","joinType":"2"},{"id":"99","name":"人民音乐出版社","status":1,
|
|
|
|
+ // "isThird":null,"updateTime":1731041082,"createTime":1711004056,"audioType":"6,8,9,10,11,15,12",
|
|
|
|
+ // "joinType":"2"}],"code":0,"message":"","requestId":null,"success":true}
|
|
|
|
+
|
|
|
|
+ /// 喜马拉雅:12
|
|
|
|
+ // 获取对应平台====5==音乐随身听==2,3
|
|
|
|
+ // 获取对应平台====6==QQ音乐==1
|
|
|
|
+ // 获取对应平台====7==HIFIVE音加加==1
|
|
|
|
+ // 获取对应平台====7==HIFIVE音加加==1
|
|
|
|
+ // 获取对应平台====8==看见音乐==1
|
|
|
|
+ // 获取对应平台====9==酷狗音乐==1
|
|
|
|
+ // 获取对应平台====10==爱听歌单音乐==1
|
|
|
|
+ // 获取对应平台====21==测试环境==2
|
|
|
|
+ // 获取对应平台====25==验收测试环境3==1
|
|
|
|
+ // 获取对应平台====72==测试3==1,3
|
|
|
|
+ // 获取对应平台====82==测试本地管理==2
|
|
|
|
+ // 获取对应平台====99==人民音乐出版社==2
|
|
|
|
+
|
|
getPlatform(e) {
|
|
getPlatform(e) {
|
|
this.platformOptions = [];
|
|
this.platformOptions = [];
|
|
return new Promise((resolve, reject) => {
|
|
return new Promise((resolve, reject) => {
|
|
@@ -441,6 +467,11 @@ const platformMixin = {
|
|
})
|
|
})
|
|
);
|
|
);
|
|
e ? (this.platformTypeOptions = this.platformOptions) : "";
|
|
e ? (this.platformTypeOptions = this.platformOptions) : "";
|
|
|
|
+ res.data.map((i) => {
|
|
|
|
+ console.log("获取对应平台====" + Number(i.id) + "==" + i.name + "==" + i.joinType);
|
|
|
|
+ return i;
|
|
|
|
+ });
|
|
|
|
+
|
|
resolve(this.platformOptions, this.platformTypeOptions);
|
|
resolve(this.platformOptions, this.platformTypeOptions);
|
|
}
|
|
}
|
|
})
|
|
})
|