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

启闭机闸门的网站建设中国工商注册网官网下载

启闭机闸门的网站建设,中国工商注册网官网下载,云主机如何做网站,手机wap网站是什么vue2 echarts饼状图#xff0c;柱状图#xff0c;折线图#xff0c;简单封装以及使用 1. 直接上代码#xff08;复制可直接用#xff0c;请根据自己的文件修改引用地址#xff0c;图表只是简单封装#xff0c;可根据自身功能#xff0c;进行进一步配置。#xff09; …vue2 echarts饼状图柱状图折线图简单封装以及使用 1. 直接上代码复制可直接用请根据自己的文件修改引用地址图表只是简单封装可根据自身功能进行进一步配置。 2. 安装echarts npm install echarts --save 3. 安装 npm install element-resize-detector --save注该配置在博客最底部 用于 echarts 宽高计算等 4. 柱状图简单封装 先上菜单目录 新建 barChart.vue // barChart.vuetemplatediv :style{ height: height, width: width } / /templatescript import * as echarts from echarts; import resize from /echarts/mixins/resize; export default {mixins: [resize],props: {width: {type: String,default: 100%,},height: {type: String,default: 280px,},chartData: {type: Object,required: true,},},data() {return {chart: null,};},watch: {// 监听表数据变化重新初始化图表chartData: {deep: true,handler(val) {if (this.chart) {this.$nextTick(() {this.initChart();});}},},},mounted() {// 初始化图表this.initChart();},beforeDestroy() {// 页面销毁时 销毁图表if (!this.chart) {return;}this.chart.dispose();this.chart null;},methods: {initChart() {this.chart echarts.init(this.$el);this.setOptions(this.chartData);},// 图表配置项setOptions(chartData) {const { data [], color [], yLabel } chartData;const names data.map((item) item.name);const values data.map((item) {if (color.length) {return {value: item.value,itemStyle: {color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ offset: 0, color: color[0][1] },{ offset: 1, color: color[0][2] },]),},};} else {return {value: item.value,itemStyle: {// 此处设置柱状图的渐变color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ offset: 0, color: rgba(19, 179, 228, 0.2) },{ offset: 1, color: rgba(19, 179, 228, 1) },]),},};}});const valuesDefaultItem data.map((item) {if (color.length) {// 此处判断 是否使用传入的颜色return {value: 0,itemStyle: {color: color[0][3],},emphasis: {itemStyle: {color: color[0][3],},},};} else {return {value: 0,itemStyle: { // 柱状图顶部颜色color: rgb(19, 179, 228),},emphasis: {itemStyle: {color: #333, // 柱状图顶部hover时的颜色},},};}});const valuesMax data.map((item) item.value / 5);const options {grid: {top: 50,left: 20,right: 20,bottom: 0,containLabel: true,},tooltip: {trigger: axis,formatter: {b}br /{c}${yLabel},axisPointer: {// 坐标轴指示器坐标轴触发有效type: shadow, // 默认为直线可选为line | shadowshadowStyle: {color: #e7baba61, // 鼠标移入时的背景色},},borderColor: rgb(19, 179, 228), // 鼠标移入时 悬浮框border样式backgroundColor: rgba(6,167,205,.9), // 鼠标移入时 悬浮框背景样式padding: 10, // 鼠标移入时 悬浮框paddingtextStyle: { // 鼠标移入时 悬浮框内容样式fontSize: 14,fontWeight: 400,color: yellow,},},xAxis: {data: names,nameLocation: center,axisLabel: {rotate: 0,interval: 0,align: center,// X轴 字体样式textStyle: {color: #333333,fontSize: 12,fontWeight: 500,},// 此处设置 X轴 多出3个字符就进行换行可自定义设置// formatter: function (params) {// let newParamsName ; // 拼接后的新字符串// let paramsNameNumber params.length; // 实际标签数// let provideNumber 3; // 每行显示的字数// let rowNumber Math.ceil(paramsNameNumber / provideNumber); // 如需换回算出要显示的行数// if (paramsNameNumber provideNumber) {// /** 循环每一行,p表示行 */// for (let i 0; i rowNumber; i) {// let tempStr ; // 每次截取的字符串// let start i * provideNumber; // 截取位置开始// let end start provideNumber; // 截取位置结束// // 最后一行的需要单独处理// if (i rowNumber - 1) {// tempStr params.substring(start, paramsNameNumber);// } else {// tempStr params.substring(start, end) \n;// }// newParamsName tempStr;// }// } else {// newParamsName params;// }// return newParamsName;// },},axisTick: {show: false,},axisLine: {show: false,},z: 10,},dataZoom: [{type: inside,start: 20, //数据窗口范围的起始百分比。范围是0 ~ 100。表示 0% ~ 100%。end: 100,xAxisIndex: 0, //设置控制xAxis// yAxisIndex: 0, //设置控制yAxiszoomOnMouseWheel: true, //设置鼠标滚轮不能触发缩放。},],yAxis: {name: yLabel, // Y周单位nameTextStyle: { // 单位样式color: #333,align: center,},// y轴刻度样式axisLabel: {textStyle: {color: #333333,fontSize: 12,fontWeight: 400,},},// y轴刻度横线样式splitLine: {lineStyle: {color: #dddddd,},},// 是否显示y轴axisLine: {show: true,},},series: [{type: bar,barMaxWidth: 36,label: {show: true,position: top,distance: 4,color: #fff,fontSize: 13,fontWeight: 400,formatter: {c},},data: values,stack: one,},// 设置柱状图顶部的样式{type: bar,barMaxWidth: 60,stack: one,barMinHeight: 3,barMaxHeight: 3,cursor: default,data: valuesDefaultItem,},{type: bar, //占位barMaxWidth: 36, // 设置柱状图宽度stack: one,barMinHeight: 3,barMaxHeight: 3,cursor: default,emphasis: {itemStyle: {color: transparent,},},itemStyle: {color: transparent,},data: valuesMax,},],};console.log(options);this.chart.setOption(options);},}, }; /script5. 柱状图组件使用 templatediv classaboutdiv classbox-carddiv stylewidth:100%;height:100%barChart :chartDatachartData height100%/barChart/div/div/div /template script import barChart from ./components/barChart.vue; // 柱状图 export default {components: {barChart,},data() {return {chartData: {yLabel: 次,color: [],data: [],},};},mounted(){// 调用接口this.getFaceData()},methods: {getFaceData() {// 此处应该调用接口// 暂时使用假数据this.chartData.data [{name: admin11,value: 505,},{name: lss11,value: 600,},{name: zbw,value: 800,},{name: 陌生人,value: 902,},];},}, }; /script style langscss .box-card {width: 800px;height: 400px;box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);padding: 20px;margin: 20px; } /style6. 饼状图简单封装 新建 pieChart.vue //pieChart.vuetemplatediv :style{ height: height, width: width } / /template script import * as echarts from echarts; import resize from /echarts/mixins/resize; export default {mixins: [resize],props: {width: {type: String,default: 100%,},height: {type: String,default: 280px,},chartData: {type: Object,required: true,},},data() {return {chart: null,};},watch: {// 监听表数据变化重新初始化图表chartData: {deep: true,handler(val) {if (this.chart) {this.$nextTick(() {this.initChart();});}},},},mounted() {// 初始化图表this.initChart();},beforeDestroy() {// 页面销毁时 销毁图表if (!this.chart) {return;}this.chart.dispose();this.chart null;},methods: {initChart() {this.chart echarts.init(this.$el);this.setOptions(this.chartData);},// 图表配置项setOptions(chartData) {// 图表数据const data chartData.data;// 计算图标中心的数据总值let sum data.reduce((pre, cur, index, arr) {return pre cur.value;}, 0);// 图表中心显示的名称let name chartData.name;const options {// 自定义设置图表颜色color: [rgb(53, 136, 229),rgb(13, 235, 251),rgb(227, 59, 90),rgb(255, 147, 38),rgb(176, 210, 231),rgb(62, 255, 194),rgb(138, 92, 247),rgb(25, 120, 162),rgb(67, 207, 124),rgb(255, 195, 0),],// 鼠标hover时显示的浮窗tooltip: {trigger: item,formatter: {b}: {c} ({d}%),borderColor: transparent,backgroundColor: rgba(6,167,205,.9),padding: 10,textStyle: {fontSize: 14,fontWeight: 400,color: #fffafa,},},legend: {type: scroll, //这里添加scroll就可以分页了orient: vertical, //图例列表的布局朝向 horizontal 默认顶部vertical默认右边right: 0%,// circle(圆形),rect矩形,roundRect矩形边角为圆弧// triangle三角形,diamond矩形,pin形状类似于锤子的尾部,arrow飞机形状,noneicon: circle,top: 10%,bottom: 30%,// 设置图例文字的样式formatter: function (name) {console.log(name, 99999999);let arr [{b| name }];return arr.join(,);},textStyle: {//样式rich: {a: {fontSize: 10,color: yellow,},// 设置图例的颜色和文字大小b: {// 图例文字大小fontSize: 10,// 图例文字颜色color: red,},},},},series: [{minShowLabelAngle: 30,type: pie,startAngle: 30,radius: [50%, 70%],center: [40%, 50%], // 设置图表的位置avoidLabelOverlap: false,itemStyle: {// 图表块周围的红色边// borderColor: red,// 图表块周围的红色边宽度// borderWidth: 1,},// 引导线名称样式label: {formatter: {b} {c},color: #333,},// 引导线样式labelLine: {lineStyle: {color: #dddddd,},},data: data,},{minShowLabelAngle: 5,type: pie,center: [40%, 50%], // 设置图表的位置radius: [40%, 40%],hoverAnimation: false,label: {normal: {show: true,position: center,color: #333,formatter: {total| sum } \n\r {active|${name}},// 总数字样式rich: {total: {fontSize: 26,fontWeight: 600,color: yellow,},// 名称样式active: {fontSize: 14,fontWeight: 400,color: #f73f62,lineHeight: 30,},},},emphasis: {//中间文字显示show: true,},},lableLine: {normal: {show: false,},emphasis: {show: true,},tooltip: {show: false,},},// 内部圈样式itemStyle: {color: green,borderColor: green,borderWidth: 1,},tooltip: {show: false,},cursor: default,data: [{ value: 1, name: 1 }],},],};this.chart.setOption(options);},}, }; /script7. 饼状图组件使用 templatediv classaboutdiv classbox-carddiv stylewidth:100%;height:100%pieChart :chartDatachartData height100%/pieChart/div/div/div /template script // 引入饼图组件 import pieChart from ./components/pieChart.vue; // 饼状图 export default {components: {pieChart, // 饼图组件},data() {return {chartData: {name: 识别总数, // 表名data: [], // 表数据},};},mounted(){// 调用接口this.getFaceData()},methods: {getFaceData() {// 此处应该调用接口// 暂时使用假数据this.chartData.data [{name: admin,value: 80,},{name: lss,value: 106,},{name: zbw,value: 50,},{name: 陌生人,value: 200,},{name: admin1,value: 80,},{name: lss1,value: 106,},{name: zbw1,value: 50,},{name: 陌生人1,value: 200,},{name: admin2,value: 80,},{name: lss2,value: 106,},{name: zbw2,value: 50,},{name: 陌生人2,value: 200,},{name: admin3,value: 80,},{name: lss3,value: 106,},{name: zbw3,value: 50,},{name: 陌生人3,value: 200,},];},}, }; /script style langscss .box-card {width: 800px;height: 400px;box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);padding: 20px;margin: 20px; } /style8. 折线图简单封装 新建 lineChart.vue // lineChart.vuetemplatediv :style{ height: height, width: width } / /templatescript import * as echarts from echarts; import resize from /echarts/mixins/resize; export default {mixins: [resize],props: {width: {type: String,default: 100%,},height: {type: String,default: 280px,},chartData: {type: Object,required: true,},echartsName: {type: String,default: ,},echartsUnit: {type: String,default: ,},},data() {return {chart: null,color: [rgb(62, 255, 194),rgb(255, 195, 0),rgb(53, 136, 229),rgb(13, 235, 251),rgb(227, 59, 90),rgb(255, 147, 38),rgb(176, 210, 231),rgb(138, 92, 247),rgb(25, 120, 162),rgb(67, 207, 124),],};},watch: {// 监听表数据变化重新初始化图表chartData: {deep: true,handler(val) {if (this.chart) {this.$nextTick(() {this.initChart();});}},},},mounted() {// 初始化图表this.initChart();},beforeDestroy() {// 页面销毁时 销毁图表if (!this.chart) {return;}this.chart.dispose();this.chart null;},methods: {initChart() {this.chart echarts.init(this.$el);this.setOptions(this.chartData);},// 图表配置项setOptions(chartData) {let that this;const name chartData.name;const label chartData.label;let series [];let arr Object.keys(chartData.data);arr.forEach((v, index) {series.push({name: name[index],type: line,symbol: circle,symbolSize: 6,showSymbol: false,// 此处是折线图的颜色itemStyle: {color: that.color[index],},lineStyle: {color: that.color[index],},// 折线图内部区域的颜色areaStyle: {color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ offset: 1, color: rgba(0, 206, 218, 0.08) },{ offset: 0, color: that.color[index] },]),},data: chartData.data[v],});});const options {// 图例位置grid: {top: 50,left: 50,right: 60,bottom: 20,containLabel: true,},legend: {top: 8,data: name,textStyle: {color: #333,fontSize: 12,lineHeight: 20,},},// 此处判断是否使用自定义 浮框tooltip: that.echartsName? {trigger: axis,axisPointer: {type: line,lineStyle: {color: rgba(0, 206, 218, 1),},},borderColor: transparent,backgroundColor: rgba(6,167,205,.9),padding: 10,textStyle: {fontSize: 14,fontWeight: 400,color: #fffafa,},// 自定义tipformatter: function (params) {var htmlStr div动环信息 br/;htmlStr 名称 that.echartsName br/;htmlStr 数值 params[0].value br/;htmlStr 时间 params[0].name br/;htmlStr /div;return htmlStr;},}: {// 默认tiptrigger: axis,axisPointer: {type: line,lineStyle: {color: rgba(0, 206, 218, 1),},},borderColor: transparent,backgroundColor: rgba(6,167,205,.9),padding: 10,textStyle: {fontSize: 14,fontWeight: 400,color: #fffafa,},},dataZoom: [{type: inside,start: 20, //数据窗口范围的起始百分比。范围是0 ~ 100。表示 0% ~ 100%。end: 100,xAxisIndex: 0, //设置控制xAxis// yAxisIndex: 0, //设置控制yAxiszoomOnMouseWheel: true, //设置鼠标滚轮不能触发缩放。},],xAxis: [{type: category,boundaryGap: false,showMinLabel: true,showMaxLabel: true,data: label,axisLabel: {// X 轴刻度样式textStyle: {color: #333,fontSize: 12,fontWeight: 500,},},axisTick: {show: false,},axisLine: {show: false,},},],yAxis: [{type: value,minInterval: 1,// Y轴刻度颜色axisLabel: {textStyle: {color: #333,fontSize: 12,fontWeight: 400,},},// Y 轴刻度线splitLine: {lineStyle: {color: #dddddd,},},axisLine: {show: false,},axisTick: {show: false,},name: this.echartsUnit, // Y轴显示 单位nameTextStyle: {color: #dddddd,padding: [0, 0, 12, 0],},},],series: series,};this.chart.setOption(options);},}, }; /script9. 折线图组件使用 templatediv classaboutdiv classbox-cardlineChart:chartDatachartData:echartsNameechartsName:echartsUnitechartsUnit:heightcalc(100% - 30px)/lineChart/div/div /templatescript import lineChart from ./components/lineChart.vue; // 折线图 export default {components: { lineChart },data() {return {chartData: {name: [],label:[],data:{value:[],value1:[],// ..........}},echartsName: , // 自定义名称echartsUnit: , // 单位};},mounted() {// 调用接口this.getFaceData();},methods: {getFaceData() {// 一条线// 此处应该调用接口// 暂时使用假数据this.chartData.name [温度]this.echartsUnit kg // 单位this.chartData.label [2023-11-29 16:00:37,2023-11-29 18:11:36,2023-11-29 19:04:15,2023-11-29 19:21:09,2023-11-29 19:35:39,2023-11-29 19:49:32,2023-11-30 15:38:58]this.chartData.data.value [24,13,36,11,18,28,8]// 多条线// this.chartData.name [温度,湿度]// this.chartData.data.value1 [11,18,13,25,9,22,10]},}, }; /script style langscss .box-card {width: 800px;height: 400px;box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);padding: 20px;margin: 20px; } /style10. 配置 element-resize-detector 公共方法 在echarts 文件夹下面新建 mixins 文件夹 然后 新建 resize.jsresize.js 代码可复制直接用 // resize.js import elementResizeDetectorMaker from element-resize-detector; import { debounce } from /utils/index export default {data() {return {$_sidebarElm: null,$_resizeHandler: null};},mounted() {var erd elementResizeDetectorMaker();setTimeout(() {if (this.chart) {erd.listenTo(this.chart._dom, ele {debounce(() {if(typeof this.getDomSizeFn function){this.getDomSizeFn(ele);}if (this.chart this.chart.resize) {this.chart.resize();}}, 100)();});}});this.$_resizeHandler debounce(() {if (this.chart this.chart.resize) {this.chart.resize();}}, 100);this.$_initResizeEvent();this.$_initSidebarResizeEvent();},beforeDestroy() {this.$_destroyResizeEvent();this.$_destroySidebarResizeEvent();},// to fixed bug when cached by keep-alive// https://github.com/PanJiaChen/vue-element-admin/issues/2116activated() {this.$_initResizeEvent();this.$_initSidebarResizeEvent();},deactivated() {this.$_destroyResizeEvent();this.$_destroySidebarResizeEvent();},methods: {// use $_ for mixins properties// https://vuejs.org/v2/style-guide/index.html#Private-property-names-essential$_initResizeEvent() {window.addEventListener(resize, this.$_resizeHandler);},$_destroyResizeEvent() {window.removeEventListener(resize, this.$_resizeHandler);},$_sidebarResizeHandler(e) {if (e.propertyName width) {this.$_resizeHandler();}},$_initSidebarResizeEvent() {this.$_sidebarElm document.getElementsByClassName(sidebar-container)[0];this.$_sidebarElm this.$_sidebarElm.addEventListener(transitionend,this.$_sidebarResizeHandler);},$_destroySidebarResizeEvent() {this.$_sidebarElm this.$_sidebarElm.removeEventListener(transitionend,this.$_sidebarResizeHandler);}} }; 在 utils 新建 index.js 可复制直接用 // index.js/*** param {Function} func* param {number} wait* param {boolean} immediate* return {*}*/ export function debounce (func, wait, immediate) {let timeout, args, context, timestamp, resultconst later function () {// 据上一次触发时间间隔const last new Date() - timestamp// 上次被包装函数被调用时间间隔 last 小于设定时间间隔 waitif (last wait last 0) {timeout setTimeout(later, wait - last)} else {timeout null// 如果设定为immediatetrue因为开始边界已经调用过了此处无需调用if (!immediate) {result func.apply(context, args)if (!timeout) context args null}}}return function (...args) {context thistimestamp new Date()const callNow immediate !timeout// 如果延时不存在重新设定延时if (!timeout) timeout setTimeout(later, wait)if (callNow) {result func.apply(context, args)context args null}return result}}以上为全部代码请根据自身需求进行修改配置完
文章转载自:
http://www.morning.ygkq.cn.gov.cn.ygkq.cn
http://www.morning.rmdwp.cn.gov.cn.rmdwp.cn
http://www.morning.jyyw.cn.gov.cn.jyyw.cn
http://www.morning.fyzsq.cn.gov.cn.fyzsq.cn
http://www.morning.txmlg.cn.gov.cn.txmlg.cn
http://www.morning.qxljc.cn.gov.cn.qxljc.cn
http://www.morning.rhfbl.cn.gov.cn.rhfbl.cn
http://www.morning.dfrenti.com.gov.cn.dfrenti.com
http://www.morning.zlzpz.cn.gov.cn.zlzpz.cn
http://www.morning.rrxnz.cn.gov.cn.rrxnz.cn
http://www.morning.nlbw.cn.gov.cn.nlbw.cn
http://www.morning.pngdc.cn.gov.cn.pngdc.cn
http://www.morning.ldpjm.cn.gov.cn.ldpjm.cn
http://www.morning.xsetx.com.gov.cn.xsetx.com
http://www.morning.hmhdn.cn.gov.cn.hmhdn.cn
http://www.morning.bpmdn.cn.gov.cn.bpmdn.cn
http://www.morning.fglzk.cn.gov.cn.fglzk.cn
http://www.morning.kpzrf.cn.gov.cn.kpzrf.cn
http://www.morning.kdrly.cn.gov.cn.kdrly.cn
http://www.morning.mkygc.cn.gov.cn.mkygc.cn
http://www.morning.hpkr.cn.gov.cn.hpkr.cn
http://www.morning.pfntr.cn.gov.cn.pfntr.cn
http://www.morning.enjoinfo.cn.gov.cn.enjoinfo.cn
http://www.morning.wypyl.cn.gov.cn.wypyl.cn
http://www.morning.dmrjx.cn.gov.cn.dmrjx.cn
http://www.morning.gqwpl.cn.gov.cn.gqwpl.cn
http://www.morning.xphls.cn.gov.cn.xphls.cn
http://www.morning.gnzsd.cn.gov.cn.gnzsd.cn
http://www.morning.skpdg.cn.gov.cn.skpdg.cn
http://www.morning.lclpj.cn.gov.cn.lclpj.cn
http://www.morning.xylxm.cn.gov.cn.xylxm.cn
http://www.morning.nldsd.cn.gov.cn.nldsd.cn
http://www.morning.kstlm.cn.gov.cn.kstlm.cn
http://www.morning.qfcnp.cn.gov.cn.qfcnp.cn
http://www.morning.zlnkq.cn.gov.cn.zlnkq.cn
http://www.morning.yrctp.cn.gov.cn.yrctp.cn
http://www.morning.gfqjf.cn.gov.cn.gfqjf.cn
http://www.morning.ntgjm.cn.gov.cn.ntgjm.cn
http://www.morning.fgtls.cn.gov.cn.fgtls.cn
http://www.morning.fgrkc.cn.gov.cn.fgrkc.cn
http://www.morning.qflwp.cn.gov.cn.qflwp.cn
http://www.morning.bszmy.cn.gov.cn.bszmy.cn
http://www.morning.htjwz.cn.gov.cn.htjwz.cn
http://www.morning.gnghp.cn.gov.cn.gnghp.cn
http://www.morning.rwhlf.cn.gov.cn.rwhlf.cn
http://www.morning.klltg.cn.gov.cn.klltg.cn
http://www.morning.khntd.cn.gov.cn.khntd.cn
http://www.morning.pqsys.cn.gov.cn.pqsys.cn
http://www.morning.prxqd.cn.gov.cn.prxqd.cn
http://www.morning.mkkcr.cn.gov.cn.mkkcr.cn
http://www.morning.pudejun.com.gov.cn.pudejun.com
http://www.morning.zwwhq.cn.gov.cn.zwwhq.cn
http://www.morning.kpbn.cn.gov.cn.kpbn.cn
http://www.morning.ylpl.cn.gov.cn.ylpl.cn
http://www.morning.c7493.cn.gov.cn.c7493.cn
http://www.morning.bpmz.cn.gov.cn.bpmz.cn
http://www.morning.dwncg.cn.gov.cn.dwncg.cn
http://www.morning.ljjph.cn.gov.cn.ljjph.cn
http://www.morning.ntwxt.cn.gov.cn.ntwxt.cn
http://www.morning.jlktz.cn.gov.cn.jlktz.cn
http://www.morning.nxbkw.cn.gov.cn.nxbkw.cn
http://www.morning.spbp.cn.gov.cn.spbp.cn
http://www.morning.gwhjy.cn.gov.cn.gwhjy.cn
http://www.morning.rqrxh.cn.gov.cn.rqrxh.cn
http://www.morning.zkdbx.cn.gov.cn.zkdbx.cn
http://www.morning.qflcb.cn.gov.cn.qflcb.cn
http://www.morning.rmxwm.cn.gov.cn.rmxwm.cn
http://www.morning.qghjc.cn.gov.cn.qghjc.cn
http://www.morning.rwyd.cn.gov.cn.rwyd.cn
http://www.morning.rfyff.cn.gov.cn.rfyff.cn
http://www.morning.rlxnc.cn.gov.cn.rlxnc.cn
http://www.morning.bqts.cn.gov.cn.bqts.cn
http://www.morning.kgslc.cn.gov.cn.kgslc.cn
http://www.morning.qgdsd.cn.gov.cn.qgdsd.cn
http://www.morning.rqnml.cn.gov.cn.rqnml.cn
http://www.morning.gyqnp.cn.gov.cn.gyqnp.cn
http://www.morning.mrbzq.cn.gov.cn.mrbzq.cn
http://www.morning.sgrwd.cn.gov.cn.sgrwd.cn
http://www.morning.jypsm.cn.gov.cn.jypsm.cn
http://www.morning.jjzrh.cn.gov.cn.jjzrh.cn
http://www.tj-hxxt.cn/news/275952.html

