aboutUs.js 476 B

12345678910111213141516171819202122232425
  1. Page({
  2. data: {
  3. arr: [{
  4. name: '服务电话',
  5. value: '17004319000'
  6. }, {
  7. name: '服务邮箱',
  8. value: 'limeng@tshe.cn'
  9. }, {
  10. name: '工作时间',
  11. value: '8:00-18:00'
  12. }, {
  13. name: '技术支持',
  14. value: '吉林省盛创科技有限公司'
  15. }]
  16. },
  17. call(e) {
  18. console.log()
  19. if (e.currentTarget.dataset.idx == 0) {
  20. wx.makePhoneCall({
  21. phoneNumber: this.data.arr[0].value
  22. })
  23. }
  24. }
  25. })