【百度大脑CV主题月征稿计划】AI小程序之车牌识
wangwei8638 发布于2019-09 浏览:3220 回复:5
1
收藏

对机动车蓝牌、绿牌、单/双行黄牌的地域编号和车牌号进行识别,并能同时识别图像中的多张车牌。本文主要介绍车牌识别的小程序功能实现。

想了解微信小程序的开发过程,请参看我之前的帖子:《UNIT接入小程序》https://ai.baidu.com/forum/topic/show/953022

想了解车牌识别的调用过程,请参看我之前的帖子:《车牌识别》https://ai.baidu.com/forum/topic/show/943028

1 系统框架

用到的技术主要有:百度车牌识别和微信小程序。小程序将用户上传的图片提交给百度车牌识别服务,返回车牌号。全部功能都在小程序客户端完成,不需要服务器,适合个人开发者学习调试使用,同时也为商业应用提供相应解决方案。

2 创建小程序项目

在根目录的全局配置文件app.json中增加:"pages/ licensePlate/ licensePlate" ,会自动创建相关页面文件,结构如下:

licensePlate.js:功能逻辑模块

licensePlate.wxss:页面样式文件

licensePlate.wxml:页面布局文件

licensePlate.json:页面配置文件

3 调用车牌识别API

3.1 首先要在控制台创建应用,调用车牌API,“获取API Key/Secret Key”。

接口文档地址:https://ai.baidu.com/docs#/OCR-API-Plate/top

请求URL: https://aip.baidubce.com/rest/2.0/ocr/v1/license_plate

Body中放置请求参数,参数详情如下:

返回参数:

3.2 车牌识别功能实现

(1)发送URL请求核心代码

//在baiduai.js中发送URL请求,并进行封装。

//车牌识别接口请求,此处添加

let license_plateUrl = 'https://aip.baidubce.com/rest/2.0/ocr/v1/license_plate';

let license_plateRequest = (base64Img, callback) => {

  var accessToken = app.globalData.access_token;

  //拼接接口body参数

  let params = {

    image: base64Img,

    detectorId: 0

  }

  //发送接口请求

  wx.request({

    url: license_plateUrl + '?access_token=' + accessToken,

    data: params,

    header: {

      'content-type': 'application/x-www-form-urlencoded'

    },

    method: 'POST',

    success: function (res) {

      callback.success(res.data)

    },

    fail: function (res) {

      if (callback.fail)

        callback.fail()

    }

  })

}

 //暴露出去的接口

module.exports = {

 license_plateRequest: license_plateRequest,

 }

 (2)定义按钮点击事件

//在businessLicense.js中定义定义按钮点击事件

//按钮点击事件

  uploads: function () {

    var that = this

    wx.chooseImage({

      count: 1, // 默认9

      sizeType: ['compressed'], // 可以指定是原图还是压缩图,默认二者都有

      sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有

      success: function (res) {

        // 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片

        if (res.tempFiles[0].size > 4096 * 1024) {

          wx.showToast({

            title: '图片文件过大哦',

            icon: 'none',

            mask: true,

            duration: 1500

          })

        } else {

          that.setData({

            img: res.tempFilePaths[0]

          })

        }

        wx.showLoading({

          title: "分析中...",

          mask: true

        })

        //根据上传的图片读取图片的base64

        var fs = wx.getFileSystemManager();

        fs.readFile({

          filePath: res.tempFilePaths[0].toString(),

          encoding: 'base64',

          success(res) {

            //获取到图片的base64 进行请求接口

            api.license_plateRequest(res.data, {

              success(res) {

                if (res.data != '') {

                  wx.hideLoading();

                  var text = '';

                  text += "\n";

                  var text = res.words_result.number;

                                

                  that.setData({

                    output: text

                  })

                } else {

                  wx.hideLoading();

                  wx.showModal({

                    showCancel: false,

                    title: '温馨提示',

                    content: '貌似没有识别出结果'

                  })

                }

              }

            })

          }

        })

      },

    })

  },

 (3)修改页面样式文件

/* pages/businessLicense/businessLicense.wxss */

.image {

  width: 100%;

  height: 360rpx;

}

.container {

  margin-top: -110px;

  background-repeat: no-repeat;

  background-size: auto;

  background-position: bottom;

  background-position-x: right;

}



