2024-9-27 测速设备补充

This commit is contained in:
Rain 2024-09-27 20:44:15 +08:00
parent f43f9824e9
commit 5c3e64c7fa
4 changed files with 30 additions and 17 deletions

View File

@ -176,12 +176,12 @@ if (process.env.NODE_ENV == "development") {
// axios.defaults.baseURL = 'http://192.168.34.221:28890/' //郭圣雄本地
// axios.defaults.baseURL = "http://192.168.34.221:9111/"; //郭圣雄本地
// axios.defaults.baseURL = "http://192.168.34.221:19112/"; //郭圣雄本地
axios.defaults.baseURL = 'http://192.168.34.155:19111/' //彭洁本地
// axios.defaults.baseURL = 'http://192.168.34.155:19111/' //彭洁本地
// axios.defaults.baseURL = 'http://182.90.224.237:51234/' //郭圣雄远程
// axios.defaults.baseURL = 'http://jxj.zhgdyun.com:61212/' //彭洁远程
// axios.defaults.baseURL ='http://101.43.164.214:45020/' //沈阳和盈
// axios.defaults.baseURL ='http://183.249.224.118:9000/' //嘉兴王江泾公用码头
// axios.defaults.baseURL = 'http://101.43.164.214:11111/' // 百色三标段项目
axios.defaults.baseURL = 'http://101.43.164.214:11111/' // 百色三标段项目
// axios.defaults.baseURL = 'http://125.88.207.86:8088/'//中建四局线上(最新)地址
// axios.defaults.baseURL = 'http://125.88.207.86:8099/'//中建四局(沙湖)线上(最新)地址
// axios.defaults.baseURL = 'http://jxj.zhgdyun.com:15551/'//测试地址

View File

@ -64,7 +64,7 @@ export default new Vuex.Store({
// FILEURL: "http://http://192.168.34.155:19111/image/", //洁本地
// UPLOADURL: 'http://192.168.34.221:9111/upload/image/', // 郭圣雄本地
// FILEURL: 'http://192.168.34.221:9111/image/', //郭圣雄本地
WORKFLOWURL: "http://101.43.164.214:11111/#/workspace/forms", //jiayu工作流地址(本地)
WORKFLOWURL: "http://101.43.164.214:11129/#/workspace/forms", //jiayu工作流地址(本地)
// WORKFLOWURL: "http://192.168.34.216:88/#/workspace/forms", //jiayu工作流地址(本地)
// WORKFLOWURL: "http://192.168.34.138:88/#/workspace/forms", //坤工作流地址(本地)
// WORKFLOWURL: "http://192.168.34.129:88/#/workspace/forms", //罗峰工作流地址(本地)

View File

@ -401,11 +401,19 @@ export default {
if (valid) {
let params = this.addEditForm;
//
this.addEditForm.alarmPusher = this.addEditForm.alarmPusher.join(",");
this.addEditForm.camera = this.addEditForm.camera.join(",");
this.addEditForm.enterpriseIds = this.addEditForm.enterpriseIds.join(
","
);
if (this.addEditForm.alarmPusher) {
this.addEditForm.alarmPusher = this.addEditForm.alarmPusher.join(
","
);
}
if (this.addEditForm.camera) {
this.addEditForm.camera = this.addEditForm.camera.join(",");
}
if (this.addEditForm.enterpriseIds) {
this.addEditForm.enterpriseIds = this.addEditForm.enterpriseIds.join(
","
);
}
params.projectSn = this.$store.state.projectSn;
if (this.Popup.type === "add") {
carMeasureSpeedAddApi(params).then(result => {
@ -449,14 +457,19 @@ export default {
if (result.success) {
console.log("设备测试-单条", result.result);
this.addEditForm = result.result;
this.addEditForm.alarmPusher = this.addEditForm.alarmPusher.split(
","
);
this.addEditForm.camera = this.addEditForm.camera.split(",");
this.addEditForm.enterpriseIds = this.addEditForm.enterpriseIds.split(
","
);
if (this.addEditForm.alarmPusher) {
this.addEditForm.alarmPusher = this.addEditForm.alarmPusher.split(
","
);
}
if (this.addEditForm.camera) {
this.addEditForm.camera = this.addEditForm.camera.split(",");
}
if (this.addEditForm.enterpriseIds) {
this.addEditForm.enterpriseIds = this.addEditForm.enterpriseIds.split(
","
);
}
}
});
},

View File

@ -62,7 +62,7 @@
<el-table-column prop="isExceed" align="center" label="是否超出阈值">
<template slot-scope="scope">
{{
scope.row.enabled == 1 ? '是' : '否'
scope.row.isExceed == 1 ? '是' : '否'
}}
</template>
</el-table-column>