fix: BUG修改
This commit is contained in:
parent
9a4a7a6f6c
commit
e60df772ff
@ -4,8 +4,8 @@ NODE_ENV = 'development'
|
|||||||
# 本地环境接口地址(/api/index.ts文件中使用)
|
# 本地环境接口地址(/api/index.ts文件中使用)
|
||||||
# VITE_API_URL = 'http://192.168.34.155:6688'
|
# VITE_API_URL = 'http://192.168.34.155:6688'
|
||||||
VITE_WPAPI_URL = "http://182.90.224.147:8081"
|
VITE_WPAPI_URL = "http://182.90.224.147:8081"
|
||||||
# VITE_API_URL = "http://182.90.224.147:6688"
|
VITE_API_URL = "http://182.90.224.147:6688"
|
||||||
VITE_API_URL = "http://47.104.132.250:9000"
|
# VITE_API_URL = "http://47.104.132.250:9000"
|
||||||
|
|
||||||
# 上传
|
# 上传
|
||||||
# VITE_ULD_API_URL = 'http://192.168.34.155:8012/onlinePreview?url='
|
# VITE_ULD_API_URL = 'http://192.168.34.155:8012/onlinePreview?url='
|
||||||
|
|||||||
@ -48,9 +48,8 @@
|
|||||||
.table {
|
.table {
|
||||||
margin-left: 20px;
|
margin-left: 20px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
:deep(.table-main) {
|
display: flex;
|
||||||
height: calc(100% - 82px);
|
flex-direction: column;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -67,9 +67,8 @@
|
|||||||
.table {
|
.table {
|
||||||
margin-left: 20px;
|
margin-left: 20px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
:deep(.table-main) {
|
display: flex;
|
||||||
height: calc(100% - 82px);
|
flex-direction: column;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -48,9 +48,8 @@
|
|||||||
.table {
|
.table {
|
||||||
margin-left: 20px;
|
margin-left: 20px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
:deep(.table-main) {
|
display: flex;
|
||||||
height: calc(100% - 82px);
|
flex-direction: column;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -49,7 +49,6 @@
|
|||||||
position: relative;
|
position: relative;
|
||||||
margin-left: 20px;
|
margin-left: 20px;
|
||||||
.search-select {
|
.search-select {
|
||||||
min-width: 1470px;
|
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
:deep() {
|
:deep() {
|
||||||
.el-card {
|
.el-card {
|
||||||
@ -72,7 +71,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
.statistics-table {
|
.statistics-table {
|
||||||
min-width: 1430px;
|
|
||||||
height: calc(100% - 100px);
|
height: calc(100% - 100px);
|
||||||
background-color: var(--el-menu-bg-color);
|
background-color: var(--el-menu-bg-color);
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
|
|||||||
@ -32,13 +32,13 @@
|
|||||||
<div class="table-box">
|
<div class="table-box">
|
||||||
<div class="search-select">
|
<div class="search-select">
|
||||||
<el-card shadow="never" class="topCard">
|
<el-card shadow="never" class="topCard">
|
||||||
<span style="margin: 0 10px 2px 20px">工程名称</span>
|
<span style="margin: 0 10px 2px 20px; white-space: nowrap">工程名称</span>
|
||||||
<el-input style="width: 200px" v-model="searchForm.name" clearable placeholder="请输入" />
|
<el-input style="width: 200px" v-model="searchForm.name" clearable placeholder="请输入" />
|
||||||
<span style="margin: 0 10px 2px 10px">状态</span>
|
<span style="margin: 0 10px 2px 10px; white-space: nowrap">状态</span>
|
||||||
<el-select style="width: 200px" v-model="searchForm.state" clearable placeholder="请选择">
|
<el-select style="width: 200px" v-model="searchForm.state" clearable placeholder="请选择">
|
||||||
<el-option v-for="item in statusList" :key="item.value" :label="item.label" :value="item.value" />
|
<el-option v-for="item in statusList" :key="item.value" :label="item.label" :value="item.value" />
|
||||||
</el-select>
|
</el-select>
|
||||||
<span style="margin: 0 10px 2px 20px">实际完成日期</span>
|
<span style="margin: 0 10px 2px 20px; white-space: nowrap">实际完成日期</span>
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
v-model="searchForm.timeRange"
|
v-model="searchForm.timeRange"
|
||||||
style="width: 300px"
|
style="width: 300px"
|
||||||
|
|||||||
@ -43,15 +43,13 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
.table-box {
|
.table-box {
|
||||||
width: calc(100% - 300px);
|
width: calc(100% - 320px);
|
||||||
height: 100%;
|
height: 100%;
|
||||||
.table {
|
.table {
|
||||||
margin-left: 20px;
|
margin-left: 20px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
:deep(.table-main) {
|
display: flex;
|
||||||
height: calc(100% - 82px);
|
flex-direction: column;
|
||||||
overflow-x: scroll;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -48,9 +48,8 @@
|
|||||||
.table {
|
.table {
|
||||||
margin-left: 20px;
|
margin-left: 20px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
:deep(.table-main) {
|
display: flex;
|
||||||
height: calc(100% - 82px);
|
flex-direction: column;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -48,9 +48,8 @@
|
|||||||
.table {
|
.table {
|
||||||
margin-left: 20px;
|
margin-left: 20px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
:deep(.table-main) {
|
display: flex;
|
||||||
height: calc(100% - 82px);
|
flex-direction: column;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user