Commit cf3ac6cc authored by 李志鸣's avatar 李志鸣

fix(AVI工作区): 工作区详情显示问题修复

parent a4904520
...@@ -17,7 +17,7 @@ module.exports = { ...@@ -17,7 +17,7 @@ module.exports = {
// target: 'http://192.168.43.244:8888', // 东伟服务器地址 // target: 'http://192.168.43.244:8888', // 东伟服务器地址
// target: 'http://192.168.43.153:8080', // 训浩服务器 // target: 'http://192.168.43.153:8080', // 训浩服务器
// target: 'http://10.100.172.23:8082', // 本地服务器 // target: 'http://10.100.172.23:8082', // 本地服务器
target: 'http://10.100.172.30:8082', // 本地服务器http://10.100.172.30:8082/ target: 'http://10.100.172.124:8082', // 本地服务器http://10.100.172.30:8082/
changeOrigin: true, changeOrigin: true,
pathRewrite: { pathRewrite: {
'^/host': ''//这里理解成用‘/host’代替target里面的地址,后面组件中我们掉接口时直接用api代替 比如我要调用'http://40.00.100.100:3002/user/add',直接写‘/api/user/add’即可 '^/host': ''//这里理解成用‘/host’代替target里面的地址,后面组件中我们掉接口时直接用api代替 比如我要调用'http://40.00.100.100:3002/user/add',直接写‘/api/user/add’即可
......
...@@ -353,8 +353,8 @@ export default { ...@@ -353,8 +353,8 @@ export default {
let queryParams = { busNo: busWorkOrderNo }; let queryParams = { busNo: busWorkOrderNo };
this.$fetch('area-controller/busNo-get', queryParams).then( this.$fetch('area-controller/busNo-get', queryParams).then(
response => { response => {
if (!Array.isArray(res)) { if (!Array.isArray(response)) {
this.BusInformation = _.cloneDeep(res); this.currentBusInfo = _.cloneDeep(response);
} }
} }
); );
...@@ -630,13 +630,15 @@ export default { ...@@ -630,13 +630,15 @@ export default {
// 轻客车体样式 // 轻客车体样式
.monitor-car-external { .monitor-car-external {
background: url("../../../assets/images/Monitor/monitor_car_external.png") !important; background: url("../../../assets/images/Monitor/monitor_car_external.png") no-repeat !important;
background-size: cover !important; background-size: 35px 18px !important;
background-position: 0 16px !important;
} }
// 定位车体样式 // 定位车体样式
.monitor-car-location-position { .monitor-car-location-position {
background: url("../../../assets/images/Monitor/monitor_position_car.gif") !important; background: url("../../../assets/images/Monitor/monitor_position_car.gif") no-repeat !important;
background-size: cover !important; background-size: 35px 18px !important;
background-position: 0 16px !important;
} }
</style> </style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment