Files
2021-04-22 12:10:11 +08:00
..
2021-04-21 10:03:29 +08:00
2021-04-16 19:16:38 +08:00
2021-04-20 10:54:29 +08:00
2021-03-25 15:34:12 +08:00
2021-04-20 12:37:41 +08:00
2021-04-20 11:21:36 +08:00
2021-02-19 19:34:06 +08:00
2021-03-25 15:34:12 +08:00
2021-03-26 17:56:59 +08:00
2021-04-09 17:43:23 +08:00
2021-04-16 19:16:38 +08:00
2021-04-02 18:02:09 +08:00
2021-04-22 12:10:11 +08:00
2021-01-29 14:47:53 +08:00
2021-04-20 17:32:17 +08:00
2021-04-16 19:16:38 +08:00
2021-03-16 19:51:27 +08:00
2021-04-16 19:16:38 +08:00
2021-02-04 18:16:41 +08:00

<script> function createProduct(data) { var anthors = []; for(let key in data){ var anthor = {"name" : key , "expand": []}; for(let key1 in data[key]){ anthor.expand.push({ "name":key1, "id": data[key][key1][0]["id"], "icon": icon_list.MODULE }); $(".product_page").append(`
`); data[key][key1].forEach((productInfo)=>{ if(productInfo.id != undefined){ return; } if(productInfo.category != undefined){ $("#"+data[key][key1][0]["id"]).append(`

${productInfo.category}

`); } let qsBtn = ''; if(productInfo.qs != undefined){ qsBtn = `QuickStart` } var html = ` `; $("#"+data[key][key1][0]["id"].toLowerCase()).append(html); }) } anthors.push(anthor); } header.anchorList = anthors; } $(document).ready(function(){ $(function () { var x = -30; var y = 40; var newtitle = ''; $('.item').mouseover(function (e) { newtitle = $(this).find(".item-title")[0].dataset.kw; $('body').append('
' + newtitle + '
'); $('#tag_title').css({ 'left': (e.pageX - x + 'px'), 'top': (e.pageY - y + 'px') }).show(); }).mouseout(function () { $('#tag_title').remove(); }).mousemove(function (e) { $('#tag_title').css({ 'left': (e.pageX - x + 'px'), 'top': (e.pageY - y + 'px') }).show(); }).click(function (e) { $('#tag_title').remove(); }) }); // anchor_search(); scrollFunc(); }); (function(FilePath){ Docsify.get(FilePath).then(data=>{ const Product_Json = JSON.parse(data) createProduct(Product_Json); }) })("./zh_CN/product_list.json") </script>