From 9ff5777386c9128b2255be0504625e0f0b9eab00 Mon Sep 17 00:00:00 2001
From: zhongrj <646384940@qq.com>
Date: Sat, 25 May 2024 17:12:24 +0800
Subject: [PATCH] 无诈样式高度统一
---
vue.config.js | 4 ++--
src/components/cardPopup/cardPopuponce.vue | 4 ++--
src/components/cardPopup/cardPopup.vue | 5 +++--
3 files changed, 7 insertions(+), 6 deletions(-)
diff --git a/src/components/cardPopup/cardPopup.vue b/src/components/cardPopup/cardPopup.vue
index 49bf888..2a52861 100644
--- a/src/components/cardPopup/cardPopup.vue
+++ b/src/components/cardPopup/cardPopup.vue
@@ -18,7 +18,7 @@
</div>
<div v-for="(item1, index1) in item.children" class="attach_row">
<div class="attach_row_title">
- {{ index1 + 1 }} {{ item1.title }}
+ {{ index1 + 1 }}. {{ item1.title }}
</div>
<div style="margin: 10px;" class="attach_row_btn">
<el-upload class="upload-demo" :limit="1" :data="item1" :on-change="handleChange"
@@ -536,6 +536,7 @@
.attach_row {
display: flex;
border: 0.2px solid rgba(221, 223, 229, 0.5);
+ height: 54px;
.attach_row_title {
width: 85%;
@@ -543,7 +544,7 @@
display: flex;
justify-content: left;
align-items: center;
- margin-left: 15px;
+ margin-left: 12px;
}
.attach_row_btn {
diff --git a/src/components/cardPopup/cardPopuponce.vue b/src/components/cardPopup/cardPopuponce.vue
index 808d8d9..fc26e80 100644
--- a/src/components/cardPopup/cardPopuponce.vue
+++ b/src/components/cardPopup/cardPopuponce.vue
@@ -19,7 +19,7 @@
</div>
<div v-for="(item1,index1) in item.children" class="attach_row">
<div class="attach_row_title">
- {{index1+1}} {{item1.title}}
+ {{index1+1}}. {{item1.title}}
</div>
<div style="margin: 10px;" class="attach_row_btn">
<el-button v-if="item1.images" @click="handleExport(item1.images)" size="small"
@@ -308,7 +308,7 @@
display: flex;
justify-content: left;
align-items: center;
- margin-left: 15px;
+ margin-left: 12px;
}
.attach_row_btn {
diff --git a/vue.config.js b/vue.config.js
index ed2596b..6d32ee3 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -28,9 +28,9 @@
proxy: {
'/api': {
//本地服务接口地址
- // target: 'http://localhost:9528',
+ target: 'http://localhost:9528',
//远程演示服务地址,可用于直接启动项目
- target: 'https://srgdjczzxtpt.com:2080/api',
+ // target: 'https://srgdjczzxtpt.com:2080/api',
// target: "http://61.131.136.25:2080/api",
// target: 'http://60.220.177.113:2081/api',
ws: true,
--
Gitblit v1.9.3