规范化api, 进行中。。。
This commit is contained in:
@@ -176,7 +176,7 @@ export default {
|
||||
var result = false;
|
||||
var that = this;
|
||||
await that.$axios
|
||||
.post(`/api/platforms/exit/${deviceGbId}`)
|
||||
.post(`/api/platform/exit/${deviceGbId}`)
|
||||
.then(function (res) {
|
||||
result = res.data;
|
||||
})
|
||||
|
||||
@@ -119,7 +119,7 @@ export default {
|
||||
var result = false;
|
||||
var that = this;
|
||||
await that.$axios
|
||||
.post(`/api/platforms/exit/${deviceGbId}`)
|
||||
.post(`/api/platform/exit/${deviceGbId}`)
|
||||
.then(function (res) {
|
||||
result = res.data;
|
||||
})
|
||||
|
||||
@@ -72,7 +72,7 @@ export default {
|
||||
|
||||
this.$axios({
|
||||
method:"post",
|
||||
url:"/api/platforms/updateChannelForGB",
|
||||
url:"/api/platform/update_channel_for_gb",
|
||||
data:{
|
||||
platformId: that.platformId,
|
||||
channelReduces: that.chooseData
|
||||
|
||||
@@ -149,7 +149,7 @@ export default {
|
||||
if (Object.keys(addData).length >0) {
|
||||
that.$axios({
|
||||
method:"post",
|
||||
url:"/api/platforms/updateChannelForGB",
|
||||
url:"/api/platform/update_channel_for_gb",
|
||||
data:{
|
||||
platformId: that.platformId,
|
||||
channelReduces: addData
|
||||
@@ -162,8 +162,8 @@ export default {
|
||||
}
|
||||
if (Object.keys(delData).length >0) {
|
||||
that.$axios({
|
||||
method:"post",
|
||||
url:"/api/platforms/delChannelForGB",
|
||||
method:"delete",
|
||||
url:"/api/platform/del_channel_for_gb",
|
||||
data:{
|
||||
platformId: that.platformId,
|
||||
channelReduces: delData
|
||||
@@ -182,7 +182,7 @@ export default {
|
||||
getChannelList: function () {
|
||||
let that = this;
|
||||
|
||||
this.$axios.get(`/api/platforms/channelList`, {
|
||||
this.$axios.get(`/api/platform/channel_list`, {
|
||||
params: {
|
||||
page: that.currentPage,
|
||||
count: that.count,
|
||||
|
||||
@@ -142,7 +142,7 @@ export default {
|
||||
if (Object.keys(delData).length >0) {
|
||||
console.log(delData)
|
||||
that.$axios({
|
||||
method:"post",
|
||||
method:"delete",
|
||||
url:"/api/gbStream/del",
|
||||
data:{
|
||||
gbStreams: delData,
|
||||
@@ -152,6 +152,7 @@ export default {
|
||||
}).catch(function (error) {
|
||||
console.log(error);
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
},
|
||||
|
||||
@@ -164,7 +164,7 @@ export default {
|
||||
openDialog: function (platform, callback) {
|
||||
var that = this;
|
||||
this.$axios
|
||||
.get(`/api/platforms/serverconfig`)
|
||||
.get(`/api/platform/server_config`)
|
||||
.then(function (res) {
|
||||
console.log(res);
|
||||
that.platform.deviceGBId = res.data.username;
|
||||
@@ -189,7 +189,7 @@ export default {
|
||||
console.log("onSubmit");
|
||||
var that = this;
|
||||
that.$axios
|
||||
.post(`/api/platforms/save`, that.platform)
|
||||
.post(`/api/platform/save`, that.platform)
|
||||
.then(function (res) {
|
||||
console.log(res);
|
||||
console.log(res.data == "success");
|
||||
@@ -219,7 +219,7 @@ export default {
|
||||
var result = false;
|
||||
var that = this;
|
||||
await that.$axios
|
||||
.post(`/api/platforms/exit/${deviceGbId}`)
|
||||
.post(`/api/platform/exit/${deviceGbId}`)
|
||||
.then(function (res) {
|
||||
result = res.data;
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user