Commit dd465b1d by zhao_shaonan

添加已选条件在屏幕小得情况下得样式

parent 153cf9c5
......@@ -19,7 +19,7 @@ let base = {
ebss: "",
test: ""
};
if (
if (relUrlIp == "133.8.5.1"||
relUrlIp == "68.174.69.46" ||
relUrlIp == "68.175.7.118" ||
relUrlIp == "65.65.100.205" ||
......@@ -28,20 +28,24 @@ if (
relUrlIp == "68.174.25.98" ||
relUrlIp == "68.175.7.120"
) {
//------------------------------刑侦字典服务路径**公安网**--------------------------------
base.BaseURL="/apiAjzbGaw"
//------------------------------刑专二期(日志)服务路径**公安网**--------------------------------
base.rzURL="/apiXzxtGaw"
//------------------------------刑侦后台服务路径**公安网**--------------------------------
base.XingZhen = "http://68.174.69.95";
//base.XingZhen = "http://68.174.69.95";
//------------------------------地图后台服务路径**公安网**--------------------------------
base.mapurl = "http://68.174.25.99:8051";
//base.mapurl = "http://68.174.25.99:8051";
//------------------------------登陆后台服务路径**公安网**--------------------------------
base.Ptlogin = "http://68.174.25.99:8061";
//base.Ptlogin = "http://68.174.25.99:8061";
//------------------------------ebss后台服务路径**公安网**--------------------------------
base.ebss = "http://68.174.25.107:8090";
//base.ebss = "http://68.174.25.107:8090";
//------------------------------脑图后台服务路径**公安网**--------------------------------
base.bigurl = "http://77.1.24.51:8080";
//base.bigurl = "http://77.1.24.51:8080";
//------------------------------东莞智通后台服务路径**公安网**----------------------------
base.ZhiTu_url = "http://39.99.159.210:8053";
//base.ZhiTu_url = "http://39.99.159.210:8053";
//------------------------------脑图后台服务路径**公安网**--------------------------------
base.bigwfwurl = "http://77.1.24.51:8050";
//base.bigwfwurl = "http://77.1.24.51:8050";
} else{
//------------------------------刑侦字典服务路径**阿里云**--------------------------------
//base.BaseURL="http://192.168.31.210:8080"/*杨洋本地端口号8080*/
......
......@@ -123,3 +123,7 @@
vertical-align: bottom;
}
}
/*针对屏幕小得情况*/
.isMinWith .conditionTitle{width:100px !important;text-align: right !important;}
.isMinWith .conditionWrap{width:calc(100% - 240px) !important;}
.delete2{margin-left:10px !important;}
<template>
<div id="selectedConditions" class="formWrap" ref="select">
<div id="selectedConditions" :class="isMinWith?'isMinWith formWrap':'formWrap'" ref="select">
<div class="conditionTitle">已选条件:</div>
<div class="conditionWrap">
<el-tag
......@@ -36,7 +36,8 @@ export default {
data() {
return {
dynamicTags: this.selectList,
height: 0
height: 0,
isMinWith:document.body.clientWidth>1680?false:true,
};
},
watch: {
......@@ -70,7 +71,7 @@ export default {
self.$emit("getHeight", this.height);
});
}
}
},
};
</script>
......
......@@ -74,7 +74,23 @@ module.exports = {
pathRewrite: {
'^/apiXzxt': '/'
}
}
},
"/apiAjzbGaw": {
target: "http://133.8.5.1:8001/", //公安网案件侦办地址
ws: true,
changeOrigin: true,
pathRewrite: {
'^/apiAjzbGaw': '/'
}
},
"/apiXzxtGaw": {
target: "http://133.8.5.1:8501/", //公安网刑专二期地址
ws: true,
changeOrigin: true,
pathRewrite: {
'^/apiXzxtGaw': '/'
}
},
}
}
};
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