123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- <template>
- <view class="cart-pages">
- <view class="cart-bar">
- <view>
- <u-image height="40rpx" width="40rpx" src="/static/position.png"></u-image>
- </view>
- <view class="position">
- <view class="address">陕西省西安市未央区华帝金座A座6楼</view>
- <view>王明 1456465455</view>
- </view>
- <view>
- <u-image height="40rpx" width="40rpx" src="/static/edit.png"></u-image>
- </view>
- </view>
- <view class="goods-list">
- <!-- 商品列表 -->
- <view class="goods-item" v-for="(item,index) in 6" :key="index">
- <view class="goods-imgs">
- <u-image border-radius="12" width="158rpx" height="140rpx" src="/static/goods.png"></u-image>
- </view>
- <view class="goods-info">
- <view class="good-name">拉就是两地分居拉进来就是两地分居拉进来就是两地分居拉进来进来</view>
- <view class="goods-price">
- <view>
- <text>50</text>
- <u-image mode="scaleToFill" width="35rpx" height="35rpx" src="/static/ledou.png"></u-image>
- </view>
- <view>×2</view>
- </view>
- </view>
- </view>
- <!-- 总计 -->
- <view class="goods-heji">
- <view>
- <view>商品合计:</view>
- <view class="heji">
- <text>250</text>
- <u-image mode="scaleToFill" width="35rpx" height="35rpx" src="/static/ledou.png"></u-image>
- </view>
- </view>
- <view>
- <view>运费:</view>
- <view>免运费</view>
- </view>
- </view>
- </view>
- <view class="cart-submit">
- <view>
- <view>总计:<text>450</text></view>
- <u-image mode="scaleToFill" width="40rpx" height="40rpx" src="/static/ledou.png"></u-image>
- </view>
- <view>
- <u-button size="mini" :custom-style="toOrderButton" type="error" @click="toPay">确认支付</u-button>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- toOrderButton: {
- borderRadius:'100rpx',
- fontSize:'30rpx',
- width: '180rpx',
- height: '60rpx'
- }
- };
- },
- methods: {
- //立即下单
- toPay(){
-
- }
- },
- }
- </script>
- <style lang="scss">
- page{
- height: 100%;
- }
- .cart-pages{
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- .cart-bar{
- background: #FFFFFF;
- box-shadow: 1px 1px 3px #eee;
- border-bottom: 1px solid #eee;
- border-top: 10upx solid #F8F8F8;
- display: flex;
- align-items: center;
- padding:15upx 20upx;
- .position{
- flex-grow: 1;
- }
- > view{
- padding: 10upx;
- .address{
- padding: 5upx 0;
- }
- &:last-child{
- padding: 0 20upx;
- }
- }
- }
- .goods-list{
- padding: 20upx 0;
- flex-grow: 1;
- overflow: auto;
- .goods-class-box{
- background: #FFFFFF;
- box-shadow: 1px 1px 3px #eee;
- margin-bottom: 20upx;
- }
-
- .goods-item{
- padding: 20upx 40upx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- border-bottom: 1px solid #F8F8F8;
- background: #fff;
- &:last-child{
- border: 0;
- }
- .goods-imgs{
- position: relative;
- }
- .goods-info{
- padding-left: 20upx;
- .good-name{
- font-weight: bold;
- }
- }
- .goods-price{
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding-top: 20upx;
- >view{
- &:first-child{
- display: flex;
- align-items: center;
- text{
- color: red;
- font-size: 35upx;
- margin-right: 6upx;
- font-weight: bold;
- }
- }
- }
- }
- }
- }
- .goods-heji{
- padding: 20upx 40upx;
- background: #FFFFFF;
- box-shadow: 1px 1px 3px #eee;
- margin-top: 20upx;
- >view{
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 10upx 0;
- .heji{
- display: flex;
- align-items: center;
- text{
- color: red;
- margin-right: 6upx;
- font-size: 35upx;
- font-weight: bold;
- }
- }
- }
- }
- .cart-submit{
- padding: 20upx 30upx;
- background: #FFFFFF;
- box-shadow: 1px 1px 3px #eee;
- border-top: 1px solid #eee;
- display: flex;
- align-items: center;
- justify-content: space-between;
- > view{
- &:first-child{
- display: flex;
- align-items: center;
- text{
- color: red;
- font-size: 40upx;
- margin-right: 6upx;
- font-weight: bold;
- }
- }
- }
- }
- }
- </style>
|