pyt
2025-04-10 744851fdda0607078e930e1c53ef4467b56ff977
Merge branch 'main' of http://120.76.84.145:10101/gitblit/r/H5/leshan-laboratory
2个文件已修改
20 ■■■■■ 已修改文件
src/App.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/projectList/addProject.vue 19 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/App.vue
@@ -165,6 +165,7 @@
.select-member-footer {
  display: flex;
  justify-content: center;
  gap: 10px;
  button {
    width: 150px;
src/views/projectList/addProject.vue
@@ -23,6 +23,7 @@
                        <div :class="item == 1 || item == 2 ? 'member-name-box' : 'member-name-box-2'">
                            <div v-for="i in memberList(item)" :key="i" class="member-name">张三</div>
                        </div>
                        <div class="member-edit">修改</div>
                    </div>
                </div>
            </div>
@@ -122,6 +123,7 @@
    gap: 28px;
    .member-list-card {
        position: relative;
        width: 340px;
        height: 400px;
        border-radius: 8px;
@@ -189,6 +191,23 @@
                font-size: 16px;
                color: #FFFFFF;
            }
            .member-edit {
                cursor: pointer;
                position: absolute;
                bottom: 10px;
                left: 50%;
                transform: translateX(-50%);
                font-weight: 400;
                font-size: 12px;
                color: #FF4D4F;
                line-height: 22px;
                width: 40px;
                background: #FFF1F0;
                border-radius: 4px;
                border: 1px solid #FFCCC7;
                text-align: center;
            }
        }
    }
}