mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-03 08:22:48 +08:00
20 lines
493 B
PHP
20 lines
493 B
PHP
define(["jquery", "easy-admin", "vue"], function ($, ea, Vue) {
|
|
|
|
var form = layui.form;
|
|
|
|
var Controller = {
|
|
index: function () {
|
|
|
|
$('.show-type-item').hide();
|
|
$('.show-type-item.' + upload_type).show();
|
|
form.on("radio(upload_type)", function (data) {
|
|
|
|
$('.show-type-item').hide();
|
|
$('.show-type-item.' + this.value).show();
|
|
});
|
|
|
|
ea.listen();
|
|
}
|
|
};
|
|
return Controller;
|
|
}); |