// 姝e紡鐗 const dataBaseUrl='https://cms.jingdiao.com' // 寮€鍙戠増 // const dataBaseUrl='http://172.24.20.252:9991' const token="1234f95023ab9af2112324d1940f005187b02fefbd4b9b2841904f28128450639ceb81c474a65dc14e754b83458d5604e0575a1b875c6519c64fbecd2b915ab9ad5b0420d37ad86980f2e8c54ab5daff8e211d59daf841786dd4a5a6a45f1bcf8002064802610cb8e8afbd39f5a03be2f251a521bdabc911f2affc73bb57b24e" var vueApp initApp() getData() function initApp(){ const { createApp, ref } = Vue vueApp = createApp({ setup(){ const branchOffices=ref([]) return { branchOffices, copy(id){ if(id){ let branchOffice= branchOffices.value.find(b=>+b.id===+id) if(branchOffice){ navigator.clipboard.writeText(`${branchOffice.attributes.title}${branchOffice.attributes.name?'\r\n鍚嶇О锛?+branchOffice.attributes.name:''}${branchOffice.attributes.address?'\r\n鍦板潃锛?+branchOffice.attributes.address:''}${branchOffice.attributes.email?'\r\n閭锛?+branchOffice.attributes.email:''}${branchOffice.attributes.fax?'\r\n浼犵湡锛?+branchOffice.attributes.fax:''}${branchOffice.attributes.tel?'\r\n鐢佃瘽锛?+branchOffice.attributes.tel:''}${branchOffice.attributes.telFax?'\r\n鐢佃瘽/浼犵湡锛?+branchOffice.attributes.telFax:''}${branchOffice.attributes.note?'\r\n澶囨敞锛?+branchOffice.attributes.note:''}`).then(() => { toastr.success('宸插皢鏂囨湰澶嶅埗鍒板壀璐存澘'); }) } } } } } }).mount('#product0') } function getData(){ toastr.options = { positionClass: "toast-bottom-center" , preventDuplicates:true } jQuery.ajax({ type: "GET", url: `${dataBaseUrl}/api/service-centers?sort[0]=id:desc&pagination[pageSize]=500`, beforeSend: function(request) { request.setRequestHeader("Authorization",`Bearer ${token}`) }, success: function(result) { vueApp.branchOffices=result.data||[] console.log(vueApp.branchOffices) } }) }