foolter.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <template>
  2. <div>
  3. <div class="mb-20 pointer">
  4. <span @click="goNext('https://www.wutongshucloud.com')">关于梧桐</span>
  5. <el-divider direction="vertical" />
  6. <span @click="goNext('https://www.wutongshucloud.com/user/privacyclause')"
  7. >隐私条款</span
  8. >
  9. <el-divider direction="vertical" />
  10. <span @click="goNext('https://www.wutongshucloud.com/user/useragreement')"
  11. >用户协议</span
  12. >
  13. <el-divider direction="vertical" />
  14. <span @click="show = true">联系我们</span>
  15. </div>
  16. <span
  17. >Copyright © 2019-{{
  18. new Date().getFullYear()
  19. }}
  20. 梧凤桐凰规划研究院(云南)有限公司 版权所有 All Rights Reserved.</span
  21. >
  22. <el-dialog v-model="show" width="540px" title="联系我们">
  23. <div class="flex flex-center flex-col font-16">
  24. <span>电 话:+86 15887001274</span>
  25. <span class="mt-20 text-left"
  26. >地 址 : 昆明市五华区昌源北路620号融城圆城医药健康科技园-1408</span
  27. >
  28. </div>
  29. </el-dialog>
  30. </div>
  31. </template>
  32. <script>
  33. export default {
  34. data() {
  35. return {
  36. show: false
  37. }
  38. },
  39. methods: {
  40. goNext(url) {
  41. window.open(url, '_bank')
  42. }
  43. }
  44. }
  45. </script>
  46. <style lang="scss" scoped></style>