46 lines
1.2 KiB
Vue
46 lines
1.2 KiB
Vue
|
|
<template>
|
|||
|
|
<view>
|
|||
|
|
<!-- 顶部操作条 -->
|
|||
|
|
<cu-custom :bgColor="'bg-main-color'" :isBack="true">
|
|||
|
|
<block slot="backText">返回</block>
|
|||
|
|
<block slot="content">订单确认</block>
|
|||
|
|
</cu-custom>
|
|||
|
|
<!-- 服务地址 -->
|
|||
|
|
<view class="padding-lg bg-white">
|
|||
|
|
<view class="flex justify-between align-center">
|
|||
|
|
<view class="text-lg text-black">
|
|||
|
|
<text class="cuIcon-locationfill text-blue light"></text>
|
|||
|
|
选择服务地址
|
|||
|
|
</view>
|
|||
|
|
<view>选择<text class="text-sm text-bold text-gray cuIcon-right"></text></view>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
<!-- 预约时间 -->
|
|||
|
|
<view class="margin-lr-sm margin-top-sm bg-white padding">
|
|||
|
|
<view class="flex justify-between align-center">
|
|||
|
|
<text class="text-black">预约时间</text>
|
|||
|
|
<view class="text-red text-sm">请选择上门时间<text class="text-bold cuIcon-right"></text></view>
|
|||
|
|
</view>
|
|||
|
|
<view class="text-sm text-gray margin-top-sm"><text class="cuIcon-question">选择的为期望上门时间,稍后工程师将与你确认具体上门时间</text></view>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
</template>
|
|||
|
|
|
|||
|
|
<script>
|
|||
|
|
export default {
|
|||
|
|
data() {
|
|||
|
|
return {
|
|||
|
|
pickedProductList: []
|
|||
|
|
}
|
|||
|
|
},
|
|||
|
|
methods: {
|
|||
|
|
name() {
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
},
|
|||
|
|
}
|
|||
|
|
</script>
|
|||
|
|
|
|||
|
|
<style>
|
|||
|
|
</style>
|