Browse Source

选择房间样式调整

gqx 2 years ago
parent
commit
c0eced0fd3

+ 3 - 0
src/views/room/modules/checkIn/BillRoomForm.vue

@@ -849,6 +849,9 @@
                     </div>
                   </a-tabs>
                 </div>
+                <div style="display:flex;justify-content: end; margin-top:20px;">
+
+<a-checkbox defaultChecked>打印入住登记单</a-checkbox></div>
               </div>
             </div>
           </div>

+ 5 - 2
src/views/room/modules/checkIn/SelectRoomForm.vue

@@ -17,7 +17,7 @@
               <a-checkbox-group @change="onChange" v-model="checkLayoutList">
                 <a-row>
                   <a-col
-                    :span="12"
+                    :span="6"
                     v-for="(item, index) in roomLayoutList"
                     :key="item.id"
                   >
@@ -94,7 +94,7 @@
                       >
                         <div
                           :class="[
-                            r.check == 1 ? 'check' : '',
+                            r.check == 1 ? 'check' : 'nocheck',
                             r.kz == 1 ? 'kz' : '',
                           ]"
                           @click="checkRoomClick(r)"
@@ -312,4 +312,7 @@ export default {
   font-size: 13px;
   padding: 8px 16px;
 }
+#components-grid-demo-playground .nocheck {
+  border: 1px solid #cccccc;
+}
 </style>