zhanghongrui il y a 11 mois
Parent
commit
982cb8d011
1 fichiers modifiés avec 21 ajouts et 3 suppressions
  1. 21 3
      pages/open_bolt/open_bolt.vue

+ 21 - 3
pages/open_bolt/open_bolt.vue

@@ -155,9 +155,9 @@
 				<view class="container" style="border-bottom: 1px solid #f8f8f8;">
 					<view class="uni-common-mt" style="width: 100%;">
 						<view style="width: 100%;box-sizing: border-box;">
-							
-							<checkbox-group  @change="checkboxChange">
-								<checkbox style="margin-left: 15rpx;" v-for="(item, index) in checkItems" :key="index"
+
+							<checkbox-group @change="checkboxChange">
+								<checkbox style="margin-right: 30rpx;" v-for="(item, index) in checkItems" :key="index"
 									:value="item.dictValue" :checked="item.checked">{{ item.dictLabel }}</checkbox>
 							</checkbox-group>
 
@@ -1364,4 +1364,22 @@
 			min-height: 100upx;
 			line-height: 20px;
 		}
+
+		// checkbox {
+		//     transform: scale(0.67);
+		//     border-radius: 50rpx;
+		//   }
+
+		checkbox .wx-checkbox-input {
+			// border-radius: 50%;
+			border-color: #AAAAAA !important;
+			width: 30rpx;
+			height: 30rpx;
+		}
+
+		checkbox .wx-checkbox-input.wx-checkbox-input-checked {
+			background: #2D6EFC;
+			border-color: #2D6EFC !important;
+			color: #fff;
+		}
 	</style>