相对于父容器(取值:true / false)帧布局(FrameLayout)

本文主要介绍了Android中的帧布局FrameLayout,它允许子视图覆盖彼此,重要属性包括控件重力和前景重力。通过示例展示了如何使用FrameLayout创建不同大小的重叠文字视图,并探讨了其在UI设计中的应用。
摘要由CSDN通过智能技术生成

详解 Hello World

Activity

一个可视化的界面,独立的窗口,继承来自AppCompatActivity

  • MainActivity
  • onCreate()
  • setContentView()
  • ackage com.e.myapplication;

    import androidx.appcompat.app.AppCompatActivity;
    import android.os.Bundle;

    public class MainActivity extends AppCompatActivity {

        //重写了父类的方法 当这个界面别启动的时候 就开始执行 onCreate
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            //设置内容视图 打开布局文件 layout
            //R 为每一个资源文件按类别分配一个索引
            setContentView(R.layout.activity_main);
        }
    }

    布局文件

    activity_main.xml

  • <?xml version="1.0" encoding="utf-8"?>
    <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".MainActivity">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Hello World!"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintTop_toTopOf="parent" />

    </androidx.constraintlayout.widget.ConstraintLayout>
     

    清单文件

    AndroidManifest.xml

    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.e.myapplication">

        <application
            android:allowBackup="true"
            android:icon="@mipmap/ic_launcher"
            android:label="@string/app_name"
            android:roundIcon="@mipmap/ic_launcher_round"
            android:supportsRtl="true"
            android:theme="@style/AppTheme">
            <activity android:name=".MainActivity">
                //指定启动界面
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />

                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
        </application>

    </manifest>
     

    布局

    布局是指对界面结构的全面规划与安排,通过api中提供的各种布局能够快速的完成对于界面的设计;

    常用布局

    线性布局(LinearLayout)

    垂直线性布局(vertical);
    水平线性布局(horizontal);

  • 代码文件:

    //chatting_layout.xml
    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:orientation="vertical" android:layout_width="match_parent"
        android:layout_height="match_parent">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="60dp"
            android:orientation="horizontal"
            android:background="#333333"
            android:paddingLeft="15dp">

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="<"
                android:textColor="#ffffff"
                android:textSize="50dp"
                android:layout_gravity="center_vertical"/>

            <TextView
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:text="耳朵"
                android:textSize="50dp"
                android:textColor="#ffffff"
                android:layout_gravity="center_vertical"/>

            <ImageView
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="0.5"
                android:layout_gravity="center_vertical"
                app:srcCompat="@mipmap/ic_launcher_round" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:orientation="horizontal"
            android:layout_weight="1">

        </LinearLayout>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="60dp"
            android:orientation="horizontal"
            android:background="#cccccc">

            <ImageView
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_gravity="center_vertical"
                android:layout_weight="1"
                app:srcCompat="@mipmap/yuyin" />

            <ImageView
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:layout_gravity="center_vertical"
                app:srcCompat="@mipmap/xiaolian" />

            <TextView
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="4"/>

            <ImageView
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:layout_gravity="center_vertical"
                app:srcCompat="@mipmap/jiahao" />

        </LinearLayout>

    </LinearLayout>
    运行效果:

    相对布局(RelativeLayout)

    相对布局不区分代码前后的关系,代码前后并不能决定组件的位置;

    相对布局重要属性
    1.相对于父容器(取值:true / false),如:android:layout_alignParentRight;

    2.相对于其他控件(取值:其他控件id),如:android:layout_toRightOf;

    在参照物的某一边:
    layout_toRightOf
    layout_toLeftOf
    layout_above
    layout_below
    和参照物的某边线对齐:
    layout_alignBottom
    layout_alignTopTop
    layout_alignTopLeft
    layout_alignTopRight

    代码文件:
    //relative_test.xml
    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent" android:layout_height="match_parent">
        <TextView
            android:id="@+id/center"
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:textSize="30sp"
            android:text="屏幕正中间"
            android:background="#ff0000"
            android:layout_centerInParent="true"/>
        <TextView
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:textSize="30sp"
            android:text="中偏左上"
            android:background="#00ff00"
            android:layout_toLeftOf="@+id/center"
            android:layout_above="@+id/center"/>
        <TextView
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:textSize="30sp"
            android:text="中偏右上"
            android:background="#0000ff"
            android:layout_toRightOf="@+id/center"
            android:layout_above="@+id/center"/>
        <TextView
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:textSize="30sp"
            android:text="中偏左下"
            android:background="#ccff00"
            android:layout_toLeftOf="@+id/center"
            android:layout_below="@+id/center"/>
        <TextView
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:textSize="30sp"
            android:text="中偏右下"
            android:background="#eeff00"
            android:layout_toRightOf="@+id/center"
            android:layout_below="@+id/center"/>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="和中间上边线对齐"
            android:background="#cccccc"
            android:layout_alignBottom="@+id/center"/>
    </RelativeLayout>
    //relative_test.xml
    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent" android:layout_height="match_parent">
        <TextView
            android:id="@+id/center"
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:textSize="30sp"
            android:text="屏幕正中间"
            android:background="#ff0000"
            android:layout_centerInParent="true"/>
        <TextView
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:textSize="30sp"
            android:text="中偏左上"
            android:background="#00ff00"
            android:layout_toLeftOf="@+id/center"
            android:layout_above="@+id/center"/>
        <TextView
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:textSize="30sp"
            android:text="中偏右上"
            android:background="#0000ff"
            android:layout_toRightOf="@+id/center"
            android:layout_above="@+id/center"/>
        <TextView
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:textSize="30sp"
            android:text="中偏左下"
            android:background="#ccff00"
            android:layout_toLeftOf="@+id/center"
            android:layout_below="@+id/center"/>
        <TextView
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:textSize="30sp"
            android:text="中偏右下"
            android:background="#eeff00"
            android:layout_toRightOf="@+id/center"
            android:layout_below="@+id/center"/>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="和中间上边线对齐"
            android:background="#cccccc"
            android:layout_alignBottom="@+id/center"/>
    </RelativeLayout>

    运行演示:

    帧布局(FrameLayout)

    FrameLayout

    重要属性
    android:layout_gravity//控件重力
    android:foreground//前景
    android:foregroundGravity//前景重力

    代码文件:

    //frame_layout.xml
    <?xml version="1.0" encoding="utf-8"?>
    <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical" android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#cccccc"
        android:foreground="@mipmap/t"
        android:foregroundGravity="center">
        <TextView
            android:layout_width="400dp"
            android:layout_height="400dp"
            android:background="#ff0000"
            android:layout_gravity="center"/>
        <TextView
            android:layout_width="350dp"
            android:layout_height="350dp"
            android:background="#00ff00"
            android:layout_gravity="center"/>
        <TextView
            android:layout_width="300dp"
            android:layout_height="300dp"
            android:background="#0000ff"
            android:layout_gravity="center"/>
        <TextView
            android:layout_width="250dp"
            android:layout_height="250dp"
            android:background="#00ffff"
            android:layout_gravity="center"/>
        <TextView
            android:layout_width="200dp"
            android:layout_height="200dp"
            android:background="#ff00ff"
            android:layout_gravity="center"/>
        <TextView
            android:layout_width="150dp"
            android:layout_height="150dp"
            android:background="#ffff00"
            android:layout_gravity="center"/>

  • http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%9B%BD%E9%99%85%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E6%80%8E%E4%B9%88%E8%81%94%E7%B3%BB%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E6%80%8E%E4%B9%88%E8%81%94%E7%B3%BB%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E6%B8%B8%E6%88%8F%E9%93%BE%E6%8E%A5%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E6%B8%B8%E6%88%8F%E9%93%BE%E6%8E%A5%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E6%B3%A8%E5%86%8C%E5%AE%98%E7%BD%91%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E6%B3%A8%E5%86%8C%E5%AE%98%E7%BD%91%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E6%B8%B8%E6%88%8F%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E6%B8%B8%E6%88%8F%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E4%B8%8A%E4%B8%8B%E5%88%86%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E4%B8%8A%E4%B8%8B%E5%88%86%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%AE%A2%E6%9C%8D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%AE%A2%E6%9C%8D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%AE%A2%E6%9C%8D%E7%94%B5%E8%AF%9D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E5%AE%A2%E6%9C%8D%E7%94%B5%E8%AF%9D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E6%B3%A8%E5%86%8C%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E6%B3%A8%E5%86%8C%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%A8%B1%E4%B9%90%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E6%80%8E%E4%B9%88%E8%81%94%E7%B3%BB%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%9B%BD%E9%99%85%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E6%80%8E%E4%B9%88%E8%81%94%E7%B3%BB%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E9%93%BE%E6%8E%A5%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E9%93%BE%E6%8E%A5%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E6%B3%A8%E5%86%8C%E5%AE%98%E7%BD%91%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E6%B3%A8%E5%86%8C%E5%AE%98%E7%BD%91%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E4%B8%8A%E4%B8%8B%E5%88%86%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E4%B8%8A%E4%B8%8B%E5%88%86%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D%E7%94%B5%E8%AF%9D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D%E7%94%B5%E8%AF%9D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E6%B3%A8%E5%86%8C%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E6%B3%A8%E5%86%8C%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E5%8D%8E%E7%BA%B3%E5%85%AC%E5%8F%B8%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%9E%9C%E5%8D%9A%E4%B8%9C%E6%96%B9%E5%A8%B1%E4%B9%90%E6%80%8E%E4%B9%88%E8%81%94%E7%B3%BB%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%9E%9C%E5%8D%9A%E4%B8%9C%E6%96%B9%E5%A8%B1%E4%B9%90%E6%80%8E%E4%B9%88%E8%81%94%E7%B3%BB%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%9E%9C%E5%8D%9A%E4%B8%9C%E6%96%B9%E5%A8%B1%E4%B9%90%E6%B8%B8%E6%88%8F%E9%93%BE%E6%8E%A5%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%9E%9C%E5%8D%9A%E4%B8%9C%E6%96%B9%E5%A8%B1%E4%B9%90%E6%B8%B8%E6%88%8F%E9%93%BE%E6%8E%A5%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%9E%9C%E5%8D%9A%E4%B8%9C%E6%96%B9%E5%A8%B1%E4%B9%90%E6%B3%A8%E5%86%8C%E5%AE%98%E7%BD%91%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%9E%9C%E5%8D%9A%E4%B8%9C%E6%96%B9%E5%A8%B1%E4%B9%90%E6%B3%A8%E5%86%8C%E5%AE%98%E7%BD%91%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%9E%9C%E5%8D%9A%E4%B8%9C%E6%96%B9%E5%A8%B1%E4%B9%90%E6%B8%B8%E6%88%8F%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%9E%9C%E5%8D%9A%E4%B8%9C%E6%96%B9%E5%A8%B1%E4%B9%90%E6%B8%B8%E6%88%8F%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%9E%9C%E5%8D%9A%E4%B8%9C%E6%96%B9%E5%A8%B1%E4%B9%90%E4%B8%8A%E4%B8%8B%E5%88%86%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%9E%9C%E5%8D%9A%E4%B8%9C%E6%96%B9%E5%A8%B1%E4%B9%90%E4%B8%8A%E4%B8%8B%E5%88%86%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%9E%9C%E5%8D%9A%E4%B8%9C%E6%96%B9%E5%A8%B1%E4%B9%90%E5%AE%A2%E6%9C%8D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%9E%9C%E5%8D%9A%E4%B8%9C%E6%96%B9%E5%A8%B1%E4%B9%90%E5%AE%A2%E6%9C%8D%E7%94%B5%E8%AF%9D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%9E%9C%E5%8D%9A%E4%B8%9C%E6%96%B9%E5%A8%B1%E4%B9%90%E5%AE%A2%E6%9C%8D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%9E%9C%E5%8D%9A%E4%B8%9C%E6%96%B9%E5%A8%B1%E4%B9%90%E5%AE%A2%E6%9C%8D%E7%94%B5%E8%AF%9D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%9E%9C%E5%8D%9A%E4%B8%9C%E6%96%B9%E5%A8%B1%E4%B9%90%E6%B3%A8%E5%86%8C%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%9E%9C%E5%8D%9A%E4%B8%9C%E6%96%B9%E5%A8%B1%E4%B9%90%E6%B3%A8%E5%86%8C%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%9E%9C%E5%8D%9A%E4%B8%9C%E6%96%B9%E5%A8%B1%E4%B9%90%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%9E%9C%E5%8D%9A%E4%B8%9C%E6%96%B9%E5%A8%B1%E4%B9%90%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%94%A6%E6%B5%B7%E5%9B%BD%E9%99%85%E6%80%8E%E4%B9%88%E8%81%94%E7%B3%BB%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%94%A6%E6%B5%B7%E5%9B%BD%E9%99%85%E6%80%8E%E4%B9%88%E8%81%94%E7%B3%BB%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%94%A6%E6%B5%B7%E5%9B%BD%E9%99%85%E6%B8%B8%E6%88%8F%E9%93%BE%E6%8E%A5%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%94%A6%E6%B5%B7%E5%9B%BD%E9%99%85%E6%B8%B8%E6%88%8F%E9%93%BE%E6%8E%A5%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%94%A6%E6%B5%B7%E5%9B%BD%E9%99%85%E6%B3%A8%E5%86%8C%E5%AE%98%E7%BD%91%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%94%A6%E6%B5%B7%E5%9B%BD%E9%99%85%E6%B3%A8%E5%86%8C%E5%AE%98%E7%BD%91%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%94%A6%E6%B5%B7%E5%9B%BD%E9%99%85%E6%B8%B8%E6%88%8F%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%94%A6%E6%B5%B7%E5%9B%BD%E9%99%85%E6%B8%B8%E6%88%8F%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%94%A6%E6%B5%B7%E5%9B%BD%E9%99%85%E4%B8%8A%E4%B8%8B%E5%88%86%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%94%A6%E6%B5%B7%E5%9B%BD%E9%99%85%E4%B8%8A%E4%B8%8B%E5%88%86%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%94%A6%E6%B5%B7%E5%9B%BD%E9%99%85%E5%AE%A2%E6%9C%8D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%94%A6%E6%B5%B7%E5%9B%BD%E9%99%85%E5%AE%A2%E6%9C%8D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%94%A6%E6%B5%B7%E5%9B%BD%E9%99%85%E5%AE%A2%E6%9C%8D%E7%94%B5%E8%AF%9D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%94%A6%E6%B5%B7%E5%9B%BD%E9%99%85%E5%AE%A2%E6%9C%8D%E7%94%B5%E8%AF%9D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%94%A6%E6%B5%B7%E5%9B%BD%E9%99%85%E6%B3%A8%E5%86%8C%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%94%A6%E6%B5%B7%E5%9B%BD%E9%99%85%E6%B3%A8%E5%86%8C%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%94%A6%E6%B5%B7%E5%9B%BD%E9%99%85%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%94%A6%E6%B5%B7%E5%9B%BD%E9%99%85%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%91%AB%E4%BD%B0%E5%88%A9%E5%A8%B1%E4%B9%90%E6%80%8E%E4%B9%88%E8%81%94%E7%B3%BB%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%91%AB%E4%BD%B0%E5%88%A9%E5%A8%B1%E4%B9%90%E6%80%8E%E4%B9%88%E8%81%94%E7%B3%BB%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%91%AB%E4%BD%B0%E5%88%A9%E5%A8%B1%E4%B9%90%E6%B8%B8%E6%88%8F%E9%93%BE%E6%8E%A5%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%91%AB%E4%BD%B0%E5%88%A9%E5%A8%B1%E4%B9%90%E6%B8%B8%E6%88%8F%E9%93%BE%E6%8E%A5%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%91%AB%E4%BD%B0%E5%88%A9%E5%A8%B1%E4%B9%90%E6%B3%A8%E5%86%8C%E5%AE%98%E7%BD%91%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%91%AB%E4%BD%B0%E5%88%A9%E5%A8%B1%E4%B9%90%E6%B3%A8%E5%86%8C%E5%AE%98%E7%BD%91%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%91%AB%E4%BD%B0%E5%88%A9%E5%A8%B1%E4%B9%90%E6%B8%B8%E6%88%8F%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%91%AB%E4%BD%B0%E5%88%A9%E5%A8%B1%E4%B9%90%E6%B8%B8%E6%88%8F%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%91%AB%E4%BD%B0%E5%88%A9%E5%A8%B1%E4%B9%90%E4%B8%8A%E4%B8%8B%E5%88%86%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%91%AB%E4%BD%B0%E5%88%A9%E5%A8%B1%E4%B9%90%E4%B8%8A%E4%B8%8B%E5%88%86%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%91%AB%E4%BD%B0%E5%88%A9%E5%A8%B1%E4%B9%90%E5%AE%A2%E6%9C%8D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%91%AB%E4%BD%B0%E5%88%A9%E5%A8%B1%E4%B9%90%E5%AE%A2%E6%9C%8D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%91%AB%E4%BD%B0%E5%88%A9%E5%A8%B1%E4%B9%90%E5%AE%A2%E6%9C%8D%E7%94%B5%E8%AF%9D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%91%AB%E4%BD%B0%E5%88%A9%E5%A8%B1%E4%B9%90%E5%AE%A2%E6%9C%8D%E7%94%B5%E8%AF%9D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%91%AB%E4%BD%B0%E5%88%A9%E5%A8%B1%E4%B9%90%E6%B3%A8%E5%86%8C%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%91%AB%E4%BD%B0%E5%88%A9%E5%A8%B1%E4%B9%90%E6%B3%A8%E5%86%8C%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%91%AB%E4%BD%B0%E5%88%A9%E5%A8%B1%E4%B9%90%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%91%AB%E4%BD%B0%E5%88%A9%E5%A8%B1%E4%B9%90%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%9B%BD%E9%99%85%E6%80%8E%E4%B9%88%E8%81%94%E7%B3%BB%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%9B%BD%E9%99%85%E6%80%8E%E4%B9%88%E8%81%94%E7%B3%BB%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%9B%BD%E9%99%85%E6%B8%B8%E6%88%8F%E9%93%BE%E6%8E%A5%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%9B%BD%E9%99%85%E6%B8%B8%E6%88%8F%E9%93%BE%E6%8E%A5%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%9B%BD%E9%99%85%E6%B3%A8%E5%86%8C%E5%AE%98%E7%BD%91%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%9B%BD%E9%99%85%E6%B3%A8%E5%86%8C%E5%AE%98%E7%BD%91%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%9B%BD%E9%99%85%E6%B8%B8%E6%88%8F%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%9B%BD%E9%99%85%E6%B8%B8%E6%88%8F%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%9B%BD%E9%99%85%E4%B8%8A%E4%B8%8B%E5%88%86%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%9B%BD%E9%99%85%E4%B8%8A%E4%B8%8B%E5%88%86%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%9B%BD%E9%99%85%E5%AE%A2%E6%9C%8D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%9B%BD%E9%99%85%E5%AE%A2%E6%9C%8D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%9B%BD%E9%99%85%E5%AE%A2%E6%9C%8D%E7%94%B5%E8%AF%9D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%9B%BD%E9%99%85%E5%AE%A2%E6%9C%8D%E7%94%B5%E8%AF%9D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%9B%BD%E9%99%85%E6%B3%A8%E5%86%8C%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%9B%BD%E9%99%85%E6%B3%A8%E5%86%8C%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%9B%BD%E9%99%85%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%9B%BD%E9%99%85%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%A8%B1%E4%B9%90%E6%80%8E%E4%B9%88%E8%81%94%E7%B3%BB%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%A8%B1%E4%B9%90%E6%80%8E%E4%B9%88%E8%81%94%E7%B3%BB%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%A8%B1%E4%B9%90%E6%B8%B8%E6%88%8F%E9%93%BE%E6%8E%A5%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%A8%B1%E4%B9%90%E6%B8%B8%E6%88%8F%E9%93%BE%E6%8E%A5%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%A8%B1%E4%B9%90%E6%B3%A8%E5%86%8C%E5%AE%98%E7%BD%91%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%A8%B1%E4%B9%90%E6%B3%A8%E5%86%8C%E5%AE%98%E7%BD%91%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%A8%B1%E4%B9%90%E6%B8%B8%E6%88%8F%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%A8%B1%E4%B9%90%E6%B8%B8%E6%88%8F%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%A8%B1%E4%B9%90%E4%B8%8A%E4%B8%8B%E5%88%86%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%A8%B1%E4%B9%90%E4%B8%8A%E4%B8%8B%E5%88%86%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%A8%B1%E4%B9%90%E5%AE%A2%E6%9C%8D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%A8%B1%E4%B9%90%E5%AE%A2%E6%9C%8D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%A8%B1%E4%B9%90%E5%AE%A2%E6%9C%8D%E7%94%B5%E8%AF%9D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%A8%B1%E4%B9%90%E5%AE%A2%E6%9C%8D%E7%94%B5%E8%AF%9D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%A8%B1%E4%B9%90%E6%B3%A8%E5%86%8C%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%A8%B1%E4%B9%90%E6%B3%A8%E5%86%8C%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%A8%B1%E4%B9%90%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E9%BC%8E%E7%9B%9B%E5%A8%B1%E4%B9%90%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%B0%B8%E9%91%AB%E5%A8%B1%E4%B9%90%E6%80%8E%E4%B9%88%E8%81%94%E7%B3%BB%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%B0%B8%E9%91%AB%E5%A8%B1%E4%B9%90%E6%80%8E%E4%B9%88%E8%81%94%E7%B3%BB%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%B0%B8%E9%91%AB%E5%A8%B1%E4%B9%90%E6%B8%B8%E6%88%8F%E9%93%BE%E6%8E%A5%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%B0%B8%E9%91%AB%E5%A8%B1%E4%B9%90%E6%B8%B8%E6%88%8F%E9%93%BE%E6%8E%A5%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%B0%B8%E9%91%AB%E5%A8%B1%E4%B9%90%E6%B3%A8%E5%86%8C%E5%AE%98%E7%BD%91%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%B0%B8%E9%91%AB%E5%A8%B1%E4%B9%90%E6%B3%A8%E5%86%8C%E5%AE%98%E7%BD%91%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%B0%B8%E9%91%AB%E5%A8%B1%E4%B9%90%E6%B8%B8%E6%88%8F%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%B0%B8%E9%91%AB%E5%A8%B1%E4%B9%90%E6%B8%B8%E6%88%8F%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%B0%B8%E9%91%AB%E5%A8%B1%E4%B9%90%E4%B8%8A%E4%B8%8B%E5%88%86%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%B0%B8%E9%91%AB%E5%A8%B1%E4%B9%90%E4%B8%8A%E4%B8%8B%E5%88%86%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%B0%B8%E9%91%AB%E5%A8%B1%E4%B9%90%E5%AE%A2%E6%9C%8D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%B0%B8%E9%91%AB%E5%A8%B1%E4%B9%90%E5%AE%A2%E6%9C%8D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%B0%B8%E9%91%AB%E5%A8%B1%E4%B9%90%E5%AE%A2%E6%9C%8D%E7%94%B5%E8%AF%9D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%B0%B8%E9%91%AB%E5%A8%B1%E4%B9%90%E5%AE%A2%E6%9C%8D%E7%94%B5%E8%AF%9D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%B0%B8%E9%91%AB%E5%A8%B1%E4%B9%90%E6%B3%A8%E5%86%8C%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%B0%B8%E9%91%AB%E5%A8%B1%E4%B9%90%E6%B3%A8%E5%86%8C%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%B0%B8%E9%91%AB%E5%A8%B1%E4%B9%90%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%B0%B8%E9%91%AB%E5%A8%B1%E4%B9%90%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%AC%A7%E4%BA%9A%E5%9B%BD%E9%99%85%E6%80%8E%E4%B9%88%E8%81%94%E7%B3%BB%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%AC%A7%E4%BA%9A%E5%9B%BD%E9%99%85%E6%80%8E%E4%B9%88%E8%81%94%E7%B3%BB%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%AC%A7%E4%BA%9A%E5%9B%BD%E9%99%85%E6%B8%B8%E6%88%8F%E9%93%BE%E6%8E%A5%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%AC%A7%E4%BA%9A%E5%9B%BD%E9%99%85%E6%B8%B8%E6%88%8F%E9%93%BE%E6%8E%A5%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%AC%A7%E4%BA%9A%E5%9B%BD%E9%99%85%E6%B3%A8%E5%86%8C%E5%AE%98%E7%BD%91%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%AC%A7%E4%BA%9A%E5%9B%BD%E9%99%85%E6%B3%A8%E5%86%8C%E5%AE%98%E7%BD%91%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%AC%A7%E4%BA%9A%E5%9B%BD%E9%99%85%E6%B8%B8%E6%88%8F%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%AC%A7%E4%BA%9A%E5%9B%BD%E9%99%85%E4%B8%8A%E4%B8%8B%E5%88%86%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%AC%A7%E4%BA%9A%E5%9B%BD%E9%99%85%E4%B8%8A%E4%B8%8B%E5%88%86%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%AC%A7%E4%BA%9A%E5%9B%BD%E9%99%85%E5%AE%A2%E6%9C%8D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%AC%A7%E4%BA%9A%E5%9B%BD%E9%99%85%E5%AE%A2%E6%9C%8D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%AC%A7%E4%BA%9A%E5%9B%BD%E9%99%85%E5%AE%A2%E6%9C%8D%E7%94%B5%E8%AF%9D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%AC%A7%E4%BA%9A%E5%9B%BD%E9%99%85%E5%AE%A2%E6%9C%8D%E7%94%B5%E8%AF%9D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%AC%A7%E4%BA%9A%E5%9B%BD%E9%99%85%E6%B3%A8%E5%86%8C%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%AC%A7%E4%BA%9A%E5%9B%BD%E9%99%85%E6%B3%A8%E5%86%8C%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%AC%A7%E4%BA%9A%E5%9B%BD%E9%99%85%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%AC%A7%E4%BA%9A%E5%9B%BD%E9%99%85%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E8%80%81%E8%A1%97%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E6%80%8E%E4%B9%88%E8%81%94%E7%B3%BB%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E8%80%81%E8%A1%97%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E6%80%8E%E4%B9%88%E8%81%94%E7%B3%BB%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E8%80%81%E8%A1%97%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E9%93%BE%E6%8E%A5%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E8%80%81%E8%A1%97%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E9%93%BE%E6%8E%A5%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E8%80%81%E8%A1%97%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E6%B3%A8%E5%86%8C%E5%AE%98%E7%BD%91%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E8%80%81%E8%A1%97%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E6%B3%A8%E5%86%8C%E5%AE%98%E7%BD%91%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E8%80%81%E8%A1%97%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E8%80%81%E8%A1%97%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E6%B8%B8%E6%88%8F%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E6%AC%A7%E4%BA%9A%E5%9B%BD%E9%99%85%E6%B8%B8%E6%88%8F%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E8%80%81%E8%A1%97%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E4%B8%8A%E4%B8%8B%E5%88%86%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E8%80%81%E8%A1%97%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E4%B8%8A%E4%B8%8B%E5%88%86%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E8%80%81%E8%A1%97%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E8%80%81%E8%A1%97%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E8%80%81%E8%A1%97%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E5%AE%A2%E6%9C%8D%E7%94%B5%E8%AF%9D%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E8%80%81%E8%A1%97%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E6%B3%A8%E5%86%8C%E7%BD%91%E5%9D%80%E3%80%90%E5%BE%AE%E4%BF%A1xbscx73%E3%80%91
    http://www.hnxxrsj.gov.cn/Error.aspx?msg=%E8%80%81%E8%A1%97%E6%96%B0%E7%99%BE%E8%83%9C%E5%85%AC%E5%8F%B8%E6%B3%A8%E5%86%8C%E7%BD%91%E5

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值