| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 | <template>	<dm-pop-view ref='popView' :title="title"  :isShowConfirm='true'>		<view class="screen_container" >			<view class="level_tag_view">				<text class="level_tag" v-for="(item, i) in curItem" :key="i">{{item.dicDataName}}</text>			</view>		</view>	</dm-pop-view></template><script>	import dmPopView from './dmPopView.vue'	export default {		props: {			curItem: Array,			title:{				type:String,				default:'请选择'			},		},		data() {			return {			}		},		methods: {			show() {				this.$refs.popView.show()			}		},		components: {			dmPopView		}	}</script><style scoped lang="scss">	.pop-pickerView {		margin: 40rpx 0;		width: 750rpx;		height: 300rpx;		.column-item {			height: 80rpx;			display: flex;			box-sizing: border-box;			white-space: nowrap;			overflow: hidden;			flex-direction: row;			align-items: center;			justify-content: center;		}			}		.screen_container {		display: flex;		flex-direction: column;		width: 750rpx;			.screen_item_title {			margin-left: 30rpx;			margin-top: 54rpx;			line-height: 44rpx;			font-size: 32rpx;			font-family: Verdana, Verdana-Bold;			font-weight: 700;			text-align: left;			color: #454545;		}			.level_tag_view {			margin-left: 30rpx;			margin-top: 20rpx;			margin-bottom: 100rpx;			display: flex;			flex-wrap: wrap;			.level_tag {				color: #666;				margin-bottom: 20rpx;				padding: 0rpx 20rpx;				margin-right: 30rpx;				min-width: 116rpx;				height: 56rpx;				border-radius: 8rpx;				font-size: 28rpx;				font-family: Verdana, Verdana-Regular;				font-weight: 400;				text-align: center;				line-height: 56rpx;			}		}			.screen_item_sub {			margin-top: 8rpx;			margin-bottom: 40rpx;			margin-left: 30rpx;			line-height: 34rpx;			font-size: 24rpx;			font-family: Verdana, Verdana-Regular;			font-weight: 400;			text-align: left;			color: #999999;		}			.score_view {			margin-top: 30rpx;			margin-bottom: 120rpx;			display: flex;			justify-content: center;			align-items: center;			height: 82rpx;				.score_text {				font-size: 70rpx;				font-family: 'DIN Alternate', 'DIN Alternate-Bold';				font-weight: 700;			}				.score_unit {				padding-top: 25rpx;				font-size: 28rpx;				font-family: Verdana, Verdana-Regular;				font-weight: 400;			}		}			.bottom_btn {			display: flex;			justify-content: center;			margin-bottom: 60rpx;				.reset_btn {				width: 156rpx;				height: 80rpx;				border-radius: 40rpx;				font-size: 28rpx;				font-family: Verdana, Verdana-Bold;				font-weight: 700;				text-align: center;				line-height: 80rpx;				color: #666666;			}				.pop_btn {				margin-left: 30rpx;				width: 444rpx;				height: 80rpx;				border-radius: 40rpx;				font-size: 28rpx;				font-family: Verdana, Verdana-Bold;				font-weight: 700;				text-align: center;				line-height: 80rpx;				color: #ffffff;			}		}	}	</style>
 |