From 441c660cf0ff457a2b8dd7d13ad4ba15743c38f1 Mon Sep 17 00:00:00 2001 From: Anyon Date: Mon, 10 Jul 2017 18:52:56 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E5=A2=9E=E5=8A=A0PCAS?= =?UTF-8?q?=E7=9C=81=E5=B8=82=E5=8C=BA=E6=8F=92=E4=BB=B6=E6=A1=88=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/demo/controller/Plugs.php | 11 ++++ application/demo/view/plugs.pcasunzip.html | 66 ++++++++++++++++++++++ 2 files changed, 77 insertions(+) create mode 100644 application/demo/view/plugs.pcasunzip.html diff --git a/application/demo/controller/Plugs.php b/application/demo/controller/Plugs.php index 77a282aaa..308c8538b 100644 --- a/application/demo/controller/Plugs.php +++ b/application/demo/controller/Plugs.php @@ -36,4 +36,15 @@ class Plugs extends BasicAdmin $this->title = '省市区插件'; return view('', ['title' => $this->title]); } + + + /** + * 省市区插件 + * @return \think\response\View + */ + public function pcasunzip() + { + $this->title = '省市区插件'; + return view('', ['title' => $this->title]); + } } diff --git a/application/demo/view/plugs.pcasunzip.html b/application/demo/view/plugs.pcasunzip.html new file mode 100644 index 000000000..56d5995db --- /dev/null +++ b/application/demo/view/plugs.pcasunzip.html @@ -0,0 +1,66 @@ +{extend name='extra@admin/content'} + +{block name="content"} + +
+
+ PCAS 单文件JS省市区插件 +
+
+
+ +
+
+ +
+
+ +
+
+
+
+
+
+ +
+
+ +
+
+ +
+
+
+
+
+require(['pcasunzips'], function () {
+/**   // 省市联动
+  *   new PCAS("Province","City")
+  *   new PCAS("Province","City","吉林省")
+  *   new PCAS("Province","City","吉林省","吉林市")
+  *   // 省市地区联动
+  *   new PCAS("Province","City","Area")
+  *   new PCAS("Province","City","Area","吉林省")
+  *   new PCAS("Province","City","Area","吉林省","松原市")
+  *   new PCAS("Province","City","Area","吉林省","松原市","宁江区")
+  *   // 省、市、地区对象取得的值均为实际值。
+  *   // 注:省、市、地区提示信息选项的值为""(空字符串)
+  */
+    new PCAS('province', 'city', 'area', '广东省', '广州市', '海珠区');
+});
+    
+ +
+ + +{/block} \ No newline at end of file