diff --git a/application/demo/controller/Inter.php b/application/demo/controller/Inter.php new file mode 100644 index 000000000..682229c73 --- /dev/null +++ b/application/demo/controller/Inter.php @@ -0,0 +1,39 @@ + + * @date 2017/07/10 18:13 + */ +class Inter extends BasicAdmin +{ + + /** + * 省市区插件 + * @return \think\response\View + */ + public function file() + { + $this->title = '文件上传'; + return view('', ['title' => $this->title]); + } + +} diff --git a/application/demo/controller/Plugs.php b/application/demo/controller/Plugs.php index 308c8538b..1a9e7e2d1 100644 --- a/application/demo/controller/Plugs.php +++ b/application/demo/controller/Plugs.php @@ -25,7 +25,6 @@ use controller\BasicAdmin; */ class Plugs extends BasicAdmin { - public $title = '插件案例'; /** * 省市区插件 diff --git a/application/demo/view/inter.file.html b/application/demo/view/inter.file.html new file mode 100644 index 000000000..680192598 --- /dev/null +++ b/application/demo/view/inter.file.html @@ -0,0 +1,79 @@ +{extend name='extra@admin/content'} + +{block name="content"} + +
+ 单图片上传 ++ +
+ +++++ ++ 上传图片 +
+ +// 监听 input 的 onchange 事件 +// 当有图片上传时,会触发 change 事件 +require(['jquery'], function () { + $('[name="file_1"]').on('change', function () { + $(this).parent().css('backgroundImage', 'url(' + this.value + ')'); + $(this).parent().attr('data-tips-image', this.value); + }); +}); ++ +
- PCAS 单文件JS省市区插件 + PCAS 单文件JS省市区插件(也适用于Wap端)