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

72 lines
1.4 KiB

  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. </view>
  23. </template>
  24. <script>
  25. export default {
  26. data() {
  27. return {
  28. };
  29. }
  30. }
  31. </script>
  32. <style lang="scss">
  33. .select-order{
  34. margin-top: 400rpx;
  35. width: 100%;
  36. height: 400rpx;
  37. .picture-order{
  38. height: 50%;
  39. display: flex;
  40. align-items: center;
  41. .picture-button{
  42. background-color: #DC2828;
  43. color: #ffffff;
  44. width: 85%;
  45. height: 130rpx;
  46. margin: auto;
  47. display: flex;
  48. align-items: center;
  49. justify-content: center;
  50. border-radius: 100rpx;
  51. }
  52. }
  53. .ovice-order{
  54. height: 50%;
  55. .ovice-button{
  56. color: #ffffff;
  57. background-color: #DC2828;
  58. width: 85%;
  59. height: 130rpx;
  60. margin: auto;
  61. display: flex;
  62. align-items: center;
  63. justify-content: center;
  64. border-radius: 100rpx;
  65. }
  66. }
  67. }
  68. </style>