mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-05 17:42:49 +08:00
12 lines
294 B
PHP
12 lines
294 B
PHP
$(function () {
|
|
var form = layui.form;
|
|
$('.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();
|
|
});
|
|
|
|
ua.listen();
|
|
}); |