const comFooter = { name: 'comFooter', data() { return { phone: '0755-3365-6365', centerDialogVisible: false } }, template: `
确定拨打该电话吗 取 消 确 定
`, methods: { telPhone() { this.centerDialogVisible = false; window.location.href = `tel:${this.phone}`; } } }