perry-mall/pagesB/aboutUs/aboutUs.vue

47 lines
1.1 KiB
Vue
Raw Normal View History

2022-02-12 11:33:47 +00:00
<template>
<view>
<!-- 状态栏 -->
<status-nav :navBarTitle="'关于我们'"></status-nav>
<!-- 输入框 -->
<view class="pad-zy30" :style="{paddingTop: statusBarHeight+'px'}">
<!-- 地图 -->
<view class="radius30" style="overflow: hidden;">
<map :latitude="lat" :longitude="lng" :enable-scroll="enableScroll" :enable-zoom="enableZoom" style="height: 390rpx;width: 100%;"></map>
2022-02-12 11:33:47 +00:00
</view>
<!-- 导航按钮 -->
<view class="navigate-to-where mar-s30 radius30 bac0 colf fon36 tcenter">导航至佩丽</view>
<!-- 关于佩丽 -->
<view class="fon48 col0 mar-sx50">关于佩丽</view>
<rich-text :nodes="richText"></rich-text>
2022-02-12 11:33:47 +00:00
</view>
</view>
</template>
<script>
export default {
components:{
2022-02-12 11:33:47 +00:00
},
data() {
return {
statusBarHeight:uni.getSystemInfoSync().statusBarHeight + 50,
2022-02-12 11:33:47 +00:00
publicColor:uni.getStorageSync('publicColor'),//主题颜色
lat:25.603183,
lng:100.211328,
enableZoom:true,//是否支持缩放
enableScroll:true,//是否支持拖动
richText:''//富文本
2022-02-12 11:33:47 +00:00
}
},
onLoad(options) {
2022-02-12 11:33:47 +00:00
},
methods: {
2022-02-12 11:33:47 +00:00
}
}
</script>
<style>
</style>