<template> <p class="bottom_about_des"> 本服务由浙江政务服务网、绍兴市教育局提供<br />服务咨询热线: <span @click="call">057588000756</span> </p> </template> <script> export default { methods: { call() { ZWJSBridge.phoneCall({ corpId: '057588000756', }) .then((res) => { console.log(res) }) .catch((err) => { console.log(err) }) }, }, } </script> <style lang="scss"> .bottom_about_des { font-size: 26px; text-align: center; padding: 40px; a,span { color: rgb(41, 122, 189); } } </style> <style lang="scss"> .elder { .bottom_about_des { font-size: 36px; } } </style>