加油站付款小程序,打印小票
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.0 KiB

9 months ago
9 months ago
9 months ago
  1. <template>
  2. <view class="weddingCelebration">
  3. <uni-nav-bar dark :fixed="true" background-color="#00aaff" :border="false" status-bar title="婚庆服务" @clickLeft="back" left-icon="left"/>
  4. <uni-section title="婚庆服务" type="line" titleFontSize="34rpx">
  5. <uni-card :is-shadow="false">
  6. <!-- <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> -->
  7. <view class="">
  8. 添加微信
  9. </view>
  10. </uni-card>
  11. </uni-section>
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. name : 'weddingCelebration',
  17. data(){
  18. return {
  19. }
  20. },
  21. methods : {
  22. back(){
  23. uni.switchTab({
  24. url: '/pages/payment/payment'
  25. })
  26. }
  27. }
  28. }
  29. </script>
  30. <style lang="scss" scoped>
  31. .weddingCelebration{
  32. min-height: 100vh;
  33. width: 750rpx;
  34. margin: 0rpx auto;
  35. }
  36. </style>