zzy 2 years ago
parent
commit
7a47a61c17

+ 2 - 0
src/assets/styles/global.scss

@@ -358,10 +358,12 @@
   overflow: hidden;
   @media screen and (max-height: 980px) {
     background: url("../../assets/imgs/带手指低.png") no-repeat;
+    background-size: 100% 100% !important;
   }
 
   @media screen and (min-height: 980px) {
     background: url("../../assets/imgs/带手指高.png") no-repeat;
+    background-size: 100% 100% !important;
   }
   background-size: 100% !important;
   width:99%;

+ 2 - 2
src/components/common-panel/CommonPanel.vue

@@ -32,12 +32,12 @@ export default {
   justify-content: space-between;
   @media screen and (max-height: 980px) {
     background: url("../../assets/imgs/带手指低.png") no-repeat;
-
+    background-size: 100% 100% !important;
   }
 
   @media screen and (min-height: 980px) {
     background: url("../../assets/imgs/带手指高.png") no-repeat;
-
+    background-size: 100% 100% !important;
   }
   background-size: 100% 100% !important;
   width:99%;

+ 2 - 1
src/components/evaluate/EvaluateCard.vue

@@ -7,8 +7,8 @@
 
         </div>
         <div class="single_right">
-          <span class="single_title">{{item.name}}</span>
           <span class="single_num">{{item.value}}</span>
+          <span class="single_title">{{item.name}}</span>
 
         </div>
       </div>
@@ -143,6 +143,7 @@ export default {
       }
       .single_right{
         height: 100%;
+        width: 50%;
         display: flex;
         flex-direction: column;
         align-items: center;

+ 6 - 5
src/components/event-sta/EventSta.vue

@@ -4,7 +4,7 @@
      事项统计
    </div>
    <div class="show_content">
-     <div class="echarts flex1" ref="echarts">
+     <div class="echarts" ref="echarts">
 
      </div>
      <div class="e_table">
@@ -201,13 +201,14 @@ export default {
     height: 100%;
     display: flex;
     flex-direction: row;
-    justify-content: center;
+    justify-content: space-between;
     align-items: center;
     .echarts{
-      width: 35%;
+      width: 25% !important;
+      height: 100%;
     }
     .e_table{
-      width: 65%;
+      width: 75%;
       height: 95%;
       display: flex;
       flex-direction: column;
@@ -230,7 +231,7 @@ export default {
       padding-left: 10px;
       padding-right: 10px;
       color: #fff;
-      font-size: 15px;
+      font-size: 18px;
       height: 30px;
       line-height: 30px;
       .nameStatus{

+ 1 - 0
src/components/remind-handle-sta/RemindHandleS.vue

@@ -145,6 +145,7 @@ export default {
       }
       .single_right{
         height: 100%;
+        width: 50%;
         display: flex;
         flex-direction: column;
         align-items: center;

+ 1 - 1
src/components/total-handle/TotalHandle.vue

@@ -545,7 +545,7 @@ export default {
           justify-content: flex-start;
           align-items: center;
           .single_font{
-            font-size: 16px;
+            font-size: 18px;
             color:#fff;
           }
         }

+ 10 - 10
src/echarts/option.js

@@ -85,9 +85,9 @@ export function setEventStaOption(ele,trafficWay){
             name: '',
             type: 'pie',
             clockWise: false,
-            radius: [85, 85],
+            radius: [65, 65],
             hoverAnimation: false,
-            center: ['45%', '50%'],
+            center: ['51%', '50%'],
             itemStyle: {
                 normal: {
                     label: {
@@ -126,10 +126,10 @@ export function setEventStaOption(ele,trafficWay){
                     z: 3,
                     style: {
                         image: img,
-                        width: 150,
-                        height: 150,
+                        width: 115,
+                        height: 115,
                     },
-                     left: '9%',
+                     left: '12%',
                      top: 'center',
                 },
             ],
@@ -187,7 +187,7 @@ export function setUnitEventOption(ele,dataX,dataXTotal,dataY) {
                 left:'-8',
                 color:'#fff',
                 margin:5,
-                fontSize:14,
+                fontSize:15,
                 textStyle:{
                     align:'right'
                 }
@@ -650,7 +650,7 @@ export function setTrendBtMonthOption(ele,dataX,XZXK,QTQL,XZQR,XZJL,XZZS,GGFW) {
             data: ['行政许可', '行政确认', '行政奖励', '行政征收', '其他权利', '公共服务'],
             textStyle: { //图例文字的样式
                 color: '#fff',
-                fontSize: 14
+                fontSize: 15
             },
         },
 
@@ -659,8 +659,8 @@ export function setTrendBtMonthOption(ele,dataX,XZXK,QTQL,XZQR,XZJL,XZZS,GGFW) {
             containLabel:true,
             left:'10%',
             right:'6%',
-            top:'15%',
-            bottom:'10%',
+            top:'25%',
+            bottom:'5%',
         },
         xAxis: {
             axisTick:{
@@ -815,7 +815,7 @@ export function setHandleStaticOption(ele,dataX,dataXTotal,dataY){
                 left:'-50',
                 color:'#fff',
                 margin:5,
-                fontSize:14,
+                fontSize:15,
                 textStyle:{
                     align:'right'
                 }

+ 4 - 2
src/views/electricCard/ElectricCard.vue

@@ -10,7 +10,7 @@
               element-loading-background="rgba(3, 30, 57, 0.8)">
         <el-form :inline="true" :model="form" class="demo-form-inline">
           <el-row :gutter="20">
-            <el-col :span="20">
+            <el-col :span="16">
               <div class="grid-content bg-purple">
                 <el-form-item v-if="!hasOperation" label="证照名称">
                   <el-input v-model="form.name" placeholder="" clearable></el-input>
@@ -28,7 +28,7 @@
               </div>
             </el-col>
 
-            <el-col :span="4">
+            <el-col :span="8">
               <el-form-item class="setSearch">
                 <el-button class="role_button" role_button_code="a7fbde48-0228-4896-8af2-3a47a1ba0c67" type="primary" @click="onSubmitSearch">查询</el-button>
                 <el-button class="role_button" role_button_code="7ac44236-79a2-4905-85e4-13e5cae09288"  v-show="eletricCurrentId=='1'||eletricCurrentId=='2'" @click="downloadModel()" type="primary">导入模板</el-button>
@@ -596,10 +596,12 @@ export default {
   justify-content: flex-start;
   @media screen and (max-height: 980px) {
     background: url("../../assets/imgs/带手指低.png") no-repeat;
+    background-size: 100% 100% !important;
   }
 
   @media screen and (min-height: 980px) {
     background: url("../../assets/imgs/带手指高.png") no-repeat;
+    background-size: 100% 100% !important;
   }
   background-size: 100% !important;
   margin-left: 0.5%;

+ 1 - 1
src/views/evaluate/EvaluateRepeat.vue

@@ -48,7 +48,7 @@
                        :onSuccess="uploadSuccess"
                        :beforeUpload="beforeAvatarUpload"
                        :file-list="fileList">
-              <el-button class="role_button" role_button_code="5190f699-c2d9-4d14-ae11-39d6b06c0d28"   type="primary">点击上传</el-button>
+              <el-button class="role_button" role_button_code="5190f699-c2d9-4d14-ae11-39d6b06c0d28"   type="primary">上传</el-button>
             </el-upload>
           </el-form-item>
         </el-col>

+ 2 - 0
src/views/handle_analysis/HandleAnalysis.vue

@@ -294,10 +294,12 @@ export default {
   justify-content: space-between;
   @media screen and (max-height: 980px) {
     background: url("../../assets/imgs/带手指低.png") no-repeat;
+    background-size: 100% 100% !important;
   }
 
   @media screen and (min-height: 980px) {
     background: url("../../assets/imgs/带手指高.png") no-repeat;
+    background-size: 100% 100% !important;
   }
   background-size: 100% !important;
   width:99%;

+ 2 - 0
src/views/handle_situation/HandleSituation.vue

@@ -2025,10 +2025,12 @@ export default {
   justify-content: flex-start;
   @media screen and (max-height: 980px) {
     background: url("../../assets/imgs/带手指低.png") no-repeat;
+    background-size: 100% 100% !important;
   }
 
   @media screen and (min-height: 980px) {
     background: url("../../assets/imgs/带手指高.png") no-repeat;
+    background-size: 100% 100% !important;
   }
   background-size: 100% !important;
   width:99%;

+ 42 - 3
src/views/matters_guidance/mian_body/MainBody.vue

@@ -18,13 +18,21 @@
       <div class="right_content">
         <el-form :inline="true" :model="form" class="demo-form-inline">
           <el-row :gutter="20">
-            <el-col :span="20">
+            <el-col :span="16">
               <div class="grid-content bg-purple">
               <el-form-item label="事项名称">
                 <el-input v-model="form.name" placeholder="" clearable></el-input>
               </el-form-item>
               <el-form-item label="责任部门">
-                <el-input v-model="form.operationUnit" placeholder="" clearable></el-input>
+<!--                <el-input v-model="form.operationUnit" placeholder="" clearable></el-input>-->
+                <el-select v-model="form.operationUnit" placeholder="请选择">
+                  <el-option
+                      v-for="item in operationUnitList"
+                      :key="item.label"
+                      :label="item.label"
+                      :value="item.value">
+                  </el-option>
+                </el-select>
               </el-form-item>
                 <el-form-item label="类型">
                   <el-select v-model="form.commitType" placeholder="请选择">
@@ -39,7 +47,7 @@
             </div>
             </el-col>
 
-            <el-col :span="4"><div class="grid-content bg-purple">
+            <el-col :span="8"><div class="grid-content bg-purple" style="float: right">
               <el-form-item>
                 <el-button type="primary" class="role_button" role_button_code="8f55b710-6f34-4722-9666-582f8f04ad01" @click="onSubmitSearch">查询</el-button>
                 <el-button class="role_button" role_button_code="4a2fbabd-45db-4408-8268-b3dbd5617b2a" type="primary" @click="downloadModel()">导入模板</el-button>
@@ -340,6 +348,7 @@ export default {
       total_unit:'住建委',
       totalItem:0,
       totalSituation:0,
+      operationUnitList:[],
       commitTypeList:[
         {
           label:'全部',
@@ -1007,10 +1016,38 @@ export default {
         ZJWself.tableHeight = window.innerHeight - self.$refs.Table.$el.offsetTop - 150;
       }
     });
+    this.getOperationUnitList();
     // this.autoRoll();
     // this.autoChange();
   },
   methods:{
+    getOperationUnitList(){
+      this.$request({
+        url:'/YWTBApi/queryResponsibleDepartment',
+        method:'post',
+        data:{
+          "appkey":localStorage.getItem("ywtb_userkeycode")
+        }
+      }).then(response => {
+        this.loadInfo ='';
+        let useData= []
+        let dataArr = response.data.msg[0].Rows;
+        useData.push(
+            {
+              label:'全部',
+              value: '',
+            }
+        )
+        for(let i=0;i<dataArr.length;i++){
+          let tempdata = {
+            label:dataArr[i].RESPONSIBLE_DEPARTMENT,
+            value: dataArr[i].RESPONSIBLE_DEPARTMENT,
+          }
+          useData.push(tempdata);
+        }
+        this.operationUnitList = useData;
+      })
+    },
     uploadError (response, file, fileList) {
       this.loading=false;
       console.log('上传失败,请重试!',response, file, fileList)
@@ -1422,10 +1459,12 @@ export default {
   justify-content: space-between;
   @media screen and (max-height: 980px) {
     background: url("../../../assets/imgs/带手指低.png") no-repeat;
+    background-size: 100% 100% !important;
   }
 
   @media screen and (min-height: 980px) {
     background: url("../../../assets/imgs/带手指高.png") no-repeat;
+    background-size: 100% 100% !important;
   }
   background-size: 100% !important;