Update index.html

This commit is contained in:
邹景立 2021-10-15 14:13:40 +08:00
parent a46c72d922
commit c91dfac095

View File

@ -121,13 +121,10 @@
$rootScope.item = {}, $rootScope.list = [], $rootScope.keys = []; $rootScope.item = {}, $rootScope.list = [], $rootScope.keys = [];
$.form.load('{:url("index")}', {output: 'json'}, 'get', function (ret) { $.form.load('{:url("index")}', {output: 'json'}, 'get', function (ret) {
return $rootScope.$apply(function () { return $rootScope.$apply(function () {
$rootScope.keys = ret.data.keysdata || []; $rootScope.keys = ret.data.keysdata || [], $rootScope.list = ret.data.menudata || [];
$rootScope.list = ret.data.menudata || [];
if ($rootScope.list.length < 1) $rootScope.list = [{name: '请输入名称', type: 'click', sub_button: []}]; if ($rootScope.list.length < 1) $rootScope.list = [{name: '请输入名称', type: 'click', sub_button: []}];
for (var i in $rootScope.list) $rootScope.list[i].sub_button = $rootScope.list[i].sub_button || []; for (var i in $rootScope.list) $rootScope.list[i].sub_button = $rootScope.list[i].sub_button || [];
$rootScope.list[0].show = true; $rootScope.list[0].show = true, $rootScope.list[0].active = true, $rootScope.item = $rootScope.list[0];
$rootScope.list[0].active = true;
$rootScope.item = $rootScope.list[0];
}), false; }), false;
}); });
@ -173,7 +170,7 @@
$rootScope.item = two || one || {}; $rootScope.item = two || one || {};
$rootScope.item.type = $rootScope.item.type || 'click'; $rootScope.item.type = $rootScope.item.type || 'click';
if ($rootScope.item.type === 'click') setTimeout(function () { if ($rootScope.item.type === 'click') setTimeout(function () {
form.render('select'); layui.form.render('select');
$rootScope.item.key = $('[lay-filter="key"]').val(); $rootScope.item.key = $('[lay-filter="key"]').val();
}, 50); }, 50);
}; };
@ -181,12 +178,12 @@
// 下拉列表处理 // 下拉列表处理
$rootScope.$watch('item', function () { $rootScope.$watch('item', function () {
if ($rootScope.item.type === 'click') setTimeout(function () { if ($rootScope.item.type === 'click') setTimeout(function () {
form.render('select'); layui.form.render('select');
$rootScope.item.key = $('[lay-filter="key"]').val(); $rootScope.item.key = $('[lay-filter="key"]').val();
}, 50) }, 50)
}, true); }, true);
form.on('select(key)', function (data) { layui.form.on('select(key)', function (data) {
$rootScope.item.key = data.value; $rootScope.item.key = data.value;
}); });
@ -197,7 +194,7 @@
$.form.load('{:url("push")}', {data: angular.toJson($rootScope.list)}, 'post'); $.form.load('{:url("push")}', {data: angular.toJson($rootScope.list)}, 'post');
} }
} }
}) });
</script> </script>
{/block} {/block}