<template>
|
|
<view class="weddingCelebration">
|
|
<uni-nav-bar dark :fixed="true" background-color="#00aaff" :border="false" status-bar title="婚庆服务" @clickLeft="back" left-icon="left"/>
|
|
<uni-section title="婚庆服务" type="line" titleFontSize="34rpx">
|
|
<uni-card :is-shadow="false">
|
|
<!-- <image style="width: 100%;" src="https://ts1.cn.mm.bing.net/th/id/R-C.b6359b70784d251138d9dc56b650274b?rik=WiMqW3Pnt%2fImmg&riu=http%3a%2f%2fwww.deepp.com%2fimages%2fcode.png&ehk=pWaMA%2fmVIw943tuInsYTSXgBj%2f3oDTqWhx9Hx3hMtRI%3d&risl=&pid=ImgRaw&r=0" mode="widthFix" :show-menu-by-longpress="true"></image> -->
|
|
<view class="">
|
|
添加微信
|
|
</view>
|
|
</uni-card>
|
|
</uni-section>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name : 'weddingCelebration',
|
|
data(){
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods : {
|
|
back(){
|
|
uni.switchTab({
|
|
url: '/pages/payment/payment'
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.weddingCelebration{
|
|
min-height: 100vh;
|
|
width: 750rpx;
|
|
margin: 0rpx auto;
|
|
}
|
|
</style>
|