yjryu / KERIS star
Stormen123 2023-12-04
231204 김성훈 기업홍보관 매칭 수정중
@23b09d0355a3e7607519fdb17a7f377750ae787c
client/resources/css/Main.css
--- client/resources/css/Main.css
+++ client/resources/css/Main.css
@@ -843,8 +843,8 @@
   position: fixed;
   top: 50%;
   left: 50%;
-  width: 400px;
-  height: 400px;
+  width: 500px;
+  height: 600px;
   transform: translate(-50%, -50%);
   background: white;
   padding: 20px;
@@ -855,8 +855,8 @@
 
 .mat-scroll{
   width: 100%;
-  max-height: 400px;
-
+  max-height: 500px;
+  padding: 0 1.5rem;
   overflow-y: scroll ;
 }
 
client/views/pages/user/networking/MatchingOne.vue
--- client/views/pages/user/networking/MatchingOne.vue
+++ client/views/pages/user/networking/MatchingOne.vue
@@ -89,29 +89,30 @@
         </div>
         <div class="mat-scroll">
             <table class="mat-modal-img">
-            <colgroup>
-                <col style="width: 30%;" />
-                <col style="width: 40%;" />
-                <col style="width: 30%;" />
-            </colgroup>
-            <tbody>
-                <tr v-for="(item, idx) in pickSelectList" :key="idx">
-                    <td>
-                        <p>
-                            <img :src="'http://localhost:8080' + item.file_path + '/' + item.file_nm + '.' + item.file_extn_nm">
-                        </p>
-                    </td>
-                    
-                    <td style=" text-align : center;">
-                        {{ item.company_nm }}
-                    </td>
-                    <td>
-                        <button v-if="item.pick_yn" disabled :style="{ backgroundColor: '#ccc' }">완료</button>
-                        <button v-else :style="{ backgroundColor: '#3f87f7' }" @click="modalPick(item)"> 수락</button>
-                    </td>
-                </tr>
-            </tbody>
-        </table>
+                <colgroup>
+                    <col style="width: 30%;" />
+                    <col style="width: 40%;" />
+                    <col style="width: 30%;" />
+                </colgroup>
+                <tbody>
+                    <tr v-for="(item, idx) in pickSelectList" :key="idx">
+                        <td>
+                            <p>
+                                <img :src="'http://localhost:8080' + item.file_path + '/' + item.file_nm + '.' + item.file_extn_nm">
+                            </p>
+                        </td>
+                        
+                        <td style=" text-align : center;">
+                            {{ item.company_nm }}
+                        </td>
+                        <td>
+                            <button v-if="item.pick_yn && item.refuse_yn == 'N'" disabled :style="{ backgroundColor: '#ccc' }">완료</button>
+                            <button v-else-if="item.refuse_yn == 'Y'" disabled :style="{ backgroundColor: 'rgb(221, 97, 97)' }">거절함</button>
+                            <button v-else :style="{ backgroundColor: '#3f87f7' }" @click="modalPick(item)"> 수락</button>
+                        </td>
+                    </tr>
+                </tbody>
+            </table>
         </div>
       
     </div>
Add a comment
List