fix: BUG修改

This commit is contained in:
kun 2023-10-11 16:47:49 +08:00
parent 02159e16b3
commit 9a4a7a6f6c
16 changed files with 24 additions and 25 deletions

View File

@ -4,7 +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_ULD_API_URL = 'http://192.168.34.155:8012/onlinePreview?url=' # VITE_ULD_API_URL = 'http://192.168.34.155:8012/onlinePreview?url='

View File

@ -1,5 +1,5 @@
.leftMenu { .leftMenu {
min-width: 300px; width: 300px;
min-height: 94%; min-height: 94%;
border-radius: 5px; border-radius: 5px;
// box-shadow: 0px 4px 4px 0px rgba(0, 55, 143, 0.2); // box-shadow: 0px 4px 4px 0px rgba(0, 55, 143, 0.2);
@ -62,7 +62,8 @@
border-bottom-left-radius: 8px; border-bottom-left-radius: 8px;
} }
.content { .content {
min-height: 83%; height: calc(100% - 150px);
overflow-y: scroll;
// padding: 0 10px; // padding: 0 10px;
background-color: #ffffff; background-color: #ffffff;
.fule { .fule {

View File

@ -6,7 +6,7 @@
.right_container { .right_container {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
width: 83%; flex: 1;
// margin-left: 20px; // margin-left: 20px;
padding: 0 0 0 20px; padding: 0 0 0 20px;
@ -140,6 +140,7 @@
} }
.leftMenu { .leftMenu {
// width: 300px;
// width: 290px; // width: 290px;
// 页面的项目工程 // 页面的项目工程
.leftProject { .leftProject {

View File

@ -167,7 +167,7 @@ const searchName = ref<string>("");
const pages = ref({ const pages = ref({
pageNo: 1, pageNo: 1,
pageSize: 7, pageSize: 10,
total: 0 total: 0
}); });
const pageable = ref({ const pageable = ref({

View File

@ -6,7 +6,7 @@
.right_container { .right_container {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
width: 83%; flex: 1;
// margin-left: 20px; // margin-left: 20px;
padding: 0 0 0 20px; padding: 0 0 0 20px;

View File

@ -153,7 +153,7 @@ const searchSn = ref<string>("");
const searchName = ref<string>(""); const searchName = ref<string>("");
const pages = ref({ const pages = ref({
pageNo: 1, pageNo: 1,
pageSize: 6, pageSize: 10,
total: 0 total: 0
}); });

View File

@ -110,16 +110,13 @@
} }
.LeftMenu { .LeftMenu {
position: absolute; position: absolute;
width: 300px;
top: 10px; top: 10px;
left: 10px; left: 10px;
height: 94%; height: calc(100% - 122px);
min-height: 83%;
border-radius: 8px; border-radius: 8px;
box-shadow: 0 4px 4px 0 rgb(0 55 143 / 20%); box-shadow: 0 4px 4px 0 rgb(0 55 143 / 20%);
opacity: 0.9; opacity: 0.9;
overflow-y: scroll; width: 300px;
// background-color: rgba(255 255 255 / 80%) !important; // background-color: rgba(255 255 255 / 80%) !important;
} }
.ellipsisName { .ellipsisName {

View File

@ -106,7 +106,7 @@ import type { ResAiProjectPage, ResAiEngineerPage } from "@/api/types/government
const active = ref(0); const active = ref(0);
const pages = ref({ const pages = ref({
pageNo: 1, pageNo: 1,
pageSize: 6, pageSize: 10,
total: 0 total: 0
}); });
const mapTitle = ref({ const mapTitle = ref({

View File

@ -117,7 +117,7 @@ import {
import LeftMenu from "@/components/LeftMenu/LeftMenu.vue"; import LeftMenu from "@/components/LeftMenu/LeftMenu.vue";
const pages = ref({ const pages = ref({
pageNo: 1, pageNo: 1,
pageSize: 7, pageSize: 10,
total: 0 total: 0
}); });
const records = ref([]); const records = ref([]);

View File

@ -227,13 +227,12 @@
position: absolute; position: absolute;
top: 92px; top: 92px;
left: 10px; left: 10px;
height: 90%; height: calc(100% - 122px);
min-height: 60%; min-height: 60%;
border-radius: 8px; border-radius: 8px;
box-shadow: 0 4px 4px 0 rgb(0 55 143 / 20%); box-shadow: 0 4px 4px 0 rgb(0 55 143 / 20%);
opacity: 0.9; opacity: 0.9;
width: 290px; width: 300px;
overflow-y: scroll;
// background-color: rgba(255 255 255 / 80%) !important; // background-color: rgba(255 255 255 / 80%) !important;
} }
.mapTopData { .mapTopData {

View File

@ -148,7 +148,7 @@ const globalStore = GlobalStore();
const active = ref(0); const active = ref(0);
const pages = ref({ const pages = ref({
pageNo: 1, pageNo: 1,
pageSize: 7, pageSize: 10,
total: 0 total: 0
}); });
const mapTitle = ref({ const mapTitle = ref({

View File

@ -79,7 +79,7 @@ import { acceptanceApplyProList, acceptanceApplyEngList, acceptanceApplyPage } f
import { ElMessage } from "element-plus"; import { ElMessage } from "element-plus";
const pages = ref({ const pages = ref({
pageNo: 1, pageNo: 1,
pageSize: 7, pageSize: 10,
total: 0 total: 0
}); });
// snsn // snsn

View File

@ -71,7 +71,7 @@ import LeftMenu from "@/components/LeftMenu/LeftMenu.vue";
import { acceptancePlanProList, acceptancePlanEngList } from "@/api/modules/goverment"; import { acceptancePlanProList, acceptancePlanEngList } from "@/api/modules/goverment";
const pages = ref({ const pages = ref({
pageNo: 1, pageNo: 1,
pageSize: 7, pageSize: 10,
total: 0 total: 0
}); });
// snsn // snsn

View File

@ -6,7 +6,7 @@
.right_container { .right_container {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
width: 83%; flex: 1;
// margin-left: 20px; // margin-left: 20px;
padding: 0 0 0 20px; padding: 0 0 0 20px;
.form_div { .form_div {

View File

@ -150,7 +150,7 @@ const searchName = ref<string>("");
const pages = ref({ const pages = ref({
pageNo: 1, pageNo: 1,
pageSize: 7, pageSize: 10,
total: 0 total: 0
}); });
const pageable = ref({ const pageable = ref({

View File

@ -6,8 +6,7 @@
.right_container { .right_container {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
width: 83%; flex: 1;
// margin-left: 20px; // margin-left: 20px;
padding: 0 0 0 20px; padding: 0 0 0 20px;
@ -23,8 +22,9 @@
// align-items: center; // align-items: center;
} }
.form { .form {
border-radius: 8px;
padding: 16px 0 0 36px; padding: 16px 0 0 36px;
margin-bottom: 20px;
// height: 56px; // height: 56px;
background-color: #ffffff; background-color: #ffffff;
} }