加油站付款小程序,打印小票
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.

35 lines
986 B

1 year 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. </uni-card>
  8. </uni-section>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. name : 'weddingCelebration',
  14. data(){
  15. return {
  16. }
  17. },
  18. methods : {
  19. back(){
  20. uni.switchTab({
  21. url: '/pages/payment/payment'
  22. })
  23. }
  24. }
  25. }
  26. </script>
  27. <style lang="scss" scoped>
  28. .weddingCelebration{
  29. min-height: 100vh;
  30. width: 750rpx;
  31. margin: 0rpx auto;
  32. }
  33. </style>