workwork.vue 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <template>
  2. <view class="content">
  3. <view class=" " @click="openPhone">
  4. 浙江绿津智能科技有限公司
  5. </view>
  6. <view class="margin-t-10">
  7. 联系地址:浙江,台州,路桥区 央钿大厦20楼
  8. </view>
  9. <view class="margin-t-10" @click="openPhone">
  10. 客服热线:<text>400-699-0899</text>
  11. </view>
  12. <view @click="openWWW" class="margin-t-10">
  13. 公司网址:<text>www.guaiyouyou.com</text>
  14. </view>
  15. <view class="margin-t-10">
  16. <text>协议条例:</text>
  17. <text class="xy" @click="navTo('/pages/public/privacyAgreement')">《隐私协议》</text>
  18. <text class="xy" @click="navTo('/pages/public/userAgreement')">《用户协议》</text>
  19. </view>
  20. <view class="text margin-t-30">
  21. 绿津是由浙江绿津智能科技有限公司打造的新一代智能电动车品牌,电慧安是一家集智能设备制造、软件开发、销售贸易、物带动互、社会服务为一体的高科技企业,公司以便、惠、安为核心发展理念,以做物联网产业的推动者,互联网行业的服务者为立企初衷。 公司通过不断创新商业模式,打造产品和服务品牌,以生产销售智能型电动车为主,研发全智能电动车软硬件配套,打造绿津自主品牌,致力于成为新一代智能电动车领域的第一品牌。
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. export default {
  27. onLoad(option) {
  28. },
  29. methods: {
  30. navTo(url){
  31. uni.navigateTo({
  32. url,
  33. });
  34. },
  35. openPhone(){
  36. uni.makePhoneCall({
  37. phoneNumber:'4006990899'
  38. });
  39. },
  40. openWWW(){
  41. // #ifdef H5
  42. window.open('http://www.guaiyouyou.com')
  43. // #endif
  44. // #ifdef APP
  45. plus.runtime.openURL('http://www.guaiyouyou.com');
  46. // #endif
  47. }
  48. }
  49. }
  50. </script>
  51. <style lang="scss">
  52. .content{
  53. padding: 30rpx;
  54. color: $font-color-light;
  55. font-size: 28rpx;
  56. }
  57. .text{
  58. text-indent: 2em;
  59. color: $font-color-light;
  60. font-size: 28rpx;
  61. }
  62. .xy{
  63. color: $color-green;
  64. }
  65. </style>