330 lines
6.0 KiB
Vue
330 lines
6.0 KiB
Vue
<template>
|
||
<view class="content">
|
||
<view class="container">
|
||
<view class="my-header">
|
||
<view class="my-icons" @click="goback"> <uni-icons type="left" size="16"></uni-icons> </view>
|
||
<view class="my-text">提交订单</view>
|
||
<view class="my-icons"></view>
|
||
</view>
|
||
<!-- 顶部区域 -->
|
||
<scroll-view scroll-x="true" class="tap-top">
|
||
<view class="sz" v-for="(item,index) in tapList" :key="index" @click="transferIndex(index) ">
|
||
<view class="box" :class="{'xztap': qhindex == index}">{{item.text }}</view>
|
||
<view class="gang" v-if="qhindex == index"></view>
|
||
</view>
|
||
</scroll-view>
|
||
<view class="box-bai" v-if="qhindex == 0">
|
||
<view class="dis">
|
||
<!-- <uni-icons type="location-filled" size="20"></uni-icons> -->
|
||
<view class="boximg">
|
||
<image src="../../static/logo.png" mode=""></image>
|
||
</view>
|
||
<view class="">
|
||
<view class="">蓝鲸加油站(总站)</view>
|
||
<view class="hui-time">
|
||
山东省济南市槐荫区兴福路
|
||
</view>
|
||
</view>
|
||
|
||
</view>
|
||
<view class="">
|
||
<uni-icons type="right" size="20"></uni-icons>
|
||
</view>
|
||
</view>
|
||
<view class="box-bai" v-if="qhindex == 1" @click="goAdd()">
|
||
<view class="dis">
|
||
<uni-icons type="location-filled" color="#666666" size="30" style="margin-right: 5px;"></uni-icons>
|
||
|
||
<view class="">
|
||
<view class="">家庭住址</view>
|
||
<view class="hui-time">
|
||
山东省济南市槐荫区兴福路
|
||
</view>
|
||
</view>
|
||
|
||
</view>
|
||
<view class="">
|
||
<uni-icons type="right" size="20"></uni-icons>
|
||
</view>
|
||
</view>
|
||
|
||
<view class="box-bait">
|
||
<view class="dis-box">
|
||
<view class="goodsimg">
|
||
<image src="../../static/logo.png" mode=""></image>
|
||
</view>
|
||
<view class="">
|
||
<view class="">商品名称</view>
|
||
<view class="huyi">市场价:2900</view>
|
||
<view class="btwo">
|
||
<view class="">70积分</view>
|
||
<view class="">
|
||
<u-number-box v-model="value" @change="valChange" button-size="18"></u-number-box>
|
||
</view>
|
||
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="endbox">
|
||
<view style="color: #666666;font-size: 14px;">共1件商品,合计:</view>
|
||
<view style="color: red;"> <text style="font-weight: bold;font-size: 20px;">140.00</text> 积分</view>
|
||
</view>
|
||
</view>
|
||
|
||
<view class="beizhu">
|
||
<view style="margin-right: 15px;">备注</view>
|
||
<input type="text" placeholder="选填,请输入备注信息" />
|
||
|
||
</view>
|
||
<view class="bottom-box">
|
||
<view class="">
|
||
<view style="color: red;"> <text style="font-weight: bold;font-size: 20px;">140.00</text> 积分</view>
|
||
<view style="color: #9d9d9d; font-size: 12px; ">积分账户0.00</view>
|
||
</view>
|
||
<view class="andeniu">
|
||
<text>选择</text>
|
||
</view>
|
||
</view>
|
||
|
||
|
||
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
data() {
|
||
return {
|
||
title: '',
|
||
qhindex: 0,
|
||
value: 0,
|
||
tapList: [{
|
||
text: '到店自提'
|
||
},
|
||
{
|
||
text: '快递配送'
|
||
}
|
||
]
|
||
|
||
}
|
||
},
|
||
|
||
components: {
|
||
|
||
},
|
||
methods: {
|
||
valChange(e) {
|
||
console.log('当前值为: ' + e.value)
|
||
},
|
||
transferIndex(index) {
|
||
this.qhindex = index
|
||
},
|
||
goAdd() {
|
||
uni.navigateTo({
|
||
url: '/pagesHome/Address/Address'
|
||
})
|
||
},
|
||
goback() {
|
||
uni.navigateBack()
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style scoped lang="scss">
|
||
.content {
|
||
background: #f4f5f6;
|
||
}
|
||
|
||
.container {
|
||
width: 100%;
|
||
height: 100vh;
|
||
box-sizing: border-box;
|
||
padding-top: 88px;
|
||
}
|
||
|
||
.my-header {
|
||
width: 100%;
|
||
height: 88px;
|
||
background: #ffffff;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
color: #000;
|
||
box-sizing: border-box;
|
||
padding: 0px 15px;
|
||
padding-top: 40px;
|
||
|
||
.my-icons {
|
||
width: 20px;
|
||
|
||
}
|
||
|
||
position: fixed;
|
||
top: 0px;
|
||
}
|
||
|
||
.dis {
|
||
display: flex;
|
||
align-items: center;
|
||
}
|
||
|
||
.tap-top {
|
||
|
||
box-sizing: border-box;
|
||
padding-top: 10px;
|
||
width: 100%;
|
||
// padding-bottom: 22rpx;
|
||
padding-bottom: 10px;
|
||
background: #ffffff;
|
||
border-bottom: 1px solid #EEEEEE;
|
||
white-space: nowrap;
|
||
|
||
|
||
|
||
.sz {
|
||
width: 50%;
|
||
display: inline-block;
|
||
}
|
||
|
||
.box {
|
||
// margin: 0 auto;
|
||
text-align: center;
|
||
font-size: 32rpx;
|
||
margin-right: 50rpx;
|
||
line-height: 32rpx;
|
||
text-align: center;
|
||
// font-weight: bold;
|
||
color: #666666;
|
||
margin: 0 auto;
|
||
margin-bottom: 20rpx;
|
||
}
|
||
}
|
||
|
||
.xztap {
|
||
color: #333333 !important;
|
||
font-weight: bold !important;
|
||
}
|
||
|
||
.gang {
|
||
width: 128rpx;
|
||
height: 8rpx;
|
||
margin: 0 auto;
|
||
background: #1678ff;
|
||
border-radius: 14rpx;
|
||
}
|
||
|
||
.box-bai {
|
||
width: 100%;
|
||
height: 60px;
|
||
background: #ffffff;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
box-sizing: border-box;
|
||
padding: 0px 20px;
|
||
}
|
||
|
||
.box-bait {
|
||
width: 100%;
|
||
|
||
background: #ffffff;
|
||
box-sizing: border-box;
|
||
padding: 15px;
|
||
margin: 20px auto;
|
||
}
|
||
|
||
.boximg {
|
||
width: 40px;
|
||
height: 40px;
|
||
border-radius: 8px;
|
||
background-color: #1678ff;
|
||
margin-right: 10px;
|
||
|
||
image {
|
||
width: 100%;
|
||
height: 100%;
|
||
}
|
||
}
|
||
|
||
.hui-time {
|
||
font-size: 14px;
|
||
color: #666666;
|
||
}
|
||
|
||
.dis-box {
|
||
display: flex;
|
||
|
||
}
|
||
|
||
.goodsimg {
|
||
width: 75px;
|
||
height: 75px;
|
||
overflow: hidden;
|
||
margin-right: 10px;
|
||
|
||
image {
|
||
width: 100%;
|
||
height: 100%;
|
||
}
|
||
}
|
||
|
||
.endbox {
|
||
margin-top: 15px;
|
||
width: 100%;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: flex-end;
|
||
}
|
||
|
||
.btwo {
|
||
width: 240px;
|
||
display: flex;
|
||
justify-content: space-between;
|
||
}
|
||
|
||
.huyi {
|
||
font-size: 14px;
|
||
margin: 5px auto;
|
||
color: #999999;
|
||
}
|
||
|
||
.red {
|
||
color: red;
|
||
}
|
||
|
||
.beizhu {
|
||
background-color: #ffffff;
|
||
display: flex;
|
||
align-items: center;
|
||
box-sizing: border-box;
|
||
padding: 15px 20px;
|
||
}
|
||
|
||
.bottom-box {
|
||
width: 100%;
|
||
height: 88px;
|
||
background: white;
|
||
box-sizing: border-box;
|
||
padding: 20px;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
position: fixed;
|
||
bottom: 0px;
|
||
z-index: 99999;
|
||
|
||
}
|
||
|
||
.andeniu {
|
||
width: 100px;
|
||
height: 45px;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
color: #ffffff;
|
||
border-radius: 4px;
|
||
background: #1678ff;
|
||
}
|
||
</style> |