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

<template>
<view>
<navbar
title="快捷下单"
leftClick
@leftClick="$utils.navigateBack"
/>
<view class="select-order">
<view class="picture-order">
<view class="picture-button" @click="$utils.redirectTo('/pages_order/order/pictureOrder')">
<uv-icon name="camera-fill" size="45rpx" color="#ffffff"></uv-icon>
<text>拍照下单</text>
</view>
</view>
<view class="ovice-order">
<view class="ovice-button" @click="$utils.redirectTo('/pages_order/order/voiceOrder')">
<uv-icon name="mic" size="45rpx" color="#ffffff"></uv-icon>
<text>语音下单</text>
</view>
</view>
</view>
<!-- 查看快捷订单列表 -->
<view class="order-list-btn">
<view class="list-button" @click="$utils.navigateTo('/pages_order/order/fastOrderList')">
<uv-icon name="list" size="40rpx" color="#D03F25"></uv-icon>
<text>我的快捷订单</text>
</view>
</view>
<kefu/>
</view>
</template>
<script>
export default {
data() {
return {
};
}
}
</script>
<style scoped lang="scss">
.select-order{
margin-top: 300rpx;
width: 100%;
height: 400rpx;
.picture-order{
height: 50%;
display: flex;
align-items: center;
.picture-button{
background-color: #DC2828;
color: #ffffff;
width: 85%;
height: 130rpx;
margin: auto;
display: flex;
align-items: center;
justify-content: center;
border-radius: 100rpx;
}
}
.ovice-order{
height: 50%;
.ovice-button{
color: #ffffff;
background-color: #DC2828;
width: 85%;
height: 130rpx;
margin: auto;
display: flex;
align-items: center;
justify-content: center;
border-radius: 100rpx;
}
}
}
.order-list-btn{
margin-top: 50rpx;
width: 100%;
display: flex;
justify-content: center;
.list-button{
border: 1rpx solid #D03F25;
color: #D03F25;
background-color: #ffffff;
width: 85%;
height: 100rpx;
display: flex;
align-items: center;
justify-content: center;
border-radius: 100rpx;
gap: 20rpx;
text {
font-size: 28rpx;
}
}
}
</style>