sunran преди 3 години
родител
ревизия
7b28ae8623
променени са 2 файла, в които са добавени 8 реда и са изтрити 3 реда
  1. 8 2
      src/views/weibao/views/consultation/initiateConsultation.vue
  2. 0 1
      src/views/weibao/views/followUp/addfollow.vue

+ 8 - 2
src/views/weibao/views/consultation/initiateConsultation.vue

@@ -45,13 +45,13 @@
           <van-col span="6">参与单位:</van-col>
           <van-col span="18">
             <van-field v-model="form.participateOrgName" :rules="[{ required: true}]" @click="ownerShow=true" placeholder="请选择参与单位" disabled />
-            <van-popup v-model="ownerShow" position="bottom" :style="{ height: '30%' }">
+            <van-popup v-model="ownerShow" position="bottom" :style="{ height: '50%' }">
               <div class="popup">
                 <div class="btn">
                   <div @click="ownerShow=false" class="cancle">取消</div>
                   <div @click="ownerConfirm" class="confirm">确定</div>
                 </div>
-                <van-checkbox-group v-model="result">
+                <van-checkbox-group class="group" v-model="result">
                   <van-cell-group>
                     <van-cell v-for="(item,index) in orgform" clickable :key="index" :title="item.name" @click="toggle(item,index)">
                       <template #right-icon>
@@ -275,6 +275,11 @@ export default {
   height: calc(100vh - 220px);
   overflow: auto;
 }
+.group {
+  margin-top: 30px;
+  height: calc(100% - 180px);
+  overflow: auto;
+}
 .tx {
   width: 160px;
   height: 160px;
@@ -384,6 +389,7 @@ export default {
   -webkit-text-fill-color: unset;
 }
 .popup {
+  height: 100%;
   padding: 0 30px;
   .btn {
     padding: 16px 0;

+ 0 - 1
src/views/weibao/views/followUp/addfollow.vue

@@ -128,7 +128,6 @@
 import {
   saveFollowUp,
   getStreetList,
-  uploadImage,
   listChildInfoByName,
 } from '../../api/index.js'
 import vanUploader from '../../components/vanUploader.vue'