喇叭设备同步
This commit is contained in:
parent
e03113f25a
commit
96bdd862c1
|
@ -12,7 +12,7 @@ const DEFAULT_CONFIG = {
|
|||
CORE_VER: "1.6.3",
|
||||
|
||||
//接口地址
|
||||
API_URL: process.env.NODE_ENV === 'development' && process.env.VUE_APP_PROXY === 'true' ? "/api" : process.env.VUE_APP_API_BASEURL,
|
||||
API_URL: process.env.NODE_ENV === 'development' && process.env.VUE_APP_PROXY === 'false' ? "/api" : process.env.VUE_APP_API_BASEURL,
|
||||
|
||||
//请求超时
|
||||
TIMEOUT: 10000,
|
||||
|
|
|
@ -142,7 +142,7 @@ export default {
|
|||
},
|
||||
async syncData() {
|
||||
this.syncLoading = true;
|
||||
var res = await this.$API.third.tdevice.vchannelSync.req({});
|
||||
var res = await this.$API.third.tdevice.speakerSync.req({});
|
||||
this.syncLoading = false;
|
||||
},
|
||||
},
|
||||
|
|
|
@ -178,6 +178,7 @@
|
|||
30: "待入厂",
|
||||
40: "进行中",
|
||||
50: "已完成",
|
||||
60: "已关闭"
|
||||
},
|
||||
act_states: {
|
||||
0: "草稿中",
|
||||
|
|
|
@ -197,6 +197,7 @@
|
|||
30: "待入厂",
|
||||
40: "进行中",
|
||||
50: "已完成",
|
||||
60: "已关闭"
|
||||
},
|
||||
act_states: {
|
||||
0: "草稿中",//p
|
||||
|
|
Loading…
Reference in New Issue