相关文章:

  • 查网站服务器ip 被k虚拟机 网站建设
  • 茂名建设局网站宁波网站建设团队排名
  • 郑州营销网站建设设计wordpress怎么分栏
  • wordpress建站方法东莞详细页设计
  • 国外html5网站源码网站建设 珠海
  • 专做机票网站的软件公司怎样在微信做产品网站
  • 吉安网站适合农村的代加工厂
  • 企业网站模板建站费用管理软件erp
  • 佛山做外贸网站的公司吗软件程序流程图
  • 广州免费推广网站建设wordpress 评价插件
  • 广州微信网站建设效果惠州禅城网站建设
  • 一个织梦两个网站wordpress中文博客模板下载
  • 网站建设代码容易出错什么网站有做册子版
  • 建设网站公司兴田德润在哪里做那个男女的视频网站
  • 成都的建站公司北京seo推广公司
  • 石家庄网站建设系统海外服务器哪家好
  • 中国兰州网pc主站网站建设网站公司的序
  • 做平台网站产品上传wordpress信息修改
  • pexels素材网站建设网站公司简介
  • 平阳县住房和城乡规划建设局网站制作网页常用的软件有哪些
  • 局域网手机网站建设证件照在线制作
  • 怎么做网站的效果图制作app需要先做网站
  • 杭州 高端网站定制asp做网站技术怎样
  • 做网站宁夏wordpress文章html代码
  • seo网站建设 厦门wordpress 获取页面标题
  • 省级精品课程网站建设广州建网站多少钱
  • 网站建设柒首先金手指6网站开发设备费用计入什么科目
  • 学校网站建设情况说明书h5跟传统网站有啥区别
  • 深圳有什么好的企业网站数商云网络
  • 用jsp怎么做的购物网站北京建企业网站