Commit 22175666 authored by yf's avatar yf

合并冲突

parents 0b110b84 99f4d39b
......@@ -163,7 +163,7 @@
<van-dropdown-item v-model="value3" :options="option3" />
</van-dropdown-menu>
</van-sticky>
<div style="overflow-y: auto;">
<div style="overflow-y: auto;padding: 10px;">
<van-cell-group
inset
v-for="(item, index) in riskList"
......@@ -172,13 +172,14 @@
<van-row
class="list-row"
type="flex"
justify="space-between"
align="center"
style="margin-top:10px;"
@click="toRiskDetail(item)"
>
<van-col span="20">
<van-col span="5" style="line-height: 9;">
<!-- <van-col span="20"> -->
<van-col>
<van-image
style="vertical-align: middle;margin-right: 15px;margin-left: 10px;"
width="58"
height="58"
:src="
......@@ -900,4 +901,9 @@ p {
font-weight: none;
z-index: 99;
}
.item-prop{
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
</style>
......@@ -2,24 +2,25 @@ module.exports = {
productionSourceMap: false,
devServer: {
open: true,
host: 'localhost',
host: "localhost",
port: 8080,
https: false,
//以上的ip和端口是我们本机的;下面为需要跨域的
proxy: { //配置跨域
'/app-api': {
// target: 'http://192.168.4.232:8080/', //这里是后台的地址
proxy: {
//配置跨域
"/app-api": {
target: "http://192.168.4.232:8080/", //这里是后台的地址
// target: 'http://192.168.15.124:8080/', //这里是杨帆的地址
// target: 'http://192.168.10.137:8080/', //这里是昊哥的地址
// target: 'http://192.168.10.36:8080/', //这里是昊哥的地址
target: 'http://localhost:8081/', //这里是后台的地址
// target: 'http://localhost:8081/', //这里是后台的地址
ws: true,
changOrigin: true, //允许跨域
changOrigin: true //允许跨域
// logLevel: 'debug', // 显示代理调试信息
// pathRewrite: {
// '^/app-api': '' //请求的时候使用这个api就可以
// }
},
}
// '/ps_ceninss': {
// target: 'http://192.168.3.80:8080', //这里是后台的地址
// ws: true,
......@@ -30,4 +31,4 @@ module.exports = {
// }
}
}
}
};
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