guanqb
2024-02-23 13526a9a8466191b2b1a6eaa98a3e94142a455cb
src/views/publicSecurity/keynotePlaceManage.vue
@@ -54,7 +54,7 @@
                <div class="icon">{{ refreshNum }}</div>
                基础信息
            </div>
            <div class="basic-info">
            <div class="basic-info" v-loading="drawerLoading">
                <div class="info-item">
                    <div class="info-name">场所名称</div>
                    <div class="info-value">{{ rowDetail.placeName }}</div>
@@ -77,7 +77,8 @@
                检查记录
            </div>
            <div class="question-list" v-for="(tItem, tIndex) in rowDetail.qTypeList" :key='tIndex'>
            <div class="question-list" v-for="(tItem, tIndex) in rowDetail.qTypeList" :key='tIndex'
                v-loading="drawerLoading">
                <div class="question-type" @click="flodQL(tIndex)">
                    <div class="type-name">
                        {{ CNNum[tIndex] }}、{{ tItem.questionName }}
@@ -203,7 +204,7 @@
            form: {},
            query: {},
            loading: true,
            drawerLoading: false,
            page: {
                pageSize: 10,
                currentPage: 1,
@@ -355,7 +356,8 @@
            auditBasePopup: false,
            questionTypeList: [],
            CNNum: ['一', '二', '三', '四', '五', '六', '七', '八', '九', '十', '十一', '十二', '十三', '十四', '十五'],
            nineTypeList: []
            nineTypeList: [],
            radio: '1',
        }
    },
@@ -473,6 +475,8 @@
        },
        getDetail (rowData) {
            this.drawerLoading = true
            this.isDetail = true
            getTaskPlaceSelfCheckInfo({ taskId: rowData.taskId }).then(res => {
                let row = res.data.data
                if (row.taskPlaceRecordVOList) {
@@ -514,7 +518,7 @@
                // 九小类型转换
                row.nineTypeName = this.switchNineType(row.nineType)
                this.rowDetail = row
                this.isDetail = true
                this.drawerLoading = false
            })
        },
@@ -846,6 +850,30 @@
    background: transparent !important;
}
:deep(.el-radio__input.is-disabled+span.el-radio__label) {
    color: #000;
}
:deep(.el-radio__input.is-checked+.el-radio__label) {
    color: #409EFF !important;
}
:deep(.el-radio__input.is-checked .el-radio__inner::after) {
    background-color: #FFF;
}
:deep(.el-radio__input.is-checked .el-radio__inner) {
    background-color: #409EFF;
}
:deep(.avue-crud__img) {
    height: 30px !important;
}
:deep(.el-radio) {
    margin-right: 20px;
}
.avue-upload__icon {
    line-height: 6;
}