| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <template>
- <div>
- <div class="mb-20 pointer">
- <span @click="goNext('https://www.wutongshucloud.com')">关于梧桐</span>
- <el-divider direction="vertical" />
- <span @click="goNext('https://www.wutongshucloud.com/user/privacyclause')"
- >隐私条款</span
- >
- <el-divider direction="vertical" />
- <span @click="goNext('https://www.wutongshucloud.com/user/useragreement')"
- >用户协议</span
- >
- <el-divider direction="vertical" />
- <span @click="show = true">联系我们</span>
- </div>
- <span
- >Copyright © 2019-{{
- new Date().getFullYear()
- }}
- 梧凤桐凰规划研究院(云南)有限公司 版权所有 All Rights Reserved.</span
- >
- <el-dialog v-model="show" width="540px" title="联系我们">
- <div class="flex flex-center flex-col font-16">
- <span>电 话:+86 15887001274</span>
- <span class="mt-20 text-left"
- >地 址 : 昆明市五华区昌源北路620号融城圆城医药健康科技园-1408</span
- >
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {
- show: false
- }
- },
- methods: {
- goNext(url) {
- window.open(url, '_bank')
- }
- }
- }
- </script>
- <style lang="scss" scoped></style>
|