当前位置:   article > 正文

抖音1:1官方美颜·剪辑·插件原生sdk字节跳动-火山引擎官方伙伴优雅草发布----uniapp插件市场_火山美颜sdk价格

火山美颜sdk价格

抖音1:1官方美颜·剪辑·插件原生sdk字节跳动-火山引擎官方伙伴优雅草发布----uniapp插件市场

插件地址

插件下载地址:

介绍

激发智能增长:
火山引擎是字节跳动旗下数字服务与智能科技品牌,基于公司服务数亿用户的大数据、人工智能和基础服务等技术能力,为企业提供系统化全链路解决方案,助力企业务实地创新,给企业带来持续、快速增长。

火山引擎产品大全:

在这里插入图片描述
在这里插入图片描述

说明

说明插件是插件授权费用,使用字节的美颜产品需要额外付费:

目前字节的美颜产品价格为60000-1000000价格,详细要求和规划请联系优雅草,联系优雅草渠道可获得折扣价,直接官方进行报备将不可享受任何折扣,已报备再联系也不行,很简单就是当你是直客还是渠道客牵涉伙伴提成的问题,不要觉得有不一样或者其他原因。

演示

演示下载地址:

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-iA6k0nYS-1620871972298)(https://doc.youyacao.com/server/index.php?s=/api/attachment/visitFile/sign/573b247255498a7bb220177b1ffd5491)]

使用说明

使用方法,示例文件:

<template>
	<div class="container"> 
		<div 	 :style="{ width: hqwidth, height: hqhight }" class="devices">
		 	 
				<youyacao-ZJTXLive id="mainMap"  :style="{ width: hqwidth, height: hqhight }"    ref="myMHLive"></youyacao-ZJTXLive >
		</div>	 
	 
	 
	  <div class="fanhan" >
	 	
	 	<button     @click="StartPreview()"> 开始预览</button>	
	 	<button     @click="StopPreview()"> 停止预览</button>	
	 		 

			
			<button     @click="StartPreview()"> 开始预览</button>	
			<button     @click="StopPreview()"> 停止预览</button>	
	

			<button     @click="StartPush()"> 开始推流</button>
			<button     @click="StopPush()"> 停止推流</button>	 
			<button     @click="OpenFalsh()"> 闪光灯开</button>	
			<button     @click="CloseFlash()"> 闪光灯关</button>	
			
			<button     @click="SwitchCamera()"> 切换摄像头</button> 
			<button     @click="back()"> back</button> 
			
			
			
			 
			 </div>	
							   
							   
			 <div class="fanhan2" >
			 
			 <button     @click="EXPOSURE()">曝光</button>
			 <button     @click="BEAUTY()">美颜</button> 
			 <button     @click="WHITE()">美白</button> 
			 <button     @click="BIG_EYE()">大眼</button> 
			 <button     @click="FACE_LIFT()">瘦脸</button> 
			 <button     @click="FILTER()">滤镜</button>  
			 <button     @click="MOTION_TMPL()">动效</button> 
			 <button     @click="RUDDY()">红润</button> 
			 <button     @click="FACEV()">V脸</button> 
			 <button     @click="FACESHORT()">短脸</button> 
			 <button     @click="CHINSLIME()">下巴</button> 
			 <button     @click="NOSESCALE()">小鼻</button> 
			 <button     @click="FILTER_MIX_LEVEL()">滤镜比率</button> 
			</div>	
			
			<div class="fanhan3" >
			 
			 <button     @click="EXPOSURE2()">曝光</button>
			 <button     @click="BEAUTY2()">美颜</button> 
			 <button     @click="WHITE2()">美白</button> 
			 <button     @click="BIG_EYE2()">大眼</button> 
			 <button     @click="FACE_LIFT2()">瘦脸</button> 
			 <button     @click="FILTER2()">滤镜</button>  
			 <button     @click="MOTION_TMPL2()">动效</button> 
			 <button     @click="RUDDY2()">红润</button> 
			 <button     @click="FACEV2()">V脸</button> 
			 <button     @click="FACESHORT2()">短脸</button> 
			 <button     @click="CHINSLIME2()">下巴</button> 
			 <button     @click="NOSESCALE2()">小鼻</button> 
			 <button     @click="FILTER_MIX_LEVEL2()">滤镜比率</button> 
			</div>	
	 
		
		
		 
	</div>
	

</template>

<script> 
    var globalEvent = weex.requireModule('globalEvent');
	export default {
		data() { 
			return {
				title: 'Hello',
				hqwidth:0,
				hqhight:0,
				 editorText:"sdsd"
			}    
		},
		onBackPress(e) {
		   if (e.from == 'backbutton') { 
						// 退出页面的是 调用一下 backbutton
						  
			 this.$refs.myMHLive.backbutton();  
		    return false;  
		   }
		  }, 
		created() {
			let that = this; 
			
		},
		onLoad: function(option) {
			var that=this;
			plus.navigator.setFullscreen(true);
			uni.getSystemInfo({
				success: function(e) {
					console.log(e)
					that.hqwidth = e.windowWidth
					that.hqhight = e.windowHeight
				}
			})
		},
		methods: {
			
		  
			
			EXPOSURE(){
				var Live = this.$refs.myMHLive;
				Live.EXPOSURE({
					level:0 //0~10  曝光值
				}); 
			},
			BEAUTY(){
				var Live = this.$refs.myMHLive;
				Live.BEAUTY({
					style:0,   //  0光滑  1自然  2朦胧
					level:0     //0~10   美颜值
				}); 
			},
			WHITE(){
				var Live = this.$refs.myMHLive;
				Live.WHITE({
					level:0     //0~10  美白值
				} ); 
			},
			BIG_EYE(){
				var Live = this.$refs.myMHLive;
				Live.BIG_EYE({
						level:0     //0~10  大眼 值
				});   
			},
			FACE_LIFT(){
				var Live = this.$refs.myMHLive;
				Live.FACE_LIFT({
							level:0     //0~10  瘦脸 值
				}); 
			},
			FILTER(){
				   //           "无"  ,     0
							// "标准",    // 1
				   //          "樱红",    // 2
				   //          "云裳",    // 3
				   //          "纯真",    // 4
				   //          "白兰",    // 5
				   //          "元气",    // 6
				   //          "超脱",    // 7
				   //          "香氛",    // 8
				   //          "美白",    // 9
				   //          "浪漫",    // 10
				   //          "清新",    // 11
				   //          "唯美",    // 12
				   //          "粉嫩",    // 13
				   //          "怀旧",    // 14
				   //          "蓝调",    // 15
				   //          "清凉",    // 16
				   //          "日系",    // 17 
				var Live = this.$refs.myMHLive;
				Live.FILTER({
					index:11   
				}); 
			} ,
			MOTION_TMPL(){
				
				//           "无动效"  ,     0
				 //          "Boom",    // 1
				//          "霓虹鼠",    // 2
				//          "星耳",    // 3
				//          "疯狂打call",    // 4
				//          "Q星座",    // 5
				//          "彩色丝带",    // 6
				//          "刘海发带",    // 7
				//          "变脸",    // 8
				//          "紫色小猫",    // 9
				//          "花仙子",    // 10
				//          "小公举",    // 11
				//          "唯美",    // 12
				//          "粉嫩",    // 13
				//          "怀旧",    // 14
				//          "蓝调",    // 15
				//          "清凉",    // 16
				//          "日系",    // 17 
				var Live = this.$refs.myMHLive;
				Live.MOTION_TMPL({
					index:11    
				}); 
			},
			RUDDY(){
				var Live = this.$refs.myMHLive;
				Live.RUDDY({
							level:0     //0~10  红润 值
				}); 
			},
			FACEV(){
				var Live = this.$refs.myMHLive;
				Live.FACEV({
							level:0     //0~10  V脸 值
				}); 
			},
			FACESHORT(){
				var Live = this.$refs.myMHLive;
				Live.FACESHORT({
							level:0     //0~10  短脸 值
				}); 
			},
			CHINSLIME(){
				var Live = this.$refs.myMHLive;   
				Live.CHINSLIME({
							level:0     //0~10  下巴 值
				}); 
			},
			NOSESCALE(){ 
				var Live = this.$refs.myMHLive;
				Live.NOSESCALE({
							level:0     //0~10  小鼻 值
				}); 
			}, 
			FILTER_MIX_LEVEL(){
				var Live = this.$refs.myMHLive;
				Live.FILTER_MIX_LEVEL({
							level:0     //0~10  滤镜 值
				}); 
			},
			back(){
				 this.$refs.myMHLive.backbutton();  
				uni.navigateBack();
			},
			StartPreview(){ 
				var Live = this.$refs.myMHLive;
				Live.StartPreview(); 
			},
			StopPreview(){  
				var Live = this.$refs.myMHLive;
				Live.StopPreview(); 
			},
			StartPush(){   
				var Live = this.$refs.myMHLive;
				Live.StartPush(
					{
					URL:"推流地址"
					},
						result => {
							 	const msg = JSON.stringify(result);
							 	 console.log(result);
							 }); 
			},
			StopPush(){   
				var Live = this.$refs.myMHLive;
				Live.StopPush(result => {
							 	const msg = JSON.stringify(result);
							 	 console.log(result);
							 }); 
			},
			 OpenFalsh(){
			 	var Live = this.$refs.myMHLive;
			 	Live.OpenFalsh(); 
			 },
			 CloseFlash(){   
			 	var Live = this.$refs.myMHLive;
			 	Live.CloseFlash(); 
			 },
			 SwitchCamera(){    
			 	var Live = this.$refs.myMHLive;
			 	Live.SwitchCamera(); 
			 } 
			 
			 
			 
			 
			 
			 
			 
			 
			 
			 
			 ,
			 
			 EXPOSURE2(){
			 	var Live = this.$refs.myMHLive;
			 	Live.EXPOSURE({
			 		level:5 //0~10  曝光值
			 	}); 
			 },
			 BEAUTY2(){
			 	var Live = this.$refs.myMHLive;
			 	Live.BEAUTY({
			 		style:0,   //  0光滑  1自然  2朦胧
			 		level:5     //0~10   美颜值
			 	}); 
			 },
			 WHITE2(){
			 	var Live = this.$refs.myMHLive;
			 	Live.WHITE({
			 		level:5     //0~10  美白值
			 	} ); 
			 },
			 BIG_EYE2(){
			 	var Live = this.$refs.myMHLive;
			 	Live.BIG_EYE({
			 			level:5     //0~10  大眼 值
			 	});   
			 },
			 FACE_LIFT2(){
			 	var Live = this.$refs.myMHLive;
			 	Live.FACE_LIFT({
			 				level:5     //0~10  瘦脸 值
			 	}); 
			 },
			 FILTER2(){
			 	   //           "无"  ,     0
			 				// "标准",    // 1
			 	   //          "樱红",    // 2
			 	   //          "云裳",    // 3
			 	   //          "纯真",    // 4
			 	   //          "白兰",    // 5
			 	   //          "元气",    // 6
			 	   //          "超脱",    // 7
			 	   //          "香氛",    // 8
			 	   //          "美白",    // 9
			 	   //          "浪漫",    // 10
			 	   //          "清新",    // 11
			 	   //          "唯美",    // 12
			 	   //          "粉嫩",    // 13
			 	   //          "怀旧",    // 14
			 	   //          "蓝调",    // 15
			 	   //          "清凉",    // 16
			 	   //          "日系",    // 17 
			 	var Live = this.$refs.myMHLive;
			 	Live.FILTER({
			 		index:2    
			 	}); 
			 } ,
			 MOTION_TMPL2(){
			 	
			 	//           "无动效"  ,     0
			 	 //          "Boom",    // 1
			 	//          "霓虹鼠",    // 2
			 	//          "星耳",    // 3
			 	//          "疯狂打call",    // 4
			 	//          "Q星座",    // 5
			 	//          "彩色丝带",    // 6
			 	//          "刘海发带",    // 7
			 	//          "变脸",    // 8
			 	//          "紫色小猫",    // 9
			 	//          "花仙子",    // 10
			 	//          "小公举",    // 11
			 	//          "唯美",    // 12
			 	//          "粉嫩",    // 13
			 	//          "怀旧",    // 14
			 	//          "蓝调",    // 15
			 	//          "清凉",    // 16
			 	//          "日系",    // 17 
			 	var Live = this.$refs.myMHLive;
			 	Live.MOTION_TMPL({
			 		index:2    
			 	}); 
			 },
			 RUDDY2(){
			 	var Live = this.$refs.myMHLive;
			 	Live.RUDDY({
			 				level:5     //0~10  红润 值
			 	}); 
			 },
			 FACEV2(){
			 	var Live = this.$refs.myMHLive;
			 	Live.FACEV({
			 				level:5     //0~10  V脸 值
			 	}); 
			 },
			 FACESHORT2(){
			 	var Live = this.$refs.myMHLive;
			 	Live.FACESHORT({
			 				level:5     //0~10  短脸 值
			 	}); 
			 },
			 CHINSLIME2(){
			 	var Live = this.$refs.myMHLive;   
			 	Live.CHINSLIME({
			 				level:5     //0~10  下巴 值
			 	}); 
			 },
			 NOSESCALE2(){ 
			 	var Live = this.$refs.myMHLive;
			 	Live.NOSESCALE({
			 				level:5     //0~10  小鼻 值
			 	}); 
			 }, 
			 FILTER_MIX_LEVEL2(){
			 	var Live = this.$refs.myMHLive;
			 	Live.FILTER_MIX_LEVEL({
			 				level:5     //0~10  滤镜 值
			 	}); 
			 },
			  
		}
	}
</script>
 
  <style lang="scss">
  	.container{
  		// position: relative;
  		// width: 100%;
  		// height: 1000px;
  	}
  	.devices,.finish-box{
  		background-color: #000000;
  	}
  	 
  	 .dddd{
  		 margin: 10px;   
  	 }
  	.yincang { 
  		height: 250px;
  	}
  	
  	.flex-top{
  		position: fixed;
  		bottom: 250rpx;
  		left: 0;
  		justify-content: space-around;
  		align-items: center;
  		flex-direction: row;
  	}
  	.flex-bottom{
  		position: fixed;
  		bottom: 44rpx;
  		left: 0;
  		justify-content: center;
  		align-items: center;
  		flex-direction: row;
  		text-align: center;
  	}
  	.play-icon{
  		width: 120rpx;
  		height: 120rpx;
  		border-radius: 120rpx;
  		z-index: 999;
  		align-items: center;
  		justify-content: center;
  		border-width: 2px;
  		border-color: #f00;
  	}
  	.red-icon{
  		width: 100rpx;
  		height: 100rpx;
  		border-radius: 100rpx;
  		background-color: #f00;
  	}
  	.square-icon{
  		width: 70rpx;
  		height: 70rpx;
  		border-radius: 6rpx;
  		background-color: #f00;
  	}
  	.switch-icon{
  		width: 60rpx;
  		height: 46rpx;
  		margin-right: 90rpx;
  		justify-content: center;
  		align-items: center;
  		margin-top: 60rpx;
  	}
  	.switch-icon,.switch-icon-img{
  		width: 49rpx;
  		height: 46rpx;
  	}
  	.ratio-icon{
  		width: 50rpx;
  		height: 46rpx;
  		margin-left: 90rpx;
  		justify-content: center;
  		align-items: center;
  		margin-top: 50rpx;
  	}
  	.ratio-icon-img{
  		width: 40rpx;
  		height: 40rpx;
  	}
  	.text-tips{
  		width: 120rpx;
  		color: #fff;
  		font-size: 24rpx;
  		text-align: center;
  		line-height: 60rpx;
  	}
  	.text-tips-on{
  		color: #FFCC00;
  	}
  	.btns{
  		flex: 1;
  		align-items: center;
  	}
  	.text-btn{
  		width: 50rpx;
  		height: 42rpx;
  	}
  	.area-btn{
  		width: 50rpx;
  		height: 50rpx;
  	}
  	.speed-btn{
  		width: 49rpx;
  		height: 56rpx;
  	}
  	.meiyan-btn{
  		width: 50rpx;
  		height: 50rpx;
  	}
  	.horizons{
  		position: fixed;
  		top: 0;
  		left: 0;
  		height: 44px;
  		align-items: center;
  		justify-content: space-between;
  		flex-direction: row;
  		padding-left: 10px;
  		padding-right: 10px;
  	}
  	.horizons-time{
  		color: #fff;
  	}
  	.horizons-left{
  		width: 30px;
  		height: 30px;
  	}
  	.horizons-right{
  		width: 30px;
  		height: 30px;
  	}
  	.video-box{
  		height: 460px;
  		background-color: #666;
  		margin-top: 44px;
  	}
	.fanhan{
	   background-color: rgba(0, 0, 0, 0); 
	   border-radius: 15px;
	   // flex-direction: column;
	   justify-content: center;
	   align-items: center; 
	   left:10px;
	   position: fixed;
	  z-index: 99999;
	  }
  	.finish-btns{
  		justify-content: space-between;
  		flex-direction: row;
  		padding-left: 10rpx;
  		padding-right: 10rpx;
  		margin-top: 100rpx;
  	}
  	.replay{
  		width: 230rpx;
  		height: 100rpx;
  		line-height: 100rpx;
  		background-color: #FFCC00;
  		align-items: center;
  		flex-direction: row;
  		justify-content: space-around;
  		padding-left: 20rpx;
  		padding-right: 20rpx;
  	}
  	.finish-btns-imgs{
  		width: 40rpx;
  		height: 34rpx;
  	}
  	.finish-btns-imgs1{
  		width: 36rpx;
  		height: 36rpx;
  	}
  	.finish-btns-imgs2{
  		width: 35rpx;
  		height: 40rpx;
  		margin-right: 10rpx;
  	}
  	.finish-btns-text{
  		line-height: 100rpx;
  		font-size: 28rpx;
  	}
	.fanhan2{
	   background-color: rgba(0, 0, 0, 0); 
			width: 300px;
	   border-radius: 15px;
	   // flex-direction: column;
	   justify-content: center;
	   align-items: center; 
	   left:10px;
			top:50px;
	   position: fixed;
	  z-index: 99999;
	  }
	  .fanhan3{
	     background-color: rgba(0, 0, 0, 0); 
	  		width: 600px;
	     border-radius: 15px;
	     // flex-direction: column;
	     justify-content: center;
	     align-items: center; 
	     left:10px;
	  		top:50px;
	     position: fixed;
	    z-index: 99999;
	    }
  </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

演示图:

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/323228
推荐阅读
相关标签
  

闽ICP备14008679号