23 lines
1.0 KiB
Plaintext
23 lines
1.0 KiB
Plaintext
<import src="../../wxParse/wxParse.wxml"></import>
|
|
|
|
<list-nav-bar title="{{navTitle}}" background="#3c8bf6" showNavBtn="{{true}}"></list-nav-bar>
|
|
<scroll-view style="height: 100%;overflow:hidden;" scroll-y type="list">
|
|
<view class="container">
|
|
<view class="title">
|
|
<text>{{contact_title}}</text>
|
|
<text class="date">{{date}}</text>
|
|
</view>
|
|
<view class="content">
|
|
<view class="text">
|
|
<template is="wxParse" data="{{wxParseData:content.nodes}}"/>
|
|
</view>
|
|
<view class="text-list">地址:{{contact_address}}</view>
|
|
<view class="text-list">电话:{{contact_tel}}</view>
|
|
<view class="text-list">邮编:{{contact_post_code}}</view>
|
|
<view class="text-list">邮箱:{{contact_email}}</view>
|
|
</view>
|
|
</view>
|
|
</scroll-view>
|
|
<view class='btn-view'>
|
|
<button bind:tap="phoneOn" style="background: #3c8bf6;;border-radius: 60rpx;width: 85%;color: #fff;font-size: 30rpx;font-weight: normal;">拨打电话</button>
|
|
</view> |