|
@@ -0,0 +1,642 @@
|
|
|
+<template>
|
|
|
+ <div class="totalDiv" style="overflow: hidden">
|
|
|
+ <div class="background2" v-if="background"></div>
|
|
|
+ <div class="header">
|
|
|
+ <div class="title"><span>巴中市政务服务可视化系统</span></div>
|
|
|
+ </div>
|
|
|
+ <div class="main">
|
|
|
+ <div class="back" @click="back"><span>
|
|
|
+ < < </span>
|
|
|
+ </div>
|
|
|
+ <div class="picker">
|
|
|
+ <el-date-picker v-model="yearTime" type="year" format="yyyy年" prefix-icon="1"
|
|
|
+ popper-class="date-picker-government-service-municipal" class="yearDate" clear-icon="" value-format="yyyy"
|
|
|
+ placeholder="选择年">
|
|
|
+ </el-date-picker>
|
|
|
+ </div>
|
|
|
+ <div class="date"><span>{{ date }}</span></div>
|
|
|
+ <div class="day"><span>{{ day }}</span></div>
|
|
|
+ <div class="hour"><span>{{ hour }}</span></div>
|
|
|
+
|
|
|
+ <div class="content">
|
|
|
+ <!-- 左边部分 -->
|
|
|
+ <div class="left">
|
|
|
+ <div class="left-first" @click="AreaHandleInfo" id="rectangle1">
|
|
|
+ <AreaHandleInfo ref="AreaHandleInfo" @click="AreaHandleInfo" :year-time="yearTime"
|
|
|
+ :current-area="currentArea" />
|
|
|
+ </div>
|
|
|
+ <div class="left-second" @click="ElectronicSealInfo" id="rectangle2">
|
|
|
+ <ElectronicSealInfo ref="ElectronicSealInfo" @click="ElectronicSealInfo" :year-time="yearTime"
|
|
|
+ :current-area="currentArea" />
|
|
|
+ </div>
|
|
|
+ <div class="left-third" @click="ElectronicCertificateInfo" id="rectangle3">
|
|
|
+ <ElectronicCertificateInfo ref="ElectronicCertificateInfo" @click="ElectronicCertificateInfo"
|
|
|
+ :year-time="yearTime" :current-area="currentArea" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 中间部分 -->
|
|
|
+ <div class="center">
|
|
|
+ <div class="center-first">
|
|
|
+ <regionalConsultationMap @area-updated="updateCurrentArea" />
|
|
|
+ </div>
|
|
|
+ <div class="center-second" @click="AreaEvaluateInfo" id="rectangle4">
|
|
|
+ <AreaEvaluateInfo ref="AreaEvaluateInfo" @click="AreaEvaluateInfo" :year-time="yearTime"
|
|
|
+ :current-area="currentArea" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 右边部分 -->
|
|
|
+ <div class="right">
|
|
|
+ <div class="right-first" @click="EfficientThingInfo" id="rectangle5">
|
|
|
+ <EfficientThingInfo ref="EfficientThingInfo" @click="EfficientThingInfo" :year-time="yearTime"
|
|
|
+ :current-area="currentArea" />
|
|
|
+ </div>
|
|
|
+ <div class="right-second" @click="CharacteristicThingInfo" id="rectangle6">
|
|
|
+ <CharacteristicThingInfo ref="CharacteristicThingInfo" @click="CharacteristicThingInfo"
|
|
|
+ :year-time="yearTime" :current-area="currentArea" />
|
|
|
+ </div>
|
|
|
+ <div class="right-third" @click="FourOfficeInfo" id="rectangle7">
|
|
|
+ <FourOfficeInfo ref="FourOfficeInfo" @click="FourOfficeInfo" :year-time="yearTime"
|
|
|
+ :current-area="currentArea" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import regionalConsultationMap from './regionalConsultationMap.vue';
|
|
|
+import AreaHandleInfo from './AreaHandleInfo.vue';
|
|
|
+import ElectronicSealInfo from './ElectronicSealInfo.vue';
|
|
|
+import ElectronicCertificateInfo from './ElectronicCertificateInfo.vue';
|
|
|
+import AreaEvaluateInfo from './AreaEvaluateInfo.vue';
|
|
|
+import EfficientThingInfo from './EfficientThingInfo.vue';
|
|
|
+import CharacteristicThingInfo from './CharacteristicThingInfo.vue';
|
|
|
+import FourOfficeInfo from './FourOfficeInfo.vue';
|
|
|
+
|
|
|
+export default {
|
|
|
+ name: "index",
|
|
|
+ data() {
|
|
|
+ const currentYear = new Date().getFullYear().toString();
|
|
|
+ return {
|
|
|
+ date: '',
|
|
|
+ interval: '',
|
|
|
+ day: '',
|
|
|
+ hour: '',
|
|
|
+ government: 0,
|
|
|
+ investCount: 0,
|
|
|
+ disCount: 0,
|
|
|
+ timeStatisCount: 0,
|
|
|
+ consultCount: 0,
|
|
|
+ leadingCount: 0,
|
|
|
+ background: false,
|
|
|
+ number: 0,
|
|
|
+ yearTime: currentYear,
|
|
|
+ currentArea: 0,
|
|
|
+ }
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+ window['DistricHandleResize'] = (item) => {
|
|
|
+ this.$refs.DistricHandle.change(this.disCount);
|
|
|
+ this.$refs.DistricHandle.drawDayCharts();
|
|
|
+ this.$refs.DistricHandle.drawYearCharts();
|
|
|
+ // this.$refs.DistricHandle.getChartData3();
|
|
|
+ };
|
|
|
+ },
|
|
|
+ mounted() {
|
|
|
+ this.getCycleTime()
|
|
|
+ },
|
|
|
+ destroyed() {
|
|
|
+ clearInterval(this.interval);
|
|
|
+ },
|
|
|
+ components: {
|
|
|
+ regionalConsultationMap,
|
|
|
+ AreaHandleInfo,
|
|
|
+ ElectronicSealInfo,
|
|
|
+ ElectronicCertificateInfo,
|
|
|
+ AreaEvaluateInfo,
|
|
|
+ EfficientThingInfo,
|
|
|
+ CharacteristicThingInfo,
|
|
|
+ FourOfficeInfo
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ updateCurrentArea(area) {
|
|
|
+ this.currentArea = area;
|
|
|
+ },
|
|
|
+ changeNumber(data) {
|
|
|
+ this.number = data;
|
|
|
+ },
|
|
|
+ back() {
|
|
|
+ this.$router.push({ name: 'index' })
|
|
|
+ },
|
|
|
+ AreaHandleInfo() {
|
|
|
+ this.investCount = this.investCount + 1;
|
|
|
+ document.getElementById("left-first").classList.toggle("rectangle1Click"); //改变样式
|
|
|
+
|
|
|
+ this.$elementQueries.ResizeSensor(document.getElementById("left-first"), () => {
|
|
|
+ this.$refs.AreaHandleInfo.change(this.investCount)
|
|
|
+ });
|
|
|
+ if (this.investCount % 2 !== 0) {
|
|
|
+ this.background = true;
|
|
|
+ } else {
|
|
|
+ this.background = false;
|
|
|
+ }
|
|
|
+ // this.$refs.investmentConstructionProjects.changeTitle() //标题
|
|
|
+ },
|
|
|
+ AreaHandleInfo() {
|
|
|
+ let flag = sessionStorage.getItem('AreaHandleInfo');
|
|
|
+ if (flag !== JSON.stringify(1)) {
|
|
|
+ document.getElementById("rectangle1").classList.toggle("rectangle1Click"); //改变样式
|
|
|
+ for (let i = 1; i <= 10; i++)
|
|
|
+ setTimeout(() => {
|
|
|
+ this.$refs.AreaHandleInfo.change(this.government)
|
|
|
+ }, i * 100);
|
|
|
+ this.government++;
|
|
|
+ if (this.government % 2 !== 0) {
|
|
|
+ this.background = true;
|
|
|
+ } else {
|
|
|
+ this.background = false;
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ sessionStorage.removeItem('AreaHandleInfo')
|
|
|
+ }
|
|
|
+ },
|
|
|
+ ElectronicSealInfo() {
|
|
|
+ let flag = sessionStorage.getItem('ElectronicSealInfo');
|
|
|
+ if (flag !== JSON.stringify(1)) {
|
|
|
+ document.getElementById("rectangle2").classList.toggle("rectangle2Click"); //改变样式
|
|
|
+ for (let i = 1; i <= 10; i++)
|
|
|
+ setTimeout(() => {
|
|
|
+ this.$refs.ElectronicSealInfo.change(this.government)
|
|
|
+ }, i * 100);
|
|
|
+ this.government++;
|
|
|
+ if (this.government % 2 !== 0) {
|
|
|
+ this.background = true;
|
|
|
+ } else {
|
|
|
+ this.background = false;
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ sessionStorage.removeItem('ElectronicSealInfo')
|
|
|
+ }
|
|
|
+ },
|
|
|
+ ElectronicCertificateInfo() {
|
|
|
+ this.timeStatisCount++;
|
|
|
+ document.getElementById("rectangle3").classList.toggle("rectangle3Click"); //改变样式
|
|
|
+ this.$elementQueries.ResizeSensor(document.getElementById("rectangle3"), () => {
|
|
|
+ this.$refs.ElectronicCertificateInfo.getChart(); //调用子组件的重新渲染图表函数
|
|
|
+ this.$refs.ElectronicCertificateInfo.change(this.timeStatisCount);
|
|
|
+ });
|
|
|
+ if (this.timeStatisCount % 2 !== 0) {
|
|
|
+ this.background = true;
|
|
|
+ } else {
|
|
|
+ this.background = false;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ AreaEvaluateInfo() {
|
|
|
+ this.consultCount++;
|
|
|
+ document.getElementById("rectangle4").classList.toggle("rectangle4Click"); //改变样式
|
|
|
+ this.$elementQueries.ResizeSensor(document.getElementById("rectangle4"), () => {
|
|
|
+ this.$refs.AreaEvaluateInfo.change(this.consultCount);
|
|
|
+ });
|
|
|
+ if (this.consultCount % 2 !== 0) {
|
|
|
+ this.background = true;
|
|
|
+ } else {
|
|
|
+ this.background = false;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ EfficientThingInfo() {
|
|
|
+ let flag = sessionStorage.getItem('municipalTimeSituationDateChange');
|
|
|
+ if (flag !== JSON.stringify(1)) {
|
|
|
+ this.leadingCount++;
|
|
|
+ document.getElementById("rectangle5").classList.toggle("rectangle5Click"); //改变样式
|
|
|
+ this.$elementQueries.ResizeSensor(document.getElementById("rectangle5"), () => {
|
|
|
+ this.$refs.EfficientThingInfo.getChart(); //调用子组件的重新渲染图表函数
|
|
|
+ });
|
|
|
+ if (this.leadingCount % 2 !== 0) {
|
|
|
+ this.background = true;
|
|
|
+ } else {
|
|
|
+ this.background = false;
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ sessionStorage.removeItem('municipalTimeSituationDateChange')
|
|
|
+ }
|
|
|
+ },
|
|
|
+ CharacteristicThingInfo() {
|
|
|
+ let flag = sessionStorage.getItem('CharacteristicThingInfo');
|
|
|
+ if (flag !== JSON.stringify(1)) {
|
|
|
+ this.leadingCount++;
|
|
|
+ document.getElementById("rectangle6").classList.toggle("rectangle6Click"); //改变样式
|
|
|
+ this.$elementQueries.ResizeSensor(document.getElementById("rectangle6"), () => {
|
|
|
+ this.$refs.CharacteristicThingInfo.getChart(); //调用子组件的重新渲染图表函数
|
|
|
+ this.$refs.FourOfficeInfo.change(this.consultCount);
|
|
|
+ });
|
|
|
+ if (this.leadingCount % 2 !== 0) {
|
|
|
+ this.background = true;
|
|
|
+ } else {
|
|
|
+ this.background = false;
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ sessionStorage.removeItem('CharacteristicThingInfo')
|
|
|
+ }
|
|
|
+ },
|
|
|
+ FourOfficeInfo() {
|
|
|
+ this.consultCount++;
|
|
|
+ document.getElementById("rectangle7").classList.toggle("rectangle7Click"); //改变样式
|
|
|
+ this.$elementQueries.ResizeSensor(document.getElementById("rectangle7"), () => {
|
|
|
+ this.$refs.FourOfficeInfo.change(this.consultCount);
|
|
|
+ });
|
|
|
+ if (this.consultCount % 2 !== 0) {
|
|
|
+ this.background = true;
|
|
|
+ } else {
|
|
|
+ this.background = false;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ getCycleTime() {
|
|
|
+ let data = new Date();
|
|
|
+ let month = data.getMonth() + 1;
|
|
|
+ this.day = '';
|
|
|
+ if (data.getDay() === 1) this.day = '星期一';
|
|
|
+ else if (data.getDay() === 2) this.day = '星期二';
|
|
|
+ else if (data.getDay() === 3) this.day = '星期三';
|
|
|
+ else if (data.getDay() === 4) this.day = '星期四';
|
|
|
+ else if (data.getDay() === 5) this.day = '星期五';
|
|
|
+ else if (data.getDay() === 6) this.day = '星期六';
|
|
|
+ else this.day = '星期日';
|
|
|
+ this.date = data.getFullYear() + '年' + month + '月' + data.getDate() + '日';
|
|
|
+ this.getTime();
|
|
|
+ document.addEventListener('visibilitychange', this.cycleDisplay);
|
|
|
+ this.cycleDisplay();
|
|
|
+ },
|
|
|
+ cycleDisplay() {
|
|
|
+ if (document.visibilityState === 'visible') {
|
|
|
+ this.interval = setInterval(() => {
|
|
|
+ this.getTime()
|
|
|
+ }, 1000)
|
|
|
+ } else {
|
|
|
+ clearInterval(this.interval);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ getTime() {
|
|
|
+ let data = new Date();
|
|
|
+ this.hour = (data.getHours() < 10 ? ('0' + data.getHours()) : data.getHours()) + ':' + (data.getMinutes() < 10 ? ('0' + data.getMinutes()) : data.getMinutes());
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped>
|
|
|
+.totalDiv {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ background: url("../../../../assets/images/1077.png") no-repeat;
|
|
|
+ background-size: 100% 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.background2 {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ opacity: 0.6;
|
|
|
+ filter: alpha(opacity=40);
|
|
|
+ background-color: black;
|
|
|
+ /*background-image: url("../../../assets/images/background.png");*/
|
|
|
+ background-size: cover;
|
|
|
+ position: absolute;
|
|
|
+ z-index: 99
|
|
|
+}
|
|
|
+
|
|
|
+.title {
|
|
|
+ color: #2bc8ff;
|
|
|
+ font-size: 1.81rem;
|
|
|
+ padding-top: 1%;
|
|
|
+ text-shadow: 0 0 8px #379a96, 0 0 20px #0febff, 0 0 42px #577886, 0 0 80px #89bfd6;
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+
|
|
|
+.header {
|
|
|
+ height: 9.7%;
|
|
|
+ width: 100%;
|
|
|
+ background: url(../../../../assets/images/serviceTitle.png);
|
|
|
+ background-size: 100% auto;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+}
|
|
|
+
|
|
|
+.main {
|
|
|
+ width: 100%;
|
|
|
+ height: 81.7%;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+
|
|
|
+.content {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+}
|
|
|
+
|
|
|
+.left {
|
|
|
+ flex: 1;
|
|
|
+ margin-left: 2%;
|
|
|
+ height: 100vh;
|
|
|
+}
|
|
|
+
|
|
|
+.center {
|
|
|
+ flex: 1;
|
|
|
+ height: 100vh;
|
|
|
+}
|
|
|
+
|
|
|
+.right {
|
|
|
+ flex: 1;
|
|
|
+ height: 100vh;
|
|
|
+}
|
|
|
+
|
|
|
+.left-first {
|
|
|
+ width: 31%;
|
|
|
+ height: 33%;
|
|
|
+ position: absolute;
|
|
|
+ background-color: rgba(13, 26, 56, 0.5);
|
|
|
+ transition: width 1s, height 1s, margin-left 1s, margin-top 1s;
|
|
|
+ -webkit-transition: width 1s, height 1s, margin-top 2s, margin-left 2s;
|
|
|
+}
|
|
|
+
|
|
|
+.left-second {
|
|
|
+ width: 31%;
|
|
|
+ height: 33%;
|
|
|
+ position: absolute;
|
|
|
+ top: 35%;
|
|
|
+ background-color: rgba(13, 26, 56, 0.5);
|
|
|
+ transition: width 1s, height 1s, margin-left 1s, margin-top 1s;
|
|
|
+ -webkit-transition: width 1s, height 1s, margin-top 2s, margin-left 2s;
|
|
|
+}
|
|
|
+
|
|
|
+.left-third {
|
|
|
+ width: 31%;
|
|
|
+ height: 33%;
|
|
|
+ position: absolute;
|
|
|
+ top: 70%;
|
|
|
+ background-color: rgba(13, 26, 56, 0.5);
|
|
|
+ transition: width 1s, height 1s, margin-left 1s, margin-top 1s;
|
|
|
+ -webkit-transition: width 1s, height 1s, margin-top 2s, margin-left 2s;
|
|
|
+}
|
|
|
+
|
|
|
+.center-first {
|
|
|
+ width: 32%;
|
|
|
+ height: 68%;
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ left: 34%;
|
|
|
+}
|
|
|
+
|
|
|
+.center-second {
|
|
|
+ position: absolute;
|
|
|
+ width: 32%;
|
|
|
+ height: 33%;
|
|
|
+ left: 34%;
|
|
|
+ top: 70%;
|
|
|
+ background-color: rgba(13, 26, 56, 0.5);
|
|
|
+ transition: width 1s, height 1s, margin-left 1s, margin-top 1s;
|
|
|
+ -webkit-transition: width 1s, height 1s, margin-top 2s, margin-left 2s;
|
|
|
+}
|
|
|
+
|
|
|
+.right-first {
|
|
|
+ width: 33%;
|
|
|
+ height: 33%;
|
|
|
+ position: absolute;
|
|
|
+ background-color: rgba(13, 26, 56, 0.5);
|
|
|
+ transition: width 1s, height 1s, margin-left 1s, margin-top 1s;
|
|
|
+ -webkit-transition: width 1s, height 1s, margin-top 2s, margin-left 2s;
|
|
|
+}
|
|
|
+
|
|
|
+.right-second {
|
|
|
+ width: 33%;
|
|
|
+ height: 33%;
|
|
|
+ position: absolute;
|
|
|
+ top: 35%;
|
|
|
+ background-color: rgba(13, 26, 56, 0.5);
|
|
|
+ transition: width 1s, height 1s, margin-left 1s, margin-top 1s;
|
|
|
+ -webkit-transition: width 1s, height 1s, margin-top 2s, margin-left 2s;
|
|
|
+}
|
|
|
+
|
|
|
+.right-third {
|
|
|
+ width: 33%;
|
|
|
+ height: 33%;
|
|
|
+ position: absolute;
|
|
|
+ top: 70%;
|
|
|
+ background-color: rgba(13, 26, 56, 0.5);
|
|
|
+ transition: width 1s, height 1s, margin-left 1s, margin-top 1s;
|
|
|
+ -webkit-transition: width 1s, height 1s, margin-top 2s, margin-left 2s;
|
|
|
+}
|
|
|
+
|
|
|
+.back {
|
|
|
+ position: absolute;
|
|
|
+ top: -10%;
|
|
|
+ left: 4%;
|
|
|
+ color: #00b3ea;
|
|
|
+ font-size: 220%;
|
|
|
+ font-weight: 500;
|
|
|
+ width: 4%;
|
|
|
+ text-align: center;
|
|
|
+ font-family: "Agency FB";
|
|
|
+}
|
|
|
+
|
|
|
+.picker {
|
|
|
+ position: absolute;
|
|
|
+ top: -11%;
|
|
|
+ left: 8%;
|
|
|
+ color: #00b3ea;
|
|
|
+ font-size: 220%;
|
|
|
+ font-weight: 500;
|
|
|
+ width: 8%;
|
|
|
+ text-align: center;
|
|
|
+ font-family: "Agency FB";
|
|
|
+}
|
|
|
+
|
|
|
+.date-picker {
|
|
|
+ width: 105px;
|
|
|
+}
|
|
|
+
|
|
|
+.date {
|
|
|
+ position: absolute;
|
|
|
+ top: -10%;
|
|
|
+ left: 86%;
|
|
|
+ color: #00b3ea;
|
|
|
+ font-size: 110%;
|
|
|
+ font-weight: 500;
|
|
|
+ width: 12%;
|
|
|
+ text-align: center;
|
|
|
+ font-family: "Agency FB";
|
|
|
+}
|
|
|
+
|
|
|
+.day {
|
|
|
+ position: absolute;
|
|
|
+ top: -7%;
|
|
|
+ left: 86%;
|
|
|
+ color: #00b3ea;
|
|
|
+ font-size: 100%;
|
|
|
+ font-weight: 500;
|
|
|
+ width: 12%;
|
|
|
+ text-align: center;
|
|
|
+ font-family: "Agency FB";
|
|
|
+}
|
|
|
+
|
|
|
+.hour {
|
|
|
+ position: absolute;
|
|
|
+ top: -10%;
|
|
|
+ left: 80.5%;
|
|
|
+ color: #00b3ea;
|
|
|
+ font-size: 235%;
|
|
|
+ font-weight: 500;
|
|
|
+ width: 12%;
|
|
|
+ text-align: center;
|
|
|
+ font-family: "Agency FB";
|
|
|
+}
|
|
|
+
|
|
|
+.rectangle1Click {
|
|
|
+ width: 53%;
|
|
|
+ height: 70%;
|
|
|
+ position: absolute;
|
|
|
+ background-color: rgba(0, 0, 40, 1);
|
|
|
+ margin-top: 5%;
|
|
|
+ margin-left: 21%;
|
|
|
+ /* margin-top: -22%;
|
|
|
+ margin-left: -23%; */
|
|
|
+ z-index: 99;
|
|
|
+}
|
|
|
+
|
|
|
+.rectangle2Click {
|
|
|
+ position: absolute;
|
|
|
+ width: 50%;
|
|
|
+ height: 113%;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ background-color: rgba(0, 0, 40, 1);
|
|
|
+ /* margin-top: -11.6%; */
|
|
|
+ /* margin-left: 20.5%; */
|
|
|
+ margin-top: -3.6%;
|
|
|
+ margin-left: 22.5%;
|
|
|
+ z-index: 99;
|
|
|
+ padding-bottom: 15px;
|
|
|
+}
|
|
|
+
|
|
|
+.rectangle3Click {
|
|
|
+ position: absolute;
|
|
|
+ width: 60%;
|
|
|
+ height: 80%;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ background-color: rgba(0, 0, 40, 1);
|
|
|
+ margin-top: -22%;
|
|
|
+ margin-left: 15%;
|
|
|
+ /* margin-top: -21.1%;
|
|
|
+ margin-left: -4.5%; */
|
|
|
+ z-index: 99;
|
|
|
+}
|
|
|
+
|
|
|
+.rectangle4Click {
|
|
|
+ position: absolute;
|
|
|
+ width: 36%;
|
|
|
+ height: 62%;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ background-color: rgba(0, 0, 40, 1);
|
|
|
+ /*margin-top: -21.9%;*/
|
|
|
+ /*margin-left: -14.5%;*/
|
|
|
+ margin-top: -17.9%;
|
|
|
+ margin-left: 2.5%;
|
|
|
+ z-index: 99;
|
|
|
+}
|
|
|
+
|
|
|
+.rectangle5Click {
|
|
|
+ position: absolute;
|
|
|
+ width: 66%;
|
|
|
+ height: 62%;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ background-color: rgba(0, 0, 40, 1);
|
|
|
+ margin-top: 6%;
|
|
|
+ margin-left: -52%;
|
|
|
+ /* margin-top: 4.1%;
|
|
|
+ margin-left: -52.5%; */
|
|
|
+ z-index: 99;
|
|
|
+}
|
|
|
+
|
|
|
+.rectangle6Click {
|
|
|
+ position: absolute;
|
|
|
+ width: 60%;
|
|
|
+ height: 80%;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ background-color: rgba(0, 0, 40, 1);
|
|
|
+ margin-top: -10%;
|
|
|
+ margin-left: -48%;
|
|
|
+ z-index: 99;
|
|
|
+}
|
|
|
+
|
|
|
+.rectangle7Click {
|
|
|
+ position: absolute;
|
|
|
+ width: 60%;
|
|
|
+ height: 80%;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ background-color: rgba(0, 0, 40, 1);
|
|
|
+ margin-top: -24%;
|
|
|
+ margin-left: -48%;
|
|
|
+ z-index: 99;
|
|
|
+}
|
|
|
+
|
|
|
+.el-date-editor /deep/ .el-input__inner {
|
|
|
+ height: 10%;
|
|
|
+ background-color: #000000;
|
|
|
+ color: white;
|
|
|
+ border: #00b3ea 1px solid;
|
|
|
+ width: 110px;
|
|
|
+}
|
|
|
+
|
|
|
+.el-date-editor /deep/ .el-input__prefix {
|
|
|
+ top: -42%;
|
|
|
+}
|
|
|
+</style>
|
|
|
+
|
|
|
+<style>
|
|
|
+.date-picker-government-service-municipal {
|
|
|
+ border-color: #066088;
|
|
|
+}
|
|
|
+
|
|
|
+.date-picker-government-service-municipal .el-picker-panel__body-wrapper {
|
|
|
+ background-color: #066088;
|
|
|
+ border-color: #066088;
|
|
|
+}
|
|
|
+
|
|
|
+.date-picker-government-service-municipal .el-date-picker__header {
|
|
|
+ background-color: #066088;
|
|
|
+ margin: 0;
|
|
|
+ padding: 0;
|
|
|
+}
|
|
|
+
|
|
|
+.date-picker-government-service-municipal .el-date-picker__header-label {
|
|
|
+ color: white;
|
|
|
+}
|
|
|
+
|
|
|
+.date-picker-government-service-municipal .el-year-table .cell {
|
|
|
+ color: white;
|
|
|
+}
|
|
|
+
|
|
|
+.date-picker-government-service-municipal .el-picker-panel__icon-btn {
|
|
|
+ color: white;
|
|
|
+}
|
|
|
+
|
|
|
+.date-picker-government-service-municipal .el-year-table td.current:not(.disabled) .cell {
|
|
|
+ color: #00b3ea;
|
|
|
+}
|
|
|
+
|
|
|
+.date-picker-government-service-municipal .el-year-table td.disabled .cell {
|
|
|
+ opacity: 0.5;
|
|
|
+ color: white;
|
|
|
+ background-color: #066088;
|
|
|
+}
|
|
|
+
|
|
|
+.date-picker-government-service-municipal .el-date-picker__header {
|
|
|
+ border-color: #029acd;
|
|
|
+}
|
|
|
+
|
|
|
+.date-picker-government-service-municipal .el-year-table td.today .cell {
|
|
|
+ color: #97656b;
|
|
|
+}
|
|
|
+
|
|
|
+.date-picker-government-service-municipal .el-year-table td .cell:hover {
|
|
|
+ color: rgb(0, 0, 0);
|
|
|
+}
|
|
|
+</style>
|