index.vue 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <template>
  2. <view class="pages">
  3. <view class="index">
  4. <image src="/static/img/index-banner.png" class="full-img" mode="widthFix"></image>
  5. <view class="operating wrap">
  6. <view class="operating-item">
  7. <view class="operating-item-text">
  8. <view class="operating-item-text-til">订单核销</view>
  9. <view class="operating-item-text-subtil">客户入住核销蝴蝶券</view>
  10. <view class="f-tac">
  11. <navigator class="operating-item-link" url="/pages/writeoff/writeoff" open-type="navigate">进入</navigator>
  12. </view>
  13. </view>
  14. <view class="operating-item-icon">
  15. <i class="iconfont iconhexiao"></i>
  16. </view>
  17. </view>
  18. <view class="operating-item">
  19. <view class="operating-item-text">
  20. <view class="operating-item-text-til">房间确认</view>
  21. <view class="operating-item-text-subtil">确认是否有房间</view>
  22. <view class="f-tac">
  23. <navigator class="operating-item-link" url="/pages/roomconfirm/roomconfirm" open-type="navigate">进入</navigator>
  24. </view>
  25. </view>
  26. <view class="operating-item-icon">
  27. <i class="iconfont iconqueren"></i>
  28. </view>
  29. </view>
  30. <!-- <view class="operating-item">
  31. <view class="operating-item-text">
  32. <view class="operating-item-text-til">销售统计</view>
  33. <view class="operating-item-text-subtil">查询销售数据</view>
  34. <view class="f-tac">
  35. <navigator class="operating-item-link" url="/" open-type="navigate">进入</navigator>
  36. </view>
  37. </view>
  38. <view class="operating-item-icon">
  39. <i class="iconfont icontongji"></i>
  40. </view>
  41. </view> -->
  42. <!-- <view class="operating-item">
  43. <view class="operating-item-text">
  44. <view class="operating-item-text-til">核销记录</view>
  45. <view class="operating-item-text-subtil">核销蝴蝶券记录</view>
  46. <view class="f-tac">
  47. <navigator class="operating-item-link" url="/" open-type="navigate">进入</navigator>
  48. </view>
  49. </view>
  50. <view class="operating-item-icon">
  51. <i class="iconfont iconlianluojilu"></i>
  52. </view>
  53. </view> -->
  54. </view>
  55. <!-- operating end -->
  56. </view>
  57. </view>
  58. </template>
  59. <script>
  60. export default {
  61. data() {
  62. return {
  63. title: 'Hello'
  64. }
  65. },
  66. onLoad() {
  67. },
  68. methods: {
  69. }
  70. }
  71. </script>
  72. <style lang="scss" scoped>
  73. .operating{margin-top: $uni-spacing-col-lg;}
  74. .operating-item{display: flex;margin-bottom: 24rpx;align-items: center;border-radius: $uni-border-radius-lg;background-color: #6e55da;padding: 30rpx 40rpx 25rpx;color: #fff;justify-content: space-between;}
  75. .operating-item:nth-of-type(2){background-color: #f96e0e;}
  76. .operating-item:nth-of-type(2) .operating-item-link{color: #f96e0e;}
  77. .operating-item:nth-of-type(3){background-color: #0e95f9;}
  78. .operating-item:nth-of-type(3) .operating-item-link{color: #0e95f9;}
  79. .operating-item:nth-of-type(4){background-color: #fd1d79;}
  80. .operating-item:nth-of-type(4) .operating-item-link{color: #fd1d79;}
  81. .operating-item-text-til{font-size: $uni-font-size-lg;margin-bottom: $uni-spacing-col-sm;}
  82. .operating-item-link{display: inline-block;margin-top:25rpx;padding: 10rpx 65rpx;border-radius: 25rpx;line-height: 1;background-color: $uni-bg-color;color: #6e55da;text-align: center;}
  83. .operating-item-icon{margin-right: 20rpx;}
  84. .operating-item-icon .iconfont{font-size: 80rpx;opacity: 0.6;}
  85. </style>