1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <template>
- <view class="content">
- <view class=" " @click="openPhone">
- 母婴界严选
- </view>
- <view class="margin-t-10">
- 联系地址:浙江,台州,路桥区 央钿大厦20楼
- </view>
- <view class="margin-t-10" @click="openPhone">
- 客服热线:<text>400-699-0899</text>
- </view>
- <view @click="openWWW" class="margin-t-10">
- 公司网址:<text>www.guaiyouyou.com</text>
- </view>
- <view class="margin-t-10">
- <text>协议条例:</text>
- <text class="xy" @click="navTo('/pages/public/privacyAgreement')">《隐私协议》</text>
- <text class="xy" @click="navTo('/pages/public/userAgreement')">《用户协议》</text>
- </view>
-
- </view>
- </template>
- <script>
- export default {
- onLoad(option) {
-
- },
- methods: {
- navTo(url){
- uni.navigateTo({
- url,
- });
- },
- openPhone(){
- uni.makePhoneCall({
- phoneNumber:'4006990899'
- });
- },
- openWWW(){
-
- window.open('http://www.guaiyouyou.com')
-
-
- plus.runtime.openURL('http://www.guaiyouyou.com');
-
- }
- }
- }
- </script>
- <style lang="scss">
- .content{
- padding: 30rpx;
- color: $font-color-light;
- font-size: 28rpx;
- }
- .text{
- text-indent: 2em;
- color: $font-color-light;
- font-size: 28rpx;
- }
- .xy{
- color: $color-green;
- }
- </style>
|