let headerapp = { template: `
{{qiyejiej.company_tel}}
`, props: ['suoyin'], setup() { let data = reactive({ menulist: [], qiyejiej: '' }) // 导航 const getmenu = () => { requestdata('navigation',{ data_type: 'list', page: 1, limit: 99, sort: 'sortasc', category_id: '65e05465e5f419448c46bf7d' },(res) => { data.menulist = res settimeout(() => { requestdata('goods', { data_type: 'list', page: 1, limit: 9, sort: 'sortasc', category_id: '65e048dfe5f419448c46bf60' }, (datas) => { data.menulist[2].children = datas data.menulist[2].children.foreach((ites,ins) =>{ ites.linkurl = 'business.html?id='+ites.id ites.parentid = 2 }) }) },20) }) } vue.watch(data,() => { vue.nexttick(() => { $(".menu_btn").click(function() { $(".menu_box").fadein(300) }) $(".menu_close").click(function() { $(".menu_box").fadeout(300) }) $('.menu_list h1').click(function () { $(this).next().slidetoggle(500).parent().toggleclass('current') $(this).parent().siblings().removeclass('current').find('.sub_menu').slideup(500) }) }) }) const getqiyejiej = () => { requestdata('site', null, (res) => { data.qiyejiej = res }) } getmenu() getqiyejiej() return { ...torefs(data) } }, }