1
guanqb
2023-03-02 a43016ceec448391ed4727e6eabcc9123d899ae4
1
3 files modified
15 ■■■■ changed files
src/styles/base/index.scss 6 ●●●● patch | view | raw | blame | history
src/styles/media/index.scss 5 ●●●●● patch | view | raw | blame | history
src/views/activity/index.vue 4 ●●● patch | view | raw | blame | history
src/styles/base/index.scss
@@ -991,7 +991,6 @@
                text-align: left;
            }
            input {
                height: 30px;
                font-size: 16px;
@@ -1008,6 +1007,11 @@
            input::-webkit-input-placeholder {
                color: rgba(238, 238, 238, 0.7);
            }
            .placeholder {
                height: 15px;
                margin-bottom: 0px;
            }
        }
    }
}
src/styles/media/index.scss
@@ -2299,6 +2299,11 @@
                                    font-size: countSizeVh(16);
                                    border: countSizeVh(1) solid rgb(0, 92, 169);
                                }
                                .placeholder {
                                    height: countSizeVh(15);
                                    margin-bottom: countSizeVh(0);
                                }
                            }
                        }
                    }
src/views/activity/index.vue
@@ -450,12 +450,13 @@
        <el-dialog title="修改标绘" :modal="false" :visible.sync="editPlotVisible" :close-on-click-modal="true"
            class="edit-plot-box">
            <div>
            <div v-show="polygonName">
                <div class="value-name-box">设置名称:</div>
                <div>
                    <input type="text" v-model="polygonName" />
                </div>
            </div>
            <div v-show="!polygonName" class="placeholder"></div>
            <div>
                <div class="value-name-box">选择标绘颜色:</div>
                <div class="pick-color-box">
@@ -463,6 +464,7 @@
                    </el-color-picker>
                </div>
            </div>
            <div v-show="!polygonName" class="placeholder"></div>
            <div>
                <el-button @click="savePlot">保存</el-button>
                <el-button @click="editPlot">编辑</el-button>