建材商城系统20241014
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.

105 lines
2.1 KiB

7 months ago
  1. <template>
  2. <view>
  3. <navbar
  4. title="快捷下单"
  5. leftClick
  6. @leftClick="$utils.navigateBack"
  7. />
  8. <view class="select-order">
  9. <view class="picture-order">
  10. <view class="picture-button" @click="$utils.redirectTo('/pages_order/order/pictureOrder')">
  11. <uv-icon name="camera-fill" size="45rpx" color="#ffffff"></uv-icon>
  12. <text>拍照下单</text>
  13. </view>
  14. </view>
  15. <view class="ovice-order">
  16. <view class="ovice-button" @click="$utils.redirectTo('/pages_order/order/voiceOrder')">
  17. <uv-icon name="mic" size="45rpx" color="#ffffff"></uv-icon>
  18. <text>语音下单</text>
  19. </view>
  20. </view>
  21. </view>
  22. <!-- 查看快捷订单列表 -->
  23. <view class="order-list-btn">
  24. <view class="list-button" @click="$utils.navigateTo('/pages_order/order/fastOrderList')">
  25. <uv-icon name="list" size="40rpx" color="#D03F25"></uv-icon>
  26. <text>我的快捷订单</text>
  27. </view>
  28. </view>
  29. <kefu/>
  30. </view>
  31. </template>
  32. <script>
  33. export default {
  34. data() {
  35. return {
  36. };
  37. }
  38. }
  39. </script>
  40. <style scoped lang="scss">
  41. .select-order{
  42. margin-top: 300rpx;
  43. width: 100%;
  44. height: 400rpx;
  45. .picture-order{
  46. height: 50%;
  47. display: flex;
  48. align-items: center;
  49. .picture-button{
  50. background-color: #DC2828;
  51. color: #ffffff;
  52. width: 85%;
  53. height: 130rpx;
  54. margin: auto;
  55. display: flex;
  56. align-items: center;
  57. justify-content: center;
  58. border-radius: 100rpx;
  59. }
  60. }
  61. .ovice-order{
  62. height: 50%;
  63. .ovice-button{
  64. color: #ffffff;
  65. background-color: #DC2828;
  66. width: 85%;
  67. height: 130rpx;
  68. margin: auto;
  69. display: flex;
  70. align-items: center;
  71. justify-content: center;
  72. border-radius: 100rpx;
  73. }
  74. }
  75. }
  76. .order-list-btn{
  77. margin-top: 50rpx;
  78. width: 100%;
  79. display: flex;
  80. justify-content: center;
  81. .list-button{
  82. border: 1rpx solid #D03F25;
  83. color: #D03F25;
  84. background-color: #ffffff;
  85. width: 85%;
  86. height: 100rpx;
  87. display: flex;
  88. align-items: center;
  89. justify-content: center;
  90. border-radius: 100rpx;
  91. gap: 20rpx;
  92. text {
  93. font-size: 28rpx;
  94. }
  95. }
  96. }
  97. </style>