qrCode.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <template>
  2. <view>
  3. <u-navbar title="收款二维码"></u-navbar>
  4. <!-- 二维码 -->
  5. <view class="code-box">
  6. <view class="qr-code">
  7. <img src="../../../assets/img/qrCode.png" alt="">
  8. <view class="logo">
  9. <img src="../../../assets/img/qrLogo.png" alt="">
  10. </view>
  11. </view>
  12. <view class="hint">
  13. 用微信扫描二维码,可以付款就餐
  14. </view>
  15. </view>
  16. <!-- 保存到相册 -->
  17. <view class="save">
  18. <view class="photo">
  19. <img src="../../../assets/img/antFill-picture@1x.png" alt="">
  20. </view>
  21. <view class="text">
  22. 保存到相册
  23. </view>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. export default {
  29. data() {
  30. return {
  31. }
  32. },
  33. methods: {
  34. }
  35. }
  36. </script>
  37. <style lang="scss" scoped>
  38. page{
  39. font-family: 'PingFang Regular';
  40. }
  41. // 二维码
  42. .code-box{
  43. margin: 80rpx 56rpx;
  44. padding: 92rpx 0rpx;
  45. border-radius: 8px;
  46. text-align: center;
  47. background-color: rgba(255, 255, 255, 1);
  48. .qr-code{
  49. width: 400rpx;
  50. height: 400rpx;
  51. position: relative;
  52. margin: auto;
  53. img{
  54. width: 100%;
  55. height: 100%;
  56. }
  57. }
  58. .logo{
  59. width: 112rpx;
  60. height: 112rpx;
  61. position: absolute;
  62. top: 0;
  63. left: 0;
  64. right: 0;
  65. bottom: 0;
  66. margin: auto;
  67. border: 4px solid #fff;
  68. border-radius: 4px;
  69. img{
  70. width: 100%;
  71. height: 100%;
  72. }
  73. }
  74. .hint{
  75. color: rgba(51, 51, 51, 1);
  76. margin-top: 16rpx;
  77. font-weight: bold;
  78. }
  79. }
  80. // 保存到相册
  81. .save{
  82. margin-top: 80rpx;
  83. text-align: center;
  84. .photo{
  85. height: 120rpx;
  86. width: 120rpx;
  87. border-radius: 999px;
  88. background-color: rgba(255, 255, 255, 1);
  89. text-align: center;
  90. margin: auto;
  91. line-height: 120rpx;
  92. img{
  93. vertical-align: middle;
  94. }
  95. }
  96. .text{
  97. color: rgba(119, 119, 119, 1);
  98. font-size: 24rpx;
  99. margin-top: 8rpx;
  100. }
  101. }
  102. </style>