button {

  font-family: 微软雅黑;

}



.page-body-info {

  display: flex;

  box-sizing: border-box;

  padding: 30rpx;

  height: 420rpx;

  border-top: 1rpx solid #d9d9d9;

  border-bottom: 1rpx solid #d9d9d9;

  align-items: center;

  justify-content: center;

}



.atbottom {

  width: 100%;

  height: 50px;

  display: flex;

  flex-direction: row;

  justify-content: center;

  position: fixed;

  background: #3366FF;

  bottom: 0;

}

.img_wrap {

    margin-bottom: 10px;

    width: 750rpx;

    height: 550rpx;

    background: #ececec;

}

image {

    width: 100%;

    height: 100%;

    max-height: 1

}

.msg {

    margin: 10px 0;

    text-align: center;

}

.table {

  margin-top: 10rpx;

  border: 0px solid darkgray;

  width: 100%;

}

.tr {

  display: flex;

  width: 100%;

  justify-content: center;

  height: 80rpx;



}

.td {

  font-family: 微软雅黑;

    font-size: 28rpx;

    width:100%;

    display: flex;

    justify-content: center;

    text-align: center;

    align-items: center;

}

.bg-g{

  background: white;

}

.result{

  font-size: 32rpx;

  color: #fa4627;

  border-top: 1rpx solid #eeeeee;

  margin:30rpx 20rpx 0rpx 20rpx;

  padding: 10rpx;

}

.th {

  font-size: 28rpx;

  width: 48%;

  justify-content: center;

  background: #3366FF;

  color: #fff;

  display: flex;

  height: 80rpx;

  align-items: center;

}

 4 实现效果

收藏
点赞
1
个赞
共5条回复 最后由天枰实力接单回复于2023-02
#25天枰实力接单回复于2023-02

hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E5%85%AC%E5%8F%B8%E5%9C%A8%E7%BA%BF%E4%B8%8A%E4%B8%8B%E5%88%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E6%80%BB%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E5%A4%A7%E8%82%A1%E4%B8%9C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E7%8E%B0%E5%9C%BA%E7%BB%8F%E7%BA%AA%E4%BA%BA%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%80%8E%E4%B9%88%E5%8E%BB%E7%8E%89%E7%A5%A5%E7%8E%B0%E5%9C%BA%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E5%85%AC%E5%8F%B8%E4%BB%A3%E7%90%86%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%80%81%E8%A1%97%E7%8E%89%E7%A5%A5%E5%85%AC%E5%8F%B8%E4%B8%8A%E4%B8%8B%E5%88%86%E5%AE%A2%E6%9C%8D%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E5%85%AC%E5%8F%B824%E5%B0%8F%E6%97%B6%E5%AE%A2%E6%9C%8D%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%80%81%E8%A1%97%E7%8E%89%E7%A5%A5%E5%9B%BD%E9%99%85%E4%BC%9A%E5%91%98%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%80%81%E8%A1%97%E7%8E%89%E7%A5%A5%E5%B9%B3%E5%8F%B0%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E5%AE%A2%E6%9C%8D%E7%BB%8F%E7%90%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E5%85%AC%E5%8F%B8%E6%80%8E%E4%B9%88%E5%BC%80%E6%88%B7%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E5%A4%96%E8%81%94%E7%BB%8F%E7%90%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E5%85%AC%E5%8F%B8%E8%A2%AB%E9%BB%91%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E4%BC%9A%E5%91%98%E5%BC%80%E6%88%B7%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E4%BC%9A%E5%91%98%E7%BD%91%E7%BB%9C%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E5%BD%95%E5%B1%8F%E5%9B%9E%E6%94%BE%E5%90%97%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E5%9B%BD%E9%99%85%E4%B8%8A%E4%B8%8B%E5%88%86%E5%BC%80%E6%88%B7%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E5%9B%BD%E9%99%85%E5%AE%A2%E6%9C%8D%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%80%8E%E6%A0%B7%E6%B3%A8%E5%86%8C%E7%8E%89%E7%A5%A5%E5%9B%BD%E9%99%85%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E5%9B%BD%E9%99%85%E4%B8%8A%E5%88%86%E5%AE%A2%E6%9C%8D%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E5%B9%B3%E5%8F%B0%E5%AE%98%E6%96%B9%E7%BD%91%E7%AB%99%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E5%85%AC%E5%8F%B8%E4%B8%BB%E7%AE%A1%E8%B4%9F%E8%B4%A3%E4%BA%BA%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E5%B9%B3%E5%8F%B0%E6%98%AF%E7%9C%9F%E4%BA%BA%E5%90%97%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E5%85%AC%E5%8F%B8%E5%BC%80%E6%88%B7%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E6%B8%B8%E6%88%8F%E5%AE%98%E6%96%B9%E4%B8%8B%E8%BD%BD%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E5%85%AC%E5%8F%B8%E5%BC%80%E4%BB%A3%E7%90%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E6%B3%A8%E5%86%8C%E6%B8%B8%E6%88%8F%E7%BD%91%E7%AB%99%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%81%94%E7%B3%BB%E7%8E%89%E7%A5%A5%E5%9B%BD%E9%99%85%E4%B8%AD%E5%BF%83%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%80%81%E8%A1%97%E7%8E%89%E7%A5%A5%E7%BA%BF%E4%B8%8A%E5%B9%B3%E5%8F%B0%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E5%9B%BD%E9%99%85%E4%B8%8A%E5%88%86%E4%B8%8B%E5%88%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%80%81%E8%A1%97%E7%8E%89%E7%A5%A5%E5%9B%BD%E9%99%85%E6%AD%A3%E8%A7%84%E5%90%97%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E5%85%AC%E5%8F%B8%E5%9B%BD%E9%99%85%E7%BD%91%E7%AB%99%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E6%B8%B8%E6%88%8F%E5%BC%80%E6%88%B7%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E8%B4%A6%E5%8F%B7%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E5%85%AC%E5%8F%B8%E5%BC%80%E6%88%B7%E5%9C%B0%E5%9D%80%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E5%9B%BD%E9%99%85%E5%AE%A2%E6%9C%8D%E5%9C%A8%E7%BA%BF%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E5%85%AC%E5%8F%B8%E7%BB%8F%E7%90%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E5%85%AC%E5%8F%B8%E5%AE%98%E6%96%B9%E7%94%B5%E8%AF%9D%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E5%9B%BD%E9%99%85%E5%AE%98%E6%96%B9%E5%B9%B3%E5%8F%B0%E6%80%8E%E4%B9%88%E5%BC%80%E6%88%B7%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E5%9B%BD%E9%99%85%E7%8E%B0%E5%9C%BA%E5%BC%80%E6%88%B7%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E5%9B%BD%E9%99%85%E5%BE%AE%E4%BF%A1%E5%BC%80%E6%88%B7%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E5%85%AC%E5%8F%B8%E5%BC%80%E6%88%B7%E7%99%BB%E5%BD%95%E7%BD%91%E5%9D%80%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E7%A5%A5%E5%9B%BD%E9%99%85%E5%BC%80%E6%88%B7%E5%AE%98%E7%BD%91%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E5%85%AC%E5%8F%B8%E7%8E%B0%E5%9C%BA%E7%BB%8F%E7%90%86%E5%9B%A2%E9%98%9F%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E5%85%AC%E5%8F%B8%E5%9C%A8%E7%BA%BF%E4%B8%8A%E4%B8%8B%E5%88%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E6%80%BB%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E5%A4%A7%E8%82%A1%E4%B8%9C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E7%8E%B0%E5%9C%BA%E7%BB%8F%E7%BA%AA%E4%BA%BA%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%80%8E%E4%B9%88%E5%8E%BB%E7%8E%89%E5%92%8C%E7%8E%B0%E5%9C%BA%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E5%85%AC%E5%8F%B8%E4%BB%A3%E7%90%86%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%80%81%E8%A1%97%E7%8E%89%E5%92%8C%E5%85%AC%E5%8F%B8%E4%B8%8A%E4%B8%8B%E5%88%86%E5%AE%A2%E6%9C%8D%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E5%85%AC%E5%8F%B824%E5%B0%8F%E6%97%B6%E5%AE%A2%E6%9C%8D%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%80%81%E8%A1%97%E7%8E%89%E5%92%8C%E5%9B%BD%E9%99%85%E4%BC%9A%E5%91%98%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%80%81%E8%A1%97%E7%8E%89%E5%92%8C%E5%B9%B3%E5%8F%B0%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E5%AE%A2%E6%9C%8D%E7%BB%8F%E7%90%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E5%85%AC%E5%8F%B8%E6%80%8E%E4%B9%88%E5%BC%80%E6%88%B7%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E5%A4%96%E8%81%94%E7%BB%8F%E7%90%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E5%85%AC%E5%8F%B8%E8%A2%AB%E9%BB%91%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E4%BC%9A%E5%91%98%E5%BC%80%E6%88%B7%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E4%BC%9A%E5%91%98%E7%BD%91%E7%BB%9C%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E5%BD%95%E5%B1%8F%E5%9B%9E%E6%94%BE%E5%90%97%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E5%9B%BD%E9%99%85%E4%B8%8A%E4%B8%8B%E5%88%86%E5%BC%80%E6%88%B7%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E5%9B%BD%E9%99%85%E5%AE%A2%E6%9C%8D%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%80%8E%E6%A0%B7%E6%B3%A8%E5%86%8C%E7%8E%89%E5%92%8C%E5%9B%BD%E9%99%85%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E5%9B%BD%E9%99%85%E4%B8%8A%E5%88%86%E5%AE%A2%E6%9C%8D%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E5%B9%B3%E5%8F%B0%E5%AE%98%E6%96%B9%E7%BD%91%E7%AB%99%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E5%85%AC%E5%8F%B8%E4%B8%BB%E7%AE%A1%E8%B4%9F%E8%B4%A3%E4%BA%BA%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E5%B9%B3%E5%8F%B0%E6%98%AF%E7%9C%9F%E4%BA%BA%E5%90%97%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E5%85%AC%E5%8F%B8%E5%BC%80%E6%88%B7%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E6%B8%B8%E6%88%8F%E5%AE%98%E6%96%B9%E4%B8%8B%E8%BD%BD%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E5%85%AC%E5%8F%B8%E5%BC%80%E4%BB%A3%E7%90%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E6%B3%A8%E5%86%8C%E6%B8%B8%E6%88%8F%E7%BD%91%E7%AB%99%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%81%94%E7%B3%BB%E7%8E%89%E5%92%8C%E5%9B%BD%E9%99%85%E4%B8%AD%E5%BF%83%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%80%81%E8%A1%97%E7%8E%89%E5%92%8C%E7%BA%BF%E4%B8%8A%E5%B9%B3%E5%8F%B0%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E5%9B%BD%E9%99%85%E4%B8%8A%E5%88%86%E4%B8%8B%E5%88%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%80%81%E8%A1%97%E7%8E%89%E5%92%8C%E5%9B%BD%E9%99%85%E6%AD%A3%E8%A7%84%E5%90%97%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E5%85%AC%E5%8F%B8%E5%9B%BD%E9%99%85%E7%BD%91%E7%AB%99%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E6%B8%B8%E6%88%8F%E5%BC%80%E6%88%B7%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E8%B4%A6%E5%8F%B7%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E5%85%AC%E5%8F%B8%E5%BC%80%E6%88%B7%E5%9C%B0%E5%9D%80%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E5%9B%BD%E9%99%85%E5%AE%A2%E6%9C%8D%E5%9C%A8%E7%BA%BF%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E5%85%AC%E5%8F%B8%E7%BB%8F%E7%90%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E5%85%AC%E5%8F%B8%E5%AE%98%E6%96%B9%E7%94%B5%E8%AF%9D%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E5%9B%BD%E9%99%85%E5%AE%98%E6%96%B9%E5%B9%B3%E5%8F%B0%E6%80%8E%E4%B9%88%E5%BC%80%E6%88%B7%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E5%9B%BD%E9%99%85%E7%8E%B0%E5%9C%BA%E5%BC%80%E6%88%B7%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E5%9B%BD%E9%99%85%E5%BE%AE%E4%BF%A1%E5%BC%80%E6%88%B7%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E5%85%AC%E5%8F%B8%E5%BC%80%E6%88%B7%E7%99%BB%E5%BD%95%E7%BD%91%E5%9D%80%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E7%8E%89%E5%92%8C%E5%9B%BD%E9%99%85%E5%BC%80%E6%88%B7%E5%AE%98%E7%BD%91%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E5%85%AC%E5%8F%B8%E7%8E%B0%E5%9C%BA%E7%BB%8F%E7%90%86%E5%9B%A2%E9%98%9F%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E5%85%AC%E5%8F%B8%E5%9C%A8%E7%BA%BF%E4%B8%8A%E4%B8%8B%E5%88%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E6%80%BB%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E5%A4%A7%E8%82%A1%E4%B8%9C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E7%8E%B0%E5%9C%BA%E7%BB%8F%E7%BA%AA%E4%BA%BA%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%80%8E%E4%B9%88%E5%8E%BB%E9%94%A6%E7%A6%8F%E7%8E%B0%E5%9C%BA%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E5%85%AC%E5%8F%B8%E4%BB%A3%E7%90%86%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%80%81%E8%A1%97%E9%94%A6%E7%A6%8F%E5%85%AC%E5%8F%B8%E4%B8%8A%E4%B8%8B%E5%88%86%E5%AE%A2%E6%9C%8D%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E5%85%AC%E5%8F%B824%E5%B0%8F%E6%97%B6%E5%AE%A2%E6%9C%8D%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%80%81%E8%A1%97%E9%94%A6%E7%A6%8F%E5%9B%BD%E9%99%85%E4%BC%9A%E5%91%98%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%80%81%E8%A1%97%E9%94%A6%E7%A6%8F%E5%B9%B3%E5%8F%B0%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E5%AE%A2%E6%9C%8D%E7%BB%8F%E7%90%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E5%85%AC%E5%8F%B8%E6%80%8E%E4%B9%88%E5%BC%80%E6%88%B7%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E5%A4%96%E8%81%94%E7%BB%8F%E7%90%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E5%85%AC%E5%8F%B8%E8%A2%AB%E9%BB%91%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E4%BC%9A%E5%91%98%E5%BC%80%E6%88%B7%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E4%BC%9A%E5%91%98%E7%BD%91%E7%BB%9C%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E5%BD%95%E5%B1%8F%E5%9B%9E%E6%94%BE%E5%90%97%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E5%9B%BD%E9%99%85%E4%B8%8A%E4%B8%8B%E5%88%86%E5%BC%80%E6%88%B7%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E5%9B%BD%E9%99%85%E5%AE%A2%E6%9C%8D%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%80%8E%E6%A0%B7%E6%B3%A8%E5%86%8C%E9%94%A6%E7%A6%8F%E5%9B%BD%E9%99%85%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E5%9B%BD%E9%99%85%E4%B8%8A%E5%88%86%E5%AE%A2%E6%9C%8D%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E5%B9%B3%E5%8F%B0%E5%AE%98%E6%96%B9%E7%BD%91%E7%AB%99%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E5%85%AC%E5%8F%B8%E4%B8%BB%E7%AE%A1%E8%B4%9F%E8%B4%A3%E4%BA%BA%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E5%B9%B3%E5%8F%B0%E6%98%AF%E7%9C%9F%E4%BA%BA%E5%90%97%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E5%85%AC%E5%8F%B8%E5%BC%80%E6%88%B7%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E6%B8%B8%E6%88%8F%E5%AE%98%E6%96%B9%E4%B8%8B%E8%BD%BD%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E5%85%AC%E5%8F%B8%E5%BC%80%E4%BB%A3%E7%90%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E6%B3%A8%E5%86%8C%E6%B8%B8%E6%88%8F%E7%BD%91%E7%AB%99%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%81%94%E7%B3%BB%E9%94%A6%E7%A6%8F%E5%9B%BD%E9%99%85%E4%B8%AD%E5%BF%83%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%80%81%E8%A1%97%E9%94%A6%E7%A6%8F%E7%BA%BF%E4%B8%8A%E5%B9%B3%E5%8F%B0%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E5%9B%BD%E9%99%85%E4%B8%8A%E5%88%86%E4%B8%8B%E5%88%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%80%81%E8%A1%97%E9%94%A6%E7%A6%8F%E5%9B%BD%E9%99%85%E6%AD%A3%E8%A7%84%E5%90%97%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E5%85%AC%E5%8F%B8%E5%9B%BD%E9%99%85%E7%BD%91%E7%AB%99%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E6%B8%B8%E6%88%8F%E5%BC%80%E6%88%B7%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E8%B4%A6%E5%8F%B7%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E5%85%AC%E5%8F%B8%E5%BC%80%E6%88%B7%E5%9C%B0%E5%9D%80%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E5%9B%BD%E9%99%85%E5%AE%A2%E6%9C%8D%E5%9C%A8%E7%BA%BF%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E5%85%AC%E5%8F%B8%E7%BB%8F%E7%90%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E5%85%AC%E5%8F%B8%E5%AE%98%E6%96%B9%E7%94%B5%E8%AF%9D%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E5%9B%BD%E9%99%85%E5%AE%98%E6%96%B9%E5%B9%B3%E5%8F%B0%E6%80%8E%E4%B9%88%E5%BC%80%E6%88%B7%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E5%9B%BD%E9%99%85%E7%8E%B0%E5%9C%BA%E5%BC%80%E6%88%B7%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E5%9B%BD%E9%99%85%E5%BE%AE%E4%BF%A1%E5%BC%80%E6%88%B7%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E5%85%AC%E5%8F%B8%E5%BC%80%E6%88%B7%E7%99%BB%E5%BD%95%E7%BD%91%E5%9D%80%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E9%94%A6%E7%A6%8F%E5%9B%BD%E9%99%85%E5%BC%80%E6%88%B7%E5%AE%98%E7%BD%91%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E5%85%AC%E5%8F%B8%E7%8E%B0%E5%9C%BA%E7%BB%8F%E7%90%86%E5%9B%A2%E9%98%9F%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E5%85%AC%E5%8F%B8%E5%9C%A8%E7%BA%BF%E4%B8%8A%E4%B8%8B%E5%88%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E6%80%BB%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E5%A4%A7%E8%82%A1%E4%B8%9C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E7%8E%B0%E5%9C%BA%E7%BB%8F%E7%BA%AA%E4%BA%BA%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%80%8E%E4%B9%88%E5%8E%BB%E8%91%A1%E4%BA%AC%E5%8E%85%E7%8E%B0%E5%9C%BA%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E5%85%AC%E5%8F%B8%E4%BB%A3%E7%90%86%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%80%81%E8%A1%97%E8%91%A1%E4%BA%AC%E5%8E%85%E5%85%AC%E5%8F%B8%E4%B8%8A%E4%B8%8B%E5%88%86%E5%AE%A2%E6%9C%8D%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E5%85%AC%E5%8F%B824%E5%B0%8F%E6%97%B6%E5%AE%A2%E6%9C%8D%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%80%81%E8%A1%97%E8%91%A1%E4%BA%AC%E5%8E%85%E5%9B%BD%E9%99%85%E4%BC%9A%E5%91%98%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%80%81%E8%A1%97%E8%91%A1%E4%BA%AC%E5%8E%85%E5%B9%B3%E5%8F%B0%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E5%AE%A2%E6%9C%8D%E7%BB%8F%E7%90%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E5%85%AC%E5%8F%B8%E6%80%8E%E4%B9%88%E5%BC%80%E6%88%B7%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E5%A4%96%E8%81%94%E7%BB%8F%E7%90%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E5%85%AC%E5%8F%B8%E8%A2%AB%E9%BB%91%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E4%BC%9A%E5%91%98%E5%BC%80%E6%88%B7%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E4%BC%9A%E5%91%98%E7%BD%91%E7%BB%9C%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E5%BD%95%E5%B1%8F%E5%9B%9E%E6%94%BE%E5%90%97%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E5%9B%BD%E9%99%85%E4%B8%8A%E4%B8%8B%E5%88%86%E5%BC%80%E6%88%B7%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E5%9B%BD%E9%99%85%E5%AE%A2%E6%9C%8D%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%80%8E%E6%A0%B7%E6%B3%A8%E5%86%8C%E8%91%A1%E4%BA%AC%E5%8E%85%E5%9B%BD%E9%99%85%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E5%9B%BD%E9%99%85%E4%B8%8A%E5%88%86%E5%AE%A2%E6%9C%8D%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E5%B9%B3%E5%8F%B0%E5%AE%98%E6%96%B9%E7%BD%91%E7%AB%99%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E5%85%AC%E5%8F%B8%E4%B8%BB%E7%AE%A1%E8%B4%9F%E8%B4%A3%E4%BA%BA%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E5%B9%B3%E5%8F%B0%E6%98%AF%E7%9C%9F%E4%BA%BA%E5%90%97%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E5%85%AC%E5%8F%B8%E5%BC%80%E6%88%B7%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E6%B8%B8%E6%88%8F%E5%AE%98%E6%96%B9%E4%B8%8B%E8%BD%BD%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E5%85%AC%E5%8F%B8%E5%BC%80%E4%BB%A3%E7%90%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E6%B3%A8%E5%86%8C%E6%B8%B8%E6%88%8F%E7%BD%91%E7%AB%99%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%81%94%E7%B3%BB%E8%91%A1%E4%BA%AC%E5%8E%85%E5%9B%BD%E9%99%85%E4%B8%AD%E5%BF%83%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%80%81%E8%A1%97%E8%91%A1%E4%BA%AC%E5%8E%85%E7%BA%BF%E4%B8%8A%E5%B9%B3%E5%8F%B0%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E5%9B%BD%E9%99%85%E4%B8%8A%E5%88%86%E4%B8%8B%E5%88%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%80%81%E8%A1%97%E8%91%A1%E4%BA%AC%E5%8E%85%E5%9B%BD%E9%99%85%E6%AD%A3%E8%A7%84%E5%90%97%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E5%85%AC%E5%8F%B8%E5%9B%BD%E9%99%85%E7%BD%91%E7%AB%99%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E6%B8%B8%E6%88%8F%E5%BC%80%E6%88%B7%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E8%B4%A6%E5%8F%B7%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E5%85%AC%E5%8F%B8%E5%BC%80%E6%88%B7%E5%9C%B0%E5%9D%80%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E5%9B%BD%E9%99%85%E5%AE%A2%E6%9C%8D%E5%9C%A8%E7%BA%BF%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E5%85%AC%E5%8F%B8%E7%BB%8F%E7%90%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E5%85%AC%E5%8F%B8%E5%AE%98%E6%96%B9%E7%94%B5%E8%AF%9D%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E5%9B%BD%E9%99%85%E5%AE%98%E6%96%B9%E5%B9%B3%E5%8F%B0%E6%80%8E%E4%B9%88%E5%BC%80%E6%88%B7%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E5%9B%BD%E9%99%85%E7%8E%B0%E5%9C%BA%E5%BC%80%E6%88%B7%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E5%9B%BD%E9%99%85%E5%BE%AE%E4%BF%A1%E5%BC%80%E6%88%B7%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E5%85%AC%E5%8F%B8%E5%BC%80%E6%88%B7%E7%99%BB%E5%BD%95%E7%BD%91%E5%9D%80%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%91%A1%E4%BA%AC%E5%8E%85%E5%9B%BD%E9%99%85%E5%BC%80%E6%88%B7%E5%AE%98%E7%BD%91%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E5%85%AC%E5%8F%B8%E7%8E%B0%E5%9C%BA%E7%BB%8F%E7%90%86%E5%9B%A2%E9%98%9F%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E5%85%AC%E5%8F%B8%E5%9C%A8%E7%BA%BF%E4%B8%8A%E4%B8%8B%E5%88%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E6%80%BB%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E5%A4%A7%E8%82%A1%E4%B8%9C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E7%8E%B0%E5%9C%BA%E7%BB%8F%E7%BA%AA%E4%BA%BA%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%80%8E%E4%B9%88%E5%8E%BB%E6%96%B0%E9%94%A6%E6%B1%9F%E7%8E%B0%E5%9C%BA%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E5%85%AC%E5%8F%B8%E4%BB%A3%E7%90%86%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%80%81%E8%A1%97%E6%96%B0%E9%94%A6%E6%B1%9F%E5%85%AC%E5%8F%B8%E4%B8%8A%E4%B8%8B%E5%88%86%E5%AE%A2%E6%9C%8D%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E5%85%AC%E5%8F%B824%E5%B0%8F%E6%97%B6%E5%AE%A2%E6%9C%8D%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%80%81%E8%A1%97%E6%96%B0%E9%94%A6%E6%B1%9F%E5%9B%BD%E9%99%85%E4%BC%9A%E5%91%98%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%80%81%E8%A1%97%E6%96%B0%E9%94%A6%E6%B1%9F%E5%B9%B3%E5%8F%B0%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E5%AE%A2%E6%9C%8D%E7%BB%8F%E7%90%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E5%85%AC%E5%8F%B8%E6%80%8E%E4%B9%88%E5%BC%80%E6%88%B7%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E5%A4%96%E8%81%94%E7%BB%8F%E7%90%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E5%85%AC%E5%8F%B8%E8%A2%AB%E9%BB%91%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E4%BC%9A%E5%91%98%E5%BC%80%E6%88%B7%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E4%BC%9A%E5%91%98%E7%BD%91%E7%BB%9C%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E5%BD%95%E5%B1%8F%E5%9B%9E%E6%94%BE%E5%90%97%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E5%9B%BD%E9%99%85%E4%B8%8A%E4%B8%8B%E5%88%86%E5%BC%80%E6%88%B7%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E5%9B%BD%E9%99%85%E5%AE%A2%E6%9C%8D%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%80%8E%E6%A0%B7%E6%B3%A8%E5%86%8C%E6%96%B0%E9%94%A6%E6%B1%9F%E5%9B%BD%E9%99%85%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E5%9B%BD%E9%99%85%E4%B8%8A%E5%88%86%E5%AE%A2%E6%9C%8D%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E5%B9%B3%E5%8F%B0%E5%AE%98%E6%96%B9%E7%BD%91%E7%AB%99%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E5%85%AC%E5%8F%B8%E4%B8%BB%E7%AE%A1%E8%B4%9F%E8%B4%A3%E4%BA%BA%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E5%B9%B3%E5%8F%B0%E6%98%AF%E7%9C%9F%E4%BA%BA%E5%90%97%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E5%85%AC%E5%8F%B8%E5%BC%80%E6%88%B7%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E6%B8%B8%E6%88%8F%E5%AE%98%E6%96%B9%E4%B8%8B%E8%BD%BD%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E5%85%AC%E5%8F%B8%E5%BC%80%E4%BB%A3%E7%90%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E6%B3%A8%E5%86%8C%E6%B8%B8%E6%88%8F%E7%BD%91%E7%AB%99%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%81%94%E7%B3%BB%E6%96%B0%E9%94%A6%E6%B1%9F%E5%9B%BD%E9%99%85%E4%B8%AD%E5%BF%83%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%80%81%E8%A1%97%E6%96%B0%E9%94%A6%E6%B1%9F%E7%BA%BF%E4%B8%8A%E5%B9%B3%E5%8F%B0%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E5%9B%BD%E9%99%85%E4%B8%8A%E5%88%86%E4%B8%8B%E5%88%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E8%80%81%E8%A1%97%E6%96%B0%E9%94%A6%E6%B1%9F%E5%9B%BD%E9%99%85%E6%AD%A3%E8%A7%84%E5%90%97%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E5%85%AC%E5%8F%B8%E5%9B%BD%E9%99%85%E7%BD%91%E7%AB%99%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E6%B8%B8%E6%88%8F%E5%BC%80%E6%88%B7%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E8%B4%A6%E5%8F%B7%E6%B3%A8%E5%86%8C%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E5%85%AC%E5%8F%B8%E5%BC%80%E6%88%B7%E5%9C%B0%E5%9D%80%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E5%9B%BD%E9%99%85%E5%AE%A2%E6%9C%8D%E5%9C%A8%E7%BA%BF%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E5%85%AC%E5%8F%B8%E7%BB%8F%E7%90%86%E3%80%90l8l83998985%E3%80%91%0Ablh.html
hppc.gov.cn/s?wd=%E6%96%B0%E9%94%A6%E6%B1%9F%E5%85%AC%E5%8F%B8%E5%AE%98%E6%96%B9%E7%94%B5%E8%AF%9D%E3%80%90l8l83998985%E3%80%91%0Ablh.html

0
#5wangwei8638回复于2020-06

0
#4wangwei8638回复于2020-06

欢迎扫描体验

0
#3wangwei8638回复于2019-09

一拍即成

0
#2wangwei8638回复于2019-09

快速提取车牌

0
TOP
切换版块