guanqb
2023-04-02 10f96d147b77cb2d99cb131e559b3ed8ee3622d6
修改
3 files modified
79 ■■■■■ changed files
src/styles/base/index.scss 6 ●●●● patch | view | raw | blame | history
src/styles/media/index.scss 60 ●●●●● patch | view | raw | blame | history
src/views/house/index.vue 13 ●●●●● patch | view | raw | blame | history
src/styles/base/index.scss
@@ -452,8 +452,12 @@
            flex: 1;
        }
        .el-main {
            width: 100%;
            padding: 0;
        }
        .el-table {
            height: calc(100% - 40px);
            margin-bottom: 10px;
        }
src/styles/media/index.scss
@@ -2080,13 +2080,71 @@
                    .keyPerson-details-box {
                        .el-dialog {
                            width: countSizeVw(1000, 1920);
                            height: countSizeVh(700);
                            height: countSizeVh(800);
                        }
                        .el-dialog__header button {
                            font-size: countSizeVh(18);
                            right: countSizeVw(10, 1920);
                        }
                        .el-main {
                            height: calc(100% - countSizeVh(50));
                        }
                        .el-dialog__header {
                            height: countSizeVh(40);
                            line-height: countSizeVh(40);
                        }
                        .el-table__header-wrapper {
                            height: countSizeVh(60);
                            line-height: countSizeVh(60);
                        }
                        .el-table .cell {
                            height: countSizeVh(30);
                            line-height: countSizeVh(30);
                        }
                        .el-main {
                            height: calc(100% - countSizeVh(50));
                        }
                        .el-table {
                            height: calc(100% - countSizeVh(50));
                            margin-bottom: countSizeVh(10);
                        }
                        .header {
                            margin-bottom: countSizeVh(10);
                            padding-left: countSizeVw(10, 1920);
                            &>div {
                                height: countSizeVh(32);
                                line-height: countSizeVh(32);
                                margin-right: countSizeVw(10, 1920);
                                input {
                                    width: countSizeVw(150, 1920);
                                    height: countSizeVh(32);
                                    font-size: countSizeVh(12);
                                    border: countSizeVh(1) solid rgb(0, 92, 169);
                                    border-radius: countSizeVh(5);
                                }
                            }
                            &>div:first-child input {
                                width: countSizeVw(120, 1920);
                            }
                            .el-button--primary {
                                border: countSizeVh(1) solid rgba(29, 92, 228, 0.6);
                            }
                        }
                    }
                    .policeSituation-details-box {
src/views/house/index.vue
@@ -352,11 +352,12 @@
                <el-button type="primary" icon="el-icon-search" @click="searchPeopleDetail">搜索</el-button>
                <el-button type="primary" icon="el-icon-delete" @click="clearPeopleDetailSearchValue">清空</el-button>
            </div>
            <el-main v-loading="keyPeopleLoading" element-loading-text="拼命加载中" element-loading-spinner="el-icon-loading"
                element-loading-background="rgba(0, 0, 0, 0.2)">
            <el-table :data="personDetailArr" style="width: 100%"
                :header-cell-style="{ 'text-align': 'center', 'background-color': '#203c60', 'borderColor': '#324e75' }"
                :cell-style="{ 'text-align': 'center', 'borderColor': '#324e75', 'cursor': 'default' }"
                v-loading="keyPeopleLoading" element-loading-text="拼命加载中" element-loading-spinner="el-icon-loading"
                element-loading-background="rgba(17, 38, 163, 1)">
                    :empty-text="peopleNoDataText">
                <el-table-column label="序号" type="index" width="50" align="center">
                    <template slot-scope="scope">
                        <span>{{ (peoplePage.currentPage - 1) * peoplePage.pageSize + scope.$index + 1 }}</span>
@@ -375,6 +376,8 @@
                    :total="peoplePage.total" :current-page="peoplePage.currentPage"
                    @current-change="peopleHandleCurrentChange"></el-pagination>
            </div>
            </el-main>
        </el-dialog>
    </div>
</template>
@@ -409,6 +412,7 @@
        return {
            // 下拉搜索--树状数据相关
            searchTreeShowFlag: false,
            peopleNoDataText: '暂无人口数据',
            keyPeopleLoading: false,
            isHaveNoPic: false,
            residentLoading: false,
@@ -1104,6 +1108,7 @@
            this.keyPeopleType = status
            this.peoplePage.currentPage = 1
            this.keyPersonTitle = status == 1 ? "户籍人口详情" : "重点人口详情"
            this.peopleNoDataText = status == 1 ? "暂无户籍人口数据" : "暂无重点人口数据"
            this.keyPeopleLoading = true
            this.getVillagePersonInfo(
                "",
@@ -1809,7 +1814,7 @@
                                flex: 1;
                                display: flex;
                                justify-content: center;
                                border-right: 1px solid #fff;
                                border-right: 1px solid #fff !important;
                                &>div {
                                    cursor: default;
@@ -1828,7 +1833,7 @@
                            }
                            &>div:last-child {
                                border: none;
                                border-right: 1px solid transparent !important;
                            }
                        }
                    }