<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>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.select-order{
|
|
margin-top: 400rpx;
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
</style>
|