当前位置: 首页 > news >正文

公司公司手机网站制作宁波建设检测

公司公司手机网站制作,宁波建设检测,少儿编程网课平台哪个好,网站建设开发费入什么科目camera 基础库 2.2.0 开始支持, 低版本需做兼容处理。 系统相机。相关 API#xff1a;ty.createCameraContext。这是基于异层渲染的原生组件, 请注意原生组件使用限制。 属性说明 属性名类型默认值必填说明modestringnormal否应用模式#xff0c;只在初始化时有效#xff…camera 基础库 2.2.0 开始支持, 低版本需做兼容处理。 系统相机。相关 APIty.createCameraContext。这是基于异层渲染的原生组件, 请注意原生组件使用限制。 属性说明 属性名类型默认值必填说明modestringnormal否应用模式只在初始化时有效不能动态变更resolutionstringmedium否分辨率不支持动态修改可选值有 low: 低medium: 中high: 高device-positionstringback否摄像头朝向, 可选值有front: 前置, back: 后置flashstringauto否闪光灯, 可选值有auto: 自动, on: 打开, off: 关闭, torch: 常亮border-widthnumber0否边框的宽度, 单位 pxborder-stylestringsolid否边框的样式, 可选值: solid 和 dashedborder-colorstring#ffffff否边框的颜色, 必须为十六进制格式border-radiusnumber0否边框的圆角, 单位 pxborder-radius-top-leftnumber否边框的左上角圆角大小, 单位 pxborder-radius-top-rightnumber否边框的右上角圆角大小, 单位 pxborder-radius-bottom-leftnumber否边框的左下角圆角大小, 单位 pxborder-radius-bottom-rightnumber否边框的右下角圆角大小, 单位 pxbackground-colorstring#ffffff否背景颜色, 必须为十六进制格式bind:bindstopeventhandle否摄像头在非正常终止时触发如退出后台等情况bind:erroreventhandle否用户不允许使用摄像头时触发bind:initdoneeventhandle否相机初始化完成时触发e.detail {maxZoom} Bug Tip tip同一页面只能插入一个 camera 组件。tipTuya MiniApp Tools 上不支持。tip相关原理请参考 基于异层渲染的原生组件。tip请注意 原生组件使用限制。 示例代码 TYML view classpage-bodycamerastylewidth: 100%; height:300px;resolutionhighdevice-position{{devicePosition}}flash{{flash}}frame-sizelargebindstopstopbinderrorerrorbindinitdoneinitdone/cameraview classbtn-areabutton classpage-body-button typeprimary bindtaptakePhototakePhoto API/buttonbutton classpage-body-button typeprimary bindtapsetZoomsetZoom API/buttonbutton classpage-body-button typeprimary bindtapdevicePositionCHnagedevice-position 属性/buttonbutton classpage-body-button typeprimary bindtapflashChangeflash 属性/buttonview预览照片:/viewimage ty:if{{src}} modewidthFix src{{src}}/image/view /view JS Page({data: {devicePosition: back,flash: off,src: ,},onReady() {this.ctx ty.createCameraContext();},devicePositionCHnage() {this.setData({devicePosition: this.data.devicePosition back ? front : back,});},flashChange() {this.setData({flash: this.data.flash off ? on : off,});},stop(e) {console.log(demo stop, e);},error(e) {console.log(demo error, e);},initdone(e) {console.log(demo initdone, e);},takePhoto() {this.ctx.takePhoto({quality: high,success: (res) {this.setData({src: res.tempImagePath,});},fail: (res) {console.log(demo takePhoto fail, res);},});},setZoom() {this.ctx.setZoom({zoom: 5,success: (res) {console.log(demo setZoom success, res);},fail: (res) {console.log(demo setZoom fail, res);},});}, }); JSON {navigationBarTitleText: camera } TYSS .page-body {display: flex;align-items: center;flex-direction: column;padding: 10px 20px 20px; }.btn-area {width: 100%;margin-top: 20px; }.page-body-button {width: 100%;margin-bottom: 20px; } image 图片。支持 JPG、PNG、SVG、WEBP、GIF 等格式。 属性说明 属性名类型默认值必填说明备注srcstringfalse图片资源地址modestringscaleToFillfalse图片剪裁方式详情见后面的表格lazy-loadbooleanfalsefalse图片懒加载bind:erroreventhandlerfalse当错误发生时bind:loadeventhandlerfalse当图片加载完时 mode 的合法值 值说明scaleToFill缩放模式不保持纵横比缩放图片使图片的宽高完全拉伸至填满 image 元素aspectFit缩放模式保持纵横比缩放图片使图片的长边能完全显示出来。也就是说可以完整地将图片显示出来。aspectFill缩放模式保持纵横比缩放图片只保证图片的短边能完全显示出来。也就是说图片通常只在水平或垂直方向是完整的另一个方向将会发生截取。widthFix缩放模式宽度不变高度自动变化保持原图宽高比不变heightFix缩放模式高度不变宽度自动变化保持原图宽高比不变top裁剪模式不缩放图片只显示图片的顶部区域bottom裁剪模式不缩放图片只显示图片的底部区域center裁剪模式不缩放图片只显示图片的中间区域left裁剪模式不缩放图片只显示图片的左边区域right裁剪模式不缩放图片只显示图片的右边区域top left裁剪模式不缩放图片只显示图片的左上边区域top right裁剪模式不缩放图片只显示图片的右上边区域bottom left裁剪模式不缩放图片只显示图片的左下边区域bottom right裁剪模式不缩放图片只显示图片的右下边区域 示例代码 TYML view classpage-headview classpage-head-titleimage/viewview classpage-head-line/view /viewview classsection l-r-padding ty:for{{array}} ty:key{{item.mode}}view classpage-section-title{{item.text}}/viewview classsection__ctnimage classimage src{{src}} mode{{item.mode}} bind:loadload bind:errorerror/image/view /view JS Page({data: {array: [{mode: widthFix,text: widthFix缩放模式宽度不变高度自动变化保持原图宽高比不变,},{mode: heightFix,text: heightFix缩放模式高度不变宽度自动变化保持原图宽高比不变,},{mode: scaleToFill,text: scaleToFill不保持纵横比缩放图片使图片完全适应,},{mode: aspectFit,text: aspectFit保持纵横比缩放图片使图片的长边能完全显示出来,},{mode: aspectFill,text: aspectFill保持纵横比缩放图片只保证图片的短边能完全显示出来,},{mode: top,text: top不缩放图片只显示图片的顶部区域,},{mode: bottom,text: bottom不缩放图片只显示图片的底部区域,},{mode: center,text: center不缩放图片只显示图片的中间区域,},{mode: left,text: left不缩放图片只显示图片的左边区域,},{mode: right,text: right不缩放图片只显示图片的右边边区域,},{mode: top left,text: top left不缩放图片只显示图片的左上边区域,},{mode: top right,text: top right不缩放图片只显示图片的右上边区域,},{mode: bottom left,text: bottom left不缩放图片只显示图片的左下边区域,},{mode: bottom right,text: bottom right不缩放图片只显示图片的右下边区域,},],src: /images/godzilla.png,},load: function (event) {console.log(demo image load, event.detail, event);},error: function (event) {console.log(demo image error, event.detail, event);}, }); TYSS .section {margin-top: 20px; } .section__title {margin-bottom: 10px; } .image {height: 200px;width: 200px;background-color: #ffffff; } .section__ctn {margin-top: 15px;margin-bottom: 20px; } 常见问题FAQ image 支持懒加载吗 支持可通过配置lazy-load实现图片懒加载 真机调用 image 组件显示的图片被压缩 建议把 mode 值设为 widthFix。 ipc-player 基础库 2.2.0 开始支持, 低版本需做兼容处理。 实时视频播放。 相关 APIty.createIpcPlayerContext。这是基于异层渲染的原生组件, 请注意 原生组件使用限制。 属性说明 属性名类型默认值必填说明device-idstring是device-id 组件的唯一标识符必须设置该属性autoplaybooleanfalse否自动播放mutedbooleanfalse否是否静音;claritystringnormal否清晰度, 可选值有normal: 标清, hd: 高清sound-modestringspeaker否声音输出方式, 可选值有speaker: 扬声器, ear: 听筒orientationstringvertical否画面方向, 可选值有 vertical: 竖直, horizontal: 水平object-fitstringcontain否填充模式, 可选值有  contain: 图像长边填满屏幕短边区域会被填充⿊⾊, fillCrop: 图像铺满屏幕超出显示区域的部分将被截掉; 注: 如果设置了 scalable  true 和 scale-multiple 1则 object-fit 不生效auto-pause-if-navigatebooleantrue否当跳转到本小程序的其他页面时是否自动暂停本页面的实时音视频播放auto-pause-if-open-nativebooleantrue否当跳转到 App 其它原生页面时是否自动暂停本页面的实时音视频播放rotate-znumber0否摄像头旋转角度有效值 0~360 的整数scalablebooleantrue否当前是否可缩放scale-multiplenumber0否缩放比例默认值 0 为不生效, 仅当  scalable  为  true 且 scale-multiple 1  时生效最大不超过 maxScaleMultiple (maxScaleMultiple  可以通过  bind:initdone  事件返回的参数进行获取); 注: 该属性生效时 object-fit 不生效ptz-controllablebooleantrue否设置是否开启视频区域云平台控制border-widthnumber0否边框的宽度, 单位 pxborder-stylestringsolid否边框的样式, 可选值: solid 和 dashedborder-colorstring#ffffff否边框的颜色, 必须为十六进制格式border-radiusnumber0否边框的圆角, 单位 pxborder-radius-top-leftnumber否边框的左上角圆角大小, 单位 pxborder-radius-top-rightnumber否边框的右上角圆角大小, 单位 pxborder-radius-bottom-leftnumber否边框的左下角圆角大小, 单位 pxborder-radius-bottom-rightnumber否边框的右下角圆角大小, 单位 pxbackground-colorstring#ffffff否背景颜色, 必须为十六进制格式bind:connectchangeeventhandle否当连接状态发生变化时触发detail { state }, state: 0 表示连接成功bind:previewchangeeventhandle否当预览状态发生变化时触发detail { state }, state: 1 表示开始预览成功, state: 0 表示结束预览成功bind:onlinechangeeventhandle否当 ipc 设备在线状态变化时触发detail { online }, online: true 表示在线, online: false 表示离线或断电bind:initdoneeventhandle否初始化完成时触发bind:zoomchangeeventhandle否视频缩放比例及当前倍数变化detail { zoomLevel }, zoomLevel 为缩放比例bind:videotapeventhandle否点击视频时触发bind:erroreventhandle否当状态异层时触发 error 事件detail { errCode: 错误码 , errMsg: 错误描述 }, 错误码见下表 错误码 值说明-1000其他未知异常-1001connect 失败-1002开启预览失败-1003结束预览失败-1004设置静音失败-1005设置清晰度失败-1006截图失败-1007属性不合法-1008设置参数不合法-1009disconnect 失败-1010网络状态不可用-1011设备离线-1012设备被移除-1013startTalk fail-1014StopTalk fail-1015StartRecord fail-1016StopRecord fail-1017IsTalkBacking fail-1018SetAvailableRockerDirections fail-1019IsPTZControllable fail-1020SetTrackingStatus fail-1021GetVideoInfo fail Bug Tip tipipc-player 默认宽度 300px、高度 225px可通过 tyss 设置宽高。tipTuya MiniApp Tools 上暂不支持。tip相关原理请参考 基于异层渲染的原生组件。tip请注意 原生组件使用限制。 示例代码 TYML view classpage-bodyipc-playerty:if{{isShow}}classipcdevice-id{{deviceId}}autoplay{{true}}auto-pause-if-navigate{{true}}auto-pause-if-open-native{{true}}object-fit{{objectFit}}orientation{{orientation}}bindconnectChangeonConnectChangebinderroronError/view classbtn-boxbutton bindtapsetMuted1 classpage-body-button typeprimary开启静音/buttonbutton bindtapsetMuted2 classpage-body-button typeprimary关闭静音/buttonbutton bindtapsetSoundMode1 classpage-body-button typeprimary扬声器播放/buttonbutton bindtapsetSoundMode2 classpage-body-button typeprimary听筒播放/buttonbutton bindtapsetClarity1 classpage-body-button typeprimary标清播放/buttonbutton bindtapsetClarity2 classpage-body-button typeprimary高清播放/buttonbutton bindtaporientationChange classpage-body-button typeprimaryorientation 切换 /buttonbutton bindtapobjectFitChange classpage-body-button typeprimaryobjectFit 切换 /buttonbutton bindtapsnapshot classpage-body-button typeprimary截取视频影像/buttonview截取视频影像如下:viewimage src{{tempImagePath}}/image/view /view JS Page({data: {deviceId: vdevo164759164131606,tempImagePath: ,isShow: true,orientation: vertical,objectFit: contain,},onReady() {this.ctx ty.createIpcPlayerContext(this.data.deviceId);},onUnload() {this.ctx.disconnect({success: (res) {console.log(demo disconnect success);},});},initIpc() {this.ctx ty.createIpcPlayerContext(this.data.deviceId);this.ctx.connect({success: (res) {this.ctx.startPreview({success: (res) {console.log(demo 开启预览成功);},fail: (res) {console.log(demo 开启预览失败);},});},fail: (res) {console.log(demo 建立通道连接失败);},});},onConnectChange(e) {console.log(demo onConnectChange 事件触发, e);},onError(e) {console.log(demo onError 事件触发, e);},snapshot() {this.ctx.snapshot({success: (res) {console.log(demo snapshot API 调用成功, res);this.setData({tempImagePath: res.tempImagePath,});},fail: (res) {console.log(demo snapshot API 调用失败, res);},});},setMuted1() {this.ctx.setMuted({mute: true,success: (res) {console.log(demo setMuted API 开启成功, res);},fail: (res) {console.log(demo setMuted API 开启失败, res);},});},setMuted2() {this.ctx.setMuted({mute: false,success: (res) {console.log(demo setMuted API 关闭成功, res);},fail: (res) {console.log(demo setMuted API 关闭失败, res);},});},setSoundMode1() {this.ctx.setSoundMode({mode: speaker,success: (res) {console.log(demo setSoundMode API 扬声器播放成功, res);},fail: (res) {console.log(demo setSoundMode API 扬声器播放失败, res);},});},setSoundMode2() {this.ctx.setSoundMode({mode: ear,success: (res) {console.log(demo setSoundMode API 听筒播放成功, res);},fail: (res) {console.log(demo setSoundMode API 听筒播放失败, res);},});},setClarity1() {this.ctx.setClarity({clarity: normal,success: (res) {console.log(demo setClarity API 标清成功, res);},fail: (res) {console.log(demo setClarity API 标清失败, res);},});},setClarity2() {this.ctx.setClarity({clarity: hd,success: (res) {console.log(demo setClarity API 高清成功, res);},fail: (res) {console.log(demo setClarity API 高清失败, res);},});},orientationChange() {this.setData({orientation:this.data.orientation vertical ? horizontal : vertical,});},objectFitChange() {this.setData({objectFit: this.data.objectFit contain ? fillCrop : contain,});}, }); JSON {navigationBarTitleText: ipc-player } TYSS .page-body {display: flex;align-items: center;flex-direction: column;padding: 10px 20px 20px; }.ipc {width: 100%; }.btn-box {width: 100%;margin-top: 20px;display: flex;justify-content: space-between;flex-wrap: wrap; }.page-body-button {width: 160px;margin-bottom: 20px;display: inline-block;padding: 10px 20px; } video  视频。相关 API: ty.createVideoContext 属性类型默认值必填说明srcstring是要播放视频的资源地址支持网络路径; 注意分区部署情况下,视频是否支持访问durationnumber否指定视频时长单位秒 scontrolsbooleantrue否是否显示默认播放控件播放/暂停按钮、播放进度、时间danmu-list Array{text, color,time} 否弹幕列表danmu-btnbooleanfalse否是否显示弹幕按钮只在初始化时有效不能动态变更enable-danmubooleanfalse否是否展示弹幕只在初始化时有效不能动态变更autoplaybooleanfalse否是否自动播放loopbooleanfalse否是否循环播放mutedbooleanfalse否是否静音播放initial-timenumber0否指定视频初始播放位置show-fullscreen-btnbooleantrue否是否显示全屏按钮show-play-btnbooleantrue否是否显示视频底部控制栏的播放按钮show-center-play-btnbooleantrue否是否显示视频中间的播放按钮object-fitstringcontain否当视频大小与 video 容器大小不一致时视频的表现形式posterstring否视频封面的图片网络资源地址show-mute-btnbooleanfalse否是否显示静音按钮autoPausebooleantrue否非可视区域是否自动暂停border-radiusnumber0否指定视频 border-radiusbind:playeventhandle否当开始/继续播放时触发 play 事件bind:pauseeventhandle否当暂停播放时触发 pause 事件bind:endedeventhandle否当播放到末尾时触发 ended 事件bind:timeupdateeventhandle否播放进度变化时触发event.detail {currentTime, duration} 。bind:waitingeventhandle否视频出现缓冲时触发bind:erroreventhandle否视频播放出错时触发bind:progresseventhandle否加载进度变化时触发只支持一段加载。event.detail {buffered}百分比bind:loadedmetadataeventhandle否视频元数据加载完成时触发。event.detail {width, height, duration}bind:seekcompleteeventhandler否seek 完成时触发 (position iOS 单位 s, Android 单位 ms) object-fit 的合法值 值说明contain包含fill填充cover覆盖 Bug Tip tipvideo 默认宽度 300px、高度 225px可通过 tyss 设置宽高。 tipvideo 支持三种视频格式MP4、WebM、Ogg。 MP4 MPEG 4 文件使用 H264 视频编解码器和 AAC 音频编解码器WebM WebM 文件使用 VP8 视频编解码器和 Vorbis 音频编解码器Ogg Ogg 文件使用 Theora 视频编解码器和 Vorbis 音频编解码器 常见问题FAQ 如何获取视频播放进度 可通过bind:timeupdate 获取视频播放时长。 native-video 基础库 2.5.0 开始支持, 低版本需做兼容处理。 Tuya MiniApp Tools 上是通过 WebView 模拟的与真机存在差异请以真机效果为主。 视频。相关 API: ty.createNativeVideoContext。这是基于异层渲染的原生组件, 请注意 原生组件使用限制。 属性类型默认值必填说明srcstring是要播放视频的资源地址支持网络路径; 注意分区部署情况下,视频是否支持访问durationnumber否指定视频时长单位秒 scontrolsbooleantrue否是否显示默认播放控件播放/暂停按钮、播放进度、时间autoplaybooleanfalse否是否自动播放loopbooleanfalse否是否循环播放mutedbooleanfalse否是否静音播放initial-timenumber0否指定视频初始播放位置show-fullscreen-btnbooleantrue否是否显示全屏按钮show-play-btnbooleantrue否是否显示视频底部控制栏的播放按钮show-center-play-btnbooleantrue否是否显示视频中间的播放按钮object-fitstringcontain否当视频大小与 video 容器大小不一致时视频的表现形式posterstring否视频封面的图片网络资源地址show-mute-btnbooleanfalse否是否显示静音按钮border-widthnumber0否边框的宽度, 单位 pxborder-stylestringsolid否边框的样式, 可选值: solid 和 dashedborder-colorstring#ffffff否边框的颜色, 必须为十六进制格式border-radiusnumber0否边框的圆角, 单位 pxborder-radius-top-leftnumber否边框的左上角圆角大小, 单位 pxborder-radius-top-rightnumber否边框的右上角圆角大小, 单位 pxborder-radius-bottom-leftnumber否边框的左下角圆角大小, 单位 pxborder-radius-bottom-rightnumber否边框的右下角圆角大小, 单位 pxbackground-colorstring#ffffff否背景颜色, 必须为十六进制格式bind:playeventhandle否当开始/继续播放时触发 play 事件bind:pauseeventhandle否当暂停播放时触发 pause 事件bind:endedeventhandle否当播放到末尾时触发 ended 事件bind:timeupdateeventhandle否播放进度变化时触发event.detail {currentTime, duration} 。bind:fullscreenchangeeventhandle否视频进入和退出全屏时触发event.detail {fullScreen, direction}direction 有效值为 vertical 或 horizontalbind:waitingeventhandle否视频出现缓冲时触发bind:erroreventhandle否视频播放出错时触发bind:progresseventhandle否加载进度变化时触发只支持一段加载。event.detail {buffered}百分比bind:loadedmetadataeventhandle否视频元数据加载完成时触发。event.detail {width, height, duration}bind:controlstoggleeventhandle否切换 controls 显示隐藏时触发。event.detail {show}bind:seekcompleteeventhandler否seek 完成时触发 (position iOS 单位 s, Android 单位 ms) object-fit 的合法值 值说明contain包含fill填充cover覆盖 Bug Tip tipnative-video 默认宽度 300px、高度 225px可通过 tyss 设置宽高。tip相关原理请参考 基于异层渲染的原生组件。tip请注意 原生组件使用限制。tipnative-video 支持三种视频格式MP4。 MP4 MPEG 4 文件使用 H264 视频编解码器和 AAC 音频编解码器 立即开发
文章转载自:
http://www.morning.fglth.cn.gov.cn.fglth.cn
http://www.morning.fkwgk.cn.gov.cn.fkwgk.cn
http://www.morning.pwbps.cn.gov.cn.pwbps.cn
http://www.morning.dfdhx.cn.gov.cn.dfdhx.cn
http://www.morning.mmtjk.cn.gov.cn.mmtjk.cn
http://www.morning.hhzdj.cn.gov.cn.hhzdj.cn
http://www.morning.kwblwbl.cn.gov.cn.kwblwbl.cn
http://www.morning.pqqhl.cn.gov.cn.pqqhl.cn
http://www.morning.pudejun.com.gov.cn.pudejun.com
http://www.morning.nxbkw.cn.gov.cn.nxbkw.cn
http://www.morning.wjjxr.cn.gov.cn.wjjxr.cn
http://www.morning.ddtdy.cn.gov.cn.ddtdy.cn
http://www.morning.fengnue.com.gov.cn.fengnue.com
http://www.morning.spnky.cn.gov.cn.spnky.cn
http://www.morning.zbnkt.cn.gov.cn.zbnkt.cn
http://www.morning.hsjrk.cn.gov.cn.hsjrk.cn
http://www.morning.dztp.cn.gov.cn.dztp.cn
http://www.morning.wxlzr.cn.gov.cn.wxlzr.cn
http://www.morning.jfgmx.cn.gov.cn.jfgmx.cn
http://www.morning.dsmwy.cn.gov.cn.dsmwy.cn
http://www.morning.pqcsx.cn.gov.cn.pqcsx.cn
http://www.morning.bpmtl.cn.gov.cn.bpmtl.cn
http://www.morning.mlpmf.cn.gov.cn.mlpmf.cn
http://www.morning.rpsjh.cn.gov.cn.rpsjh.cn
http://www.morning.zhffz.cn.gov.cn.zhffz.cn
http://www.morning.c7513.cn.gov.cn.c7513.cn
http://www.morning.rdbj.cn.gov.cn.rdbj.cn
http://www.morning.drpbc.cn.gov.cn.drpbc.cn
http://www.morning.ljhnn.cn.gov.cn.ljhnn.cn
http://www.morning.hxcuvg.cn.gov.cn.hxcuvg.cn
http://www.morning.wmrgp.cn.gov.cn.wmrgp.cn
http://www.morning.ldqzz.cn.gov.cn.ldqzz.cn
http://www.morning.ohmyjiu.com.gov.cn.ohmyjiu.com
http://www.morning.mqfw.cn.gov.cn.mqfw.cn
http://www.morning.brwwr.cn.gov.cn.brwwr.cn
http://www.morning.pqxjq.cn.gov.cn.pqxjq.cn
http://www.morning.mtrrf.cn.gov.cn.mtrrf.cn
http://www.morning.pnmnl.cn.gov.cn.pnmnl.cn
http://www.morning.qjtbt.cn.gov.cn.qjtbt.cn
http://www.morning.c-ae.cn.gov.cn.c-ae.cn
http://www.morning.mfnsn.cn.gov.cn.mfnsn.cn
http://www.morning.chtnr.cn.gov.cn.chtnr.cn
http://www.morning.wwklf.cn.gov.cn.wwklf.cn
http://www.morning.rflcy.cn.gov.cn.rflcy.cn
http://www.morning.pbmkh.cn.gov.cn.pbmkh.cn
http://www.morning.jlktz.cn.gov.cn.jlktz.cn
http://www.morning.plqsz.cn.gov.cn.plqsz.cn
http://www.morning.rqqct.cn.gov.cn.rqqct.cn
http://www.morning.wdlg.cn.gov.cn.wdlg.cn
http://www.morning.gbwfx.cn.gov.cn.gbwfx.cn
http://www.morning.fhrt.cn.gov.cn.fhrt.cn
http://www.morning.qszyd.cn.gov.cn.qszyd.cn
http://www.morning.cknsx.cn.gov.cn.cknsx.cn
http://www.morning.fmrwl.cn.gov.cn.fmrwl.cn
http://www.morning.tqdlk.cn.gov.cn.tqdlk.cn
http://www.morning.tkzqw.cn.gov.cn.tkzqw.cn
http://www.morning.zwsgl.cn.gov.cn.zwsgl.cn
http://www.morning.pqsys.cn.gov.cn.pqsys.cn
http://www.morning.mbpfk.cn.gov.cn.mbpfk.cn
http://www.morning.tzlfc.cn.gov.cn.tzlfc.cn
http://www.morning.gxqpm.cn.gov.cn.gxqpm.cn
http://www.morning.cpctr.cn.gov.cn.cpctr.cn
http://www.morning.yrjhr.cn.gov.cn.yrjhr.cn
http://www.morning.yqqxj26.cn.gov.cn.yqqxj26.cn
http://www.morning.dgsr.cn.gov.cn.dgsr.cn
http://www.morning.kszkm.cn.gov.cn.kszkm.cn
http://www.morning.qznkn.cn.gov.cn.qznkn.cn
http://www.morning.dxpzt.cn.gov.cn.dxpzt.cn
http://www.morning.qhtlq.cn.gov.cn.qhtlq.cn
http://www.morning.qxlyf.cn.gov.cn.qxlyf.cn
http://www.morning.jcfg.cn.gov.cn.jcfg.cn
http://www.morning.lqznq.cn.gov.cn.lqznq.cn
http://www.morning.kcfnp.cn.gov.cn.kcfnp.cn
http://www.morning.gyfhk.cn.gov.cn.gyfhk.cn
http://www.morning.nrwr.cn.gov.cn.nrwr.cn
http://www.morning.nnttr.cn.gov.cn.nnttr.cn
http://www.morning.skksz.cn.gov.cn.skksz.cn
http://www.morning.cwrpd.cn.gov.cn.cwrpd.cn
http://www.morning.jyzqn.cn.gov.cn.jyzqn.cn
http://www.morning.bmts.cn.gov.cn.bmts.cn
http://www.tj-hxxt.cn/news/269106.html

相关文章:

  • 网站建设制作临沂网站建设选盛誉温州网站设计方案
  • 做淘宝联盟必须要有网站吗公司网站引导页
  • 无人机东莞网站建设建设网站宽度最好是多少
  • 30天网站建设实录深圳做网站推广
  • 深圳H5网站开发陵水网站建设介绍
  • wordpress 门户网站广州网站建设
  • 做外贸是什么网站群晖wordpress端口
  • 玉环专业做网站山东网页定制
  • 找别人做网站 自己管理手机网站空间
  • 开发企业网站设计山西省新农村建设网站
  • 网站推广渠道动漫制作专业学校前十名
  • 承德网站设计公司物联网网络架构由 和 组成
  • 做网站用什么语言简单小工厂如何找外贸公司合作
  • 珠海有什么好的网站推广公司系统难还是网站设计难做
  • 长垣有做网站设计的吗国外浏览器
  • 开发外包网站做详情页生成代码的网站
  • 网站做好了如何发布用织梦做的公司网站 经常被攻击
  • 商洛网站建设公司wordpress简码
  • 淘宝网站上的图片是怎么做的外贸在线网站建站
  • 常州网站建设智博像wordpress
  • 做网站卖钱入门编程软件
  • 网站的建设费用预算大二网络营销实训报告
  • 当当网的网站建设目标是wordpress设置文章页关键词
  • 溧阳网站设计网络营销的营销方式
  • 织梦xml网站地图线上商城的推广方案
  • 高中生自己做网站网站开发的需求分析书
  • 如何在网站页面添加代码百度指数网址是什么
  • 免费个人logo设计网站免费app网站下载大全
  • 网站建设哪里最好接单子网页设计网站开发教程
  • 织梦技术网站模版成都app开发制作