• uniapp 车牌号输入 车牌号键盘 新能源车牌键盘 特殊车辆车牌键盘


    1:效果图
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述

    2:代码:

    <template>
    	<view class="container">
    		<view class="car_type_box">
    			<view :class="[currentIndex == index ? 'active' : 'car_type_item']" v-for="(item, index) in carTypeList" :key="index" @click.stop="typeCurrent(index)">
    				{{item.name}}
    			</view>
    		</view>
    		<view class="car_number_input">
    			<view class="car_type" @click.stop="keyShow = !keyShow">
    				<view class="default_car">
    					<view class="" v-show="carNumber[0]">
    						{{carNumber[0]}}
    					</view>
    					<view class="line" v-show="!carNumber[0]">
    						__
    					</view>
    				</view>
    				<view class="default_car">
    					<view class="" v-show="carNumber[1]">
    						{{carNumber[1]}}
    					</view>
    					<view class="line" v-show="carNumber[0] && !carNumber[1]">
    						__
    					</view>
    				</view>
    				<view class="default_car">
    					<view class="" v-show="carNumber[2]">
    						{{carNumber[2]}}
    					</view>
    					<view class="line" v-show="carNumber[0] && carNumber[1] && !carNumber[2]">
    						__
    					</view>
    				</view>
    				<view class="default_car">
    					<view class="" v-show="carNumber[3]">
    						{{carNumber[3]}}
    					</view>
    					<view class="line" v-show="carNumber[0] && carNumber[1] && carNumber[2] && !carNumber[3]">
    						__
    					</view>
    				</view>
    				<view class="default_car">
    					<view class="" v-show="carNumber[4]">
    						{{carNumber[4]}}
    					</view>
    					<view class="line" v-show="carNumber[0] && carNumber[1] && carNumber[2] && carNumber[3] && !carNumber[4]">
    						__
    					</view>
    				</view>
    				<view class="default_car">
    					<view class="" v-show="carNumber[5]">
    						{{carNumber[5]}}
    					</view>
    					<view class="line" v-show="carNumber[0] && carNumber[1] && carNumber[2] && carNumber[3] && carNumber[4] && !carNumber[5]">
    						__
    					</view>
    				</view>
    				<view class="default_car">
    					<view class="" v-show="carNumber[6]">
    						{{carNumber[6]}}
    					</view>
    					<view class="line" v-show="carNumber[0] && carNumber[1] && carNumber[2] && carNumber[3] && carNumber[4] && carNumber[5] && !carNumber[6]">
    						__
    					</view>
    				</view>
    				<view class="default_car" v-show="currentIndex == 1">
    					<view class="" v-show="carNumber[7]">
    						{{carNumber[7]}}
    					</view>
    					<view class="line" v-show="carNumber[0] && carNumber[1] && carNumber[2] && carNumber[3] && carNumber[4] && carNumber[5] && carNumber[6] && !carNumber[7]">
    						__
    					</view>
    				</view>
    			</view>
    		</view>
    		<view class="tips">
    			注:请输入真实有效的车牌号
    		</view>
    		<view class="add_car_box" @click.stop="addCar">
    			<view :class="[sureColor ? 'add_car' : 'dis_car']">
    				确认
    			</view>
    		</view>
    		<!-- 键盘 -->
    		<view class="keyboard-content" v-show="keyShow">
    			<!-- 省份键盘 -->
    			<template v-if="provinceBoardShow">
    				<view class="province-keyboard flex">
    					<view 
    						class="td td-nor color-333" 
    						v-for="(item,index) in provincesKeyList"
    						:key="index"
    						@click="provinceKeyClick(item,index)"
    						hover-class="board-active"
    						hover-start-time="0" 
    						hover-stay-time="80">
    						{{item}}
    					</view>
    				</view>
    			</template>
    			<!--数字键盘-->
    			<template v-if="!provinceBoardShow">
    				<view class="number-keyboard flex between">
    					<template>
    						<view 
    							class="td td-num color-333" 
    							:class="numberIsDis ? 'board-active' : ''"
    							v-for="(item,index) in numberKeyList"
    							:key="index"
    							@click="numberKeyClick(item,index)"
    							:hover-class="numberIsDis ? '' : 'board-active'"
    							hover-start-time="0" 
    							hover-stay-time="80">
    							{{item}}
    						</view>
    					</template>
    				</view>
    			</template>
    			<!--字母键盘-->
    			<template v-if="!provinceBoardShow">
    				<view class="english-keyboard flex between">
    					<template>
    						<view 
    							class="td td-num color-333" 
    							:class="englishIsDis ? 'board-active' : ''"
    							v-for="(item,idx) in englishKeyOneList"
    							:key="idx"
    							@click="englishKeyClick(item,idx)"
    							:hover-class="englishIsDis ? '' : 'board-active'" 
    							hover-start-time="0" 
    							hover-stay-time="80">
    							{{item}}
    						</view>
    					</template>
    				</view>
    				<!-- 最后一行 -->
    				<view class="english-keyboard flex englishtTwo">
    					<template>
    						<view 
    							class="td td-num color-333"
    							:class="englishIsDis ? 'board-active' : ''"
    							v-for="(item,index) in englishKeyTwoList"
    							:key="index"
    							@click="englishKeyClick(item,index)"
    							:hover-class="englishIsDis ? '' : 'board-active'" 
    							hover-start-time="0" 
    							hover-stay-time="80">
    							{{item}}
    						</view>
    					</template>
    					
    					<!-- 挂字键 -->
    					<template>
    						<view
    							@click="trailerFiledClick('港')"
    							class="td td-num color-333"
    							:class="trailerFiledIsDis ? 'board-active' : ''"
    							:hover-class="trailerFiledIsDis ? '' : 'board-active'"
    							hover-start-time="0" 
    							hover-stay-time="80"
    						></view>
    						<view
    							@click="trailerFiledClick('澳')"
    							class="td td-num color-333"
    							:class="trailerFiledIsDis ? 'board-active' : ''"
    							:hover-class="trailerFiledIsDis ? '' : 'board-active'"
    							hover-start-time="0" 
    							hover-stay-time="80"
    						></view>
    						<view
    							@click="trailerFiledClick('学')"
    							class="td td-num color-333"
    							:class="trailerFiledIsDis ? 'board-active' : ''"
    							:hover-class="trailerFiledIsDis ? '' : 'board-active'"
    							hover-start-time="0" 
    							hover-stay-time="80"
    						></view>
    						<view
    							@click="trailerFiledClick('挂')"
    							class="td td-num color-333"
    							:class="trailerFiledIsDis ? 'board-active' : ''"
    							:hover-class="trailerFiledIsDis ? '' : 'board-active'"
    							hover-start-time="0" 
    							hover-stay-time="80"
    						></view>
    						<view
    							@click="trailerFiledClick('警')"
    							class="td td-num color-333"
    							:class="trailerFiledIsDis ? 'board-active' : ''"
    							:hover-class="trailerFiledIsDis ? '' : 'board-active'"
    							hover-start-time="0" 
    							hover-stay-time="80"
    						></view>
    					</template>
    				</view>
    			</template>
    		</view>
    		<!--清除按钮-->
    		<view @click.stop="backspace" class="delete flex" v-show="keyShow">清除</view>
    		<view @click.stop="sure" class="sure flex" v-show="keyShow">确定</view>
    	</view>
    </template>
    
    <script>
    	export default {
    		name:"add-car-input",
    		data() {
    			return {
    				keyShow: true, // 键盘是否显示
    				sureColor: false,
    				current: 0,
    				carNumber: [],
    				// carNumber: ['陕', 'A', '8', '8', '8', '8', '8', '8'],
    				carTypeList: [{
    						name: '普通车'
    					},
    					{
    						name: '新能源'
    					},
    					{
    						name: '黄牌车'
    					}],
    				currentIndex: 0,
    				provincesKeyList: '京津冀晋蒙辽吉黑沪苏浙皖闽赣鲁豫鄂湘粤桂琼渝川贵云藏陕甘青宁新',
    				provinceBoardShow: true, // 省键盘
    				numberKeyList: '0123456789',
    				numberIsDis: true, // 输入键盘不可点击 true为不可点击
    				englishIsDis: false, // 字母键盘可点击
    				numberKeyList: '0123456789',
    				englishKeyOneList: 'ABCDEFGHJKLMNPQRSTUVWX',
    				englishKeyTwoList: 'YZ',
    				trailerFiledIsDis: true, // 挂字禁用
    
    			};
    		},
    		onLoad() {},
    		onShow() {},
    		watch: {
    			'carNumber.length': {
    				handler(newVal, oldValue) {
    					console.log(newVal, oldValue, 'newVal, oldValue')
    					if((this.currentIndex == 0 && newVal <= 6) || (this.currentIndex == 2 && newVal <= 6) || (this.currentIndex == 1 && newVal <= 7)) {
    						this.sureColor = false
    					} else {
    						this.sureColor = true
    					}
    					this.setTrailerKeyboardDis()
    				},
    				deep: true
    			}
    		},
    		methods: {
    			typeCurrent (index) {
    				this.currentIndex = index
    				this.carNumber = []
    				this.current = 0
    				this.provinceBoardShow = true
    				this.numberIsDis = true;
    				this.englishIsDis = true
    				this.trailerFiledIsDis = true;
    				this.$forceUpdate()
    			},
    			// 省份键盘
    			provinceKeyClick(val,index) {
    				this.carNumber[0] = val
    				this.provinceBoardShow = false
    				this.numberIsDis = true;
    				this.englishIsDis = false
    				this.current++
    				this.$forceUpdate()
    				console.log(this.current, 'current')
    			},
    			// 数字键盘
    			numberKeyClick(val,idx) {
    				console.log(this.currentIndex, this.carNumber.length, 'this.carNumber.length00')
    				if(this.numberIsDis) return
    				if((this.currentIndex == 0 && this.carNumber.length >= 6) || (this.currentIndex == 2 && this.carNumber.length >= 6) || (this.currentIndex == 1 && this.carNumber.length >= 7)) {
    					this.sureColor = true
    				}
    				if((this.currentIndex == 0 && this.carNumber.length >= 7) || (this.currentIndex == 2 && this.carNumber.length >= 7) || (this.currentIndex == 1 && this.carNumber.length >= 8)) return
    				this.current++
    				this.carNumber[this.current - 1] = val;
    				this.setTrailerKeyboardDis()
    				this.$forceUpdate()
    				console.log(this.current, 'current')
    			},
    			// 字母键盘
    			englishKeyClick(val,idx) {
    				console.log(this.currentIndex, this.carNumber.length, 'this.carNumber.length')
    				if(this.englishIsDis) return
    				if((this.currentIndex == 0 && this.carNumber.length >= 6) || (this.currentIndex == 2 && this.carNumber.length >= 6) || (this.currentIndex == 1 && this.carNumber.length >= 7)) {
    					this.sureColor = true
    				}
    				if((this.currentIndex == 0 && this.carNumber.length >= 7) || (this.currentIndex == 2 && this.carNumber.length >= 7) || (this.currentIndex == 1 && this.carNumber.length >= 8)) return
    				console.log('hello')
    				this.current++
    				this.carNumber[this.current - 1] = val;
    				if(this.current == 2) this.numberIsDis = false;
    				this.setTrailerKeyboardDis()
    				this.$forceUpdate()
    				console.log(this.current, 'current')
    			},
    			// 设置挂车键盘禁用(只能最后一个选择挂)
    			setTrailerKeyboardDis() {
    				if((this.currentIndex == 0 && this.carNumber.length >= 6) || (this.currentIndex == 2 && this.carNumber.length >= 6)) {
    					this.trailerFiledIsDis = false;
    				} else {
    					this.trailerFiledIsDis = true;
    				}
    			},
    			// 点击挂字
    			trailerFiledClick (val) {
    				if(this.trailerFiledIsDis) return
    				if((this.currentIndex == 0 && this.carNumber.length >= 6) || (this.currentIndex == 2 && this.carNumber.length >= 6) || (this.currentIndex == 1 && this.carNumber.length >= 7)) {
    					this.sureColor = true
    				}
    				if((this.currentIndex == 0 && this.carNumber.length >= 7) || (this.currentIndex == 2 && this.carNumber.length >= 7) || (this.currentIndex == 1 && this.carNumber.length >= 8)) return
    				this.current++
    				this.carNumber[this.current - 1] = val;
    			},
    			sure () {
    				this.keyShow = false
    				this.$forceUpdate()
    			},
    			backspace () {
    				console.log(this.current, 'current')
    				if (this.current <= 1) {
    					this.provinceBoardShow = true
    					this.numberIsDis = true
    					this.englishIsDis = true
    					this.trailerFiledIsDis = true
    					this.$forceUpdate()
    				}
    				if (this.current <= 0) return
    				this.current --
    				this.carNumber.pop()
    				this.$forceUpdate()
    			},
    			addCar () {
    				if (this.sureColor == false) {
    					this.$u.toast('请输入有效的车牌号')
    					return false
    				}
    				console.log(this.carNumber, 'carn')
    			}
     		}
    	}
    </script>
    
    <style lang="scss">
    @keyframes fade {
    	from {        
    	opacity: 1.0;    
    	}
    	50% {        
    	opacity: 0;    
    	}
    	to {        
    	opacity: 1.0;    
    	}
    }
    @-webkit-keyframes fade {    
    	from {        
    	opacity: 1.0;    
    	}
    	50% {        
    	opacity: 0;    
    	}
    	to {        
    	opacity: 1.0;    
    	}
    }
    .flex {
    	display: flex;
    }
    
    .between {
    	justify-content: space-between;
    }
    
    .font-30 {
    	font-size: 30rpx;
    }
    
    .color-333 {
    	color: #333333;
    }
    .container {
    	.car_type_box {
    		display: flex;
    		justify-content: start;
    		width: 390rpx;
    		margin: 0 auto;
    		.car_type_item {
    			width: 130rpx;
    			height: 69rpx;
    			border: 1px solid #999999;
    			text-align: center;
    			line-height: 69rpx;
    			font-size: 30rpx;
    			font-family: PingFang SC;
    			font-weight: 500;
    			color: #999999;
    		}
    		.car_type_item:nth-child(1) {
    			border-radius: 6rpx 0rpx 0rpx 6rpx;
    			border-right: 0.5rpx solid #999999;
    		}
    		.car_type_item:nth-child(2) {
    			border-right: none;
    			border-left: none;
    		}
    		.car_type_item:nth-child(3) {
    			border-radius: 0rpx 6rpx 6rpx 0rpx;
    		}
    		.active {
    			width: 130rpx;
    			height: 69rpx;
    			border: 1px solid #999999;
    			text-align: center;
    			line-height: 69rpx;
    			font-size: 30rpx;
    			font-family: PingFang SC;
    			font-weight: 500;
    			font-weight: bold;
    			color: #EA4070;
    	        background: rgba(#EA4070, .1);
    		}
    		.active:nth-child(1) {
    			border-radius: 6rpx 0rpx 0rpx 6rpx;
    			border-right: 0.5rpx solid #999999;
    		}
    		.active:nth-child(2) {
    			border-right: none;
    			border-left: none;
    		}
    		.active:nth-child(3) {
    			border-radius: 0rpx 6rpx 6rpx 0rpx;
    		}
    	}
    	.car_number_input {
    		margin-top: 42rpx;
    		.car_type {
    			display: flex;
    			justify-content: start;
    			margin: 0 auto;
    			.default_car {
    				width: 98rpx;
    				height: 98rpx;
    				border: 1rpx solid #999999;
    				text-align: center;
    				line-height: 98rpx;
    				font-size: 40rpx;
    				font-family: PingFang SC;
    				font-weight: bold;
    				color: #333333;
    				.line {
    					color: #EA4070;
    					border-radius: 2px;
    					animation: fade 1500ms infinite;    
    					-webkit-animation: fade 1500ms infinite;
    				}
    			}
    			.default_car:nth-child(1) {
    				border-right: none;
    			}
    			.default_car:nth-child(2) {
    				border-right: none;
    				color: #EA4070;
    			}
    			.default_car:nth-child(3) {
    				border-right: none;
    				color: #EA4070;
    			}
    			.default_car:nth-child(4) {
    				border-right: none;
    				color: #EA4070;
    			}
    			.default_car:nth-child(5) {
    				border-right: none;
    				color: #EA4070;
    			}
    			.default_car:nth-child(6) {
    				border-right: none;
    				color: #EA4070;
    			}
    			.default_car:nth-child(7) {
    				color: #EA4070;
    			}
    			.default_car:nth-child(8) {
    				border-left: none;
    				color: #EA4070;
    			}
    		}
    	}
    	.tips {
    		font-size: 28rpx;
    		font-family: PingFang SC;
    		font-weight: 500;
    		color: #999999;
    		margin: 109rpx 0 30rpx 0;
    		text-align: center;
    	}
    	.add_car_box {
    		width: calc(100% - 64rpx);
    		height: 80rpx;
    		background: linear-gradient(180deg, #DF4270, #F299AB);
    		border-radius: 40rpx;
    		margin: 0 auto;
    		.add_car {
    			height: 100%;
    			line-height: 80rpx;
    			font-size: 34rpx;
    			font-weight: 500;
    			color: #FFFFFF;
    			text-align: center;
    		}
    		.dis_car {
    			height: 100%;
    			line-height: 80rpx;
    			font-size: 34rpx;
    			font-weight: 500;
    			color: #FFFFFF;
    			background: #999999;
    			text-align: center;
    			border-radius: 40px;
    		}
    	}
    	.keyboard-content {
    		width: 100%;
    		height: 450rpx;
    		box-sizing: border-box;
    		position: fixed;
    		bottom: 0;
    		left: 0;
    		background-color: #D2D6D9;
    		.td {
    			font-family: "PingFangSC";
    			font-size: 34rpx;
    			color: #333333;
    			font-weight: 500;
    			margin: 12rpx 4rpx;
    			border: 1rpx solid #E0E0E0;
    			border-radius: 8rpx;
    			height: 84rpx;
    			line-height: 84rpx;
    			text-align: center;
    			background-color: #fff;
    		}
    		.province-keyboard {
    			margin: 0 5rpx;
    			flex-wrap: wrap;
    			
    			.td-nor {
    				flex: 0 1 8%;
    				// margin-right: 3px;
    			}
    	    }
    		.number-keyboard {
    			margin: 0 5rpx;
    			.td-num {
    				flex: 0 1 8%;
    			}
    			.board-active {
    				box-shadow: 0 0 0 #e5e5e5;
    				background: #e5e5e5;
    			}
    		}
    		.english-keyboard {
    			margin: 0 5rpx;
    			flex-wrap: wrap;
    			
    			&.englishtTwo {
    				// margin-left: 80rpx;
    				
    				.td-num {
    					margin-right: 5px;
    					flex: 0 1 8%;
    				}
    			}
    			.td-num {
    				flex: 0 1 8%;
    			}
    			.board-active {
    				box-shadow: 0 0 0 #e5e5e5;
    				background: #e5e5e5;
    			}
    		}
    	}
    	.delete {
    		width: 100rpx;
    		height: 84rpx;
    		text-align: center;
    		background-color: #AFB2BC;
    		border-radius: 8rpx;
    		position: absolute;
    		right: 120rpx;
    		bottom: 30rpx;
    		justify-content: center;
    		align-items: center;
    	}
    	.sure {
    		width: 100rpx;
    		height: 84rpx;
    		text-align: center;
    		background-color: #AFB2BC;
    		border-radius: 8rpx;
    		position: absolute;
    		right: 10rpx;
    		bottom: 30rpx;
    		justify-content: center;
    		align-items: center;
    	}
    }
    </style>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
    • 216
    • 217
    • 218
    • 219
    • 220
    • 221
    • 222
    • 223
    • 224
    • 225
    • 226
    • 227
    • 228
    • 229
    • 230
    • 231
    • 232
    • 233
    • 234
    • 235
    • 236
    • 237
    • 238
    • 239
    • 240
    • 241
    • 242
    • 243
    • 244
    • 245
    • 246
    • 247
    • 248
    • 249
    • 250
    • 251
    • 252
    • 253
    • 254
    • 255
    • 256
    • 257
    • 258
    • 259
    • 260
    • 261
    • 262
    • 263
    • 264
    • 265
    • 266
    • 267
    • 268
    • 269
    • 270
    • 271
    • 272
    • 273
    • 274
    • 275
    • 276
    • 277
    • 278
    • 279
    • 280
    • 281
    • 282
    • 283
    • 284
    • 285
    • 286
    • 287
    • 288
    • 289
    • 290
    • 291
    • 292
    • 293
    • 294
    • 295
    • 296
    • 297
    • 298
    • 299
    • 300
    • 301
    • 302
    • 303
    • 304
    • 305
    • 306
    • 307
    • 308
    • 309
    • 310
    • 311
    • 312
    • 313
    • 314
    • 315
    • 316
    • 317
    • 318
    • 319
    • 320
    • 321
    • 322
    • 323
    • 324
    • 325
    • 326
    • 327
    • 328
    • 329
    • 330
    • 331
    • 332
    • 333
    • 334
    • 335
    • 336
    • 337
    • 338
    • 339
    • 340
    • 341
    • 342
    • 343
    • 344
    • 345
    • 346
    • 347
    • 348
    • 349
    • 350
    • 351
    • 352
    • 353
    • 354
    • 355
    • 356
    • 357
    • 358
    • 359
    • 360
    • 361
    • 362
    • 363
    • 364
    • 365
    • 366
    • 367
    • 368
    • 369
    • 370
    • 371
    • 372
    • 373
    • 374
    • 375
    • 376
    • 377
    • 378
    • 379
    • 380
    • 381
    • 382
    • 383
    • 384
    • 385
    • 386
    • 387
    • 388
    • 389
    • 390
    • 391
    • 392
    • 393
    • 394
    • 395
    • 396
    • 397
    • 398
    • 399
    • 400
    • 401
    • 402
    • 403
    • 404
    • 405
    • 406
    • 407
    • 408
    • 409
    • 410
    • 411
    • 412
    • 413
    • 414
    • 415
    • 416
    • 417
    • 418
    • 419
    • 420
    • 421
    • 422
    • 423
    • 424
    • 425
    • 426
    • 427
    • 428
    • 429
    • 430
    • 431
    • 432
    • 433
    • 434
    • 435
    • 436
    • 437
    • 438
    • 439
    • 440
    • 441
    • 442
    • 443
    • 444
    • 445
    • 446
    • 447
    • 448
    • 449
    • 450
    • 451
    • 452
    • 453
    • 454
    • 455
    • 456
    • 457
    • 458
    • 459
    • 460
    • 461
    • 462
    • 463
    • 464
    • 465
    • 466
    • 467
    • 468
    • 469
    • 470
    • 471
    • 472
    • 473
    • 474
    • 475
    • 476
    • 477
    • 478
    • 479
    • 480
    • 481
    • 482
    • 483
    • 484
    • 485
    • 486
    • 487
    • 488
    • 489
    • 490
    • 491
    • 492
    • 493
    • 494
    • 495
    • 496
    • 497
    • 498
    • 499
    • 500
    • 501
    • 502
    • 503
    • 504
    • 505
    • 506
    • 507
    • 508
    • 509
    • 510
    • 511
    • 512
    • 513
    • 514
    • 515
    • 516
    • 517
    • 518
    • 519
    • 520
    • 521
    • 522
    • 523
    • 524
    • 525
    • 526
    • 527
    • 528
    • 529
    • 530
    • 531
    • 532
    • 533
    • 534
    • 535
    • 536
    • 537
    • 538
    • 539
    • 540
    • 541
    • 542
    • 543
    • 544
    • 545
    • 546
    • 547
    • 548
    • 549
    • 550
    • 551
    • 552
    • 553
    • 554
    • 555
    • 556
    • 557
    • 558
    • 559
    • 560
    • 561
    • 562
    • 563
    • 564
    • 565
    • 566
    • 567
    • 568
    • 569
    • 570
    • 571
    • 572
    • 573
    • 574
    • 575
    • 576
    • 577
    • 578
    • 579
    • 580
    • 581
    • 582
    • 583
    • 584
    • 585
    • 586
    • 587
    • 588
    • 589
    • 590
    • 591
    • 592
    • 593
    • 594
    • 595
    • 596
    • 597
    • 598
    • 599
    • 600
    • 601
    • 602
    • 603
    • 604
    • 605
    • 606
    • 607
    • 608
    • 609
    • 610
    • 611
    • 612
    • 613
    • 614
    • 615
  • 相关阅读:
    负载均衡--Haproxy
    关闭jupyter notebook报错
    github付款收到地区限制
    电脑mp4格式视频打不开怎么解决?
    ClickHouse学习笔记之备份和恢复
    【服务器数据恢复】5节点Lustre分布式文件系统RAID5数据恢复案例
    【前端必会】tapable、hook,webpack的灵魂
    [Vue3 博物馆管理系统] 使用Vue3、Element-plus的Layout 布局构建组图文章
    mysql(七)------数据库的索引
    1087 有多少不同的值
  • 原文地址:https://blog.csdn.net/u013361179/article/details/126278712