

231204 김성훈 기업홍보관 매칭 수정중
@23b09d0355a3e7607519fdb17a7f377750ae787c
--- client/resources/css/Main.css
+++ client/resources/css/Main.css
... | ... | @@ -843,8 +843,8 @@ |
843 | 843 |
position: fixed; |
844 | 844 |
top: 50%; |
845 | 845 |
left: 50%; |
846 |
- width: 400px; |
|
847 |
- height: 400px; |
|
846 |
+ width: 500px; |
|
847 |
+ height: 600px; |
|
848 | 848 |
transform: translate(-50%, -50%); |
849 | 849 |
background: white; |
850 | 850 |
padding: 20px; |
... | ... | @@ -855,8 +855,8 @@ |
855 | 855 |
|
856 | 856 |
.mat-scroll{ |
857 | 857 |
width: 100%; |
858 |
- max-height: 400px; |
|
859 |
- |
|
858 |
+ max-height: 500px; |
|
859 |
+ padding: 0 1.5rem; |
|
860 | 860 |
overflow-y: scroll ; |
861 | 861 |
} |
862 | 862 |
|
--- client/views/pages/user/networking/MatchingOne.vue
+++ client/views/pages/user/networking/MatchingOne.vue
... | ... | @@ -89,29 +89,30 @@ |
89 | 89 |
</div> |
90 | 90 |
<div class="mat-scroll"> |
91 | 91 |
<table class="mat-modal-img"> |
92 |
- <colgroup> |
|
93 |
- <col style="width: 30%;" /> |
|
94 |
- <col style="width: 40%;" /> |
|
95 |
- <col style="width: 30%;" /> |
|
96 |
- </colgroup> |
|
97 |
- <tbody> |
|
98 |
- <tr v-for="(item, idx) in pickSelectList" :key="idx"> |
|
99 |
- <td> |
|
100 |
- <p> |
|
101 |
- <img :src="'http://localhost:8080' + item.file_path + '/' + item.file_nm + '.' + item.file_extn_nm"> |
|
102 |
- </p> |
|
103 |
- </td> |
|
104 |
- |
|
105 |
- <td style=" text-align : center;"> |
|
106 |
- {{ item.company_nm }} |
|
107 |
- </td> |
|
108 |
- <td> |
|
109 |
- <button v-if="item.pick_yn" disabled :style="{ backgroundColor: '#ccc' }">완료</button> |
|
110 |
- <button v-else :style="{ backgroundColor: '#3f87f7' }" @click="modalPick(item)"> 수락</button> |
|
111 |
- </td> |
|
112 |
- </tr> |
|
113 |
- </tbody> |
|
114 |
- </table> |
|
92 |
+ <colgroup> |
|
93 |
+ <col style="width: 30%;" /> |
|
94 |
+ <col style="width: 40%;" /> |
|
95 |
+ <col style="width: 30%;" /> |
|
96 |
+ </colgroup> |
|
97 |
+ <tbody> |
|
98 |
+ <tr v-for="(item, idx) in pickSelectList" :key="idx"> |
|
99 |
+ <td> |
|
100 |
+ <p> |
|
101 |
+ <img :src="'http://localhost:8080' + item.file_path + '/' + item.file_nm + '.' + item.file_extn_nm"> |
|
102 |
+ </p> |
|
103 |
+ </td> |
|
104 |
+ |
|
105 |
+ <td style=" text-align : center;"> |
|
106 |
+ {{ item.company_nm }} |
|
107 |
+ </td> |
|
108 |
+ <td> |
|
109 |
+ <button v-if="item.pick_yn && item.refuse_yn == 'N'" disabled :style="{ backgroundColor: '#ccc' }">완료</button> |
|
110 |
+ <button v-else-if="item.refuse_yn == 'Y'" disabled :style="{ backgroundColor: 'rgb(221, 97, 97)' }">거절함</button> |
|
111 |
+ <button v-else :style="{ backgroundColor: '#3f87f7' }" @click="modalPick(item)"> 수락</button> |
|
112 |
+ </td> |
|
113 |
+ </tr> |
|
114 |
+ </tbody> |
|
115 |
+ </table> |
|
115 | 116 |
</div> |
116 | 117 |
|
117 | 118 |
</div> |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?