Browse Source

修复问题,

按需求新增内容
master
396316021 2 years ago
parent
commit
e04804863f
  1. 2
      components/PetPage/index.vue
  2. 2
      pages/Index/components/UserPage/index.vue
  3. 0
      pages/OrderConfirm/components/end.scss
  4. 46
      pages/OrderConfirm/components/start.scss
  5. 1092
      pages/OrderConfirm/end.vue
  6. 4
      pages/OrderConfirm/start.vue
  7. 7
      pages/OrderPage/index.vue

2
components/PetPage/index.vue

@ -35,7 +35,7 @@
</view>
<view class="item-content row col">
<view class="item-content-text">
<u-number-box border="none" v-model="data.weight" :min="1" :max="1000" button-size="36" inputWidth="50" buttonSize="50"></u-number-box>
<uv-number-box border="none" v-model="data.weight" :min="1" :max="1000"></uv-number-box>
</view>
</view>
</view>

2
pages/Index/components/UserPage/index.vue

@ -30,7 +30,7 @@
</view>
<view class="user-detail-info" v-if="user.nickname">
<view class="user-detail-title-container row">
<image mode="widthFix" class="user-detail-img" :src="staticImage.hiImage"/>
<u-image mode="widthFix" class="user-detail-img" width="83" height="36" :src="staticImage.hiImage"></u-image>
<view class="user-detail-title">
{{user.nickname}}
</view>

0
pages/OrderConfirm/components/index.scss → pages/OrderConfirm/components/end.scss

46
pages/OrderConfirm/components/start.scss

@ -0,0 +1,46 @@
.body-background{
background: {
color:#F5F5F6;
};
height:100vh;
}
::v-deep .u-icon__icon.uicon-plus{
font-size:40rpx !important;
}
::v-deep .u-cell__body{
padding:20rpx 0 !important;
}
.bottom-btn{
padding:50rpx;
padding-bottom:0;
//position: absolute;
bottom:0;
left:0;
width:100%;
}
.footer-content{
font-size: 28rpx;
font-weight: 400;
color: #AFB5BE;
line-height: 50rpx;
padding:0 56rpx;
margin-top:100rpx;
text-align: center;
.footer-contact{
padding:14rpx 0;
border-bottom:4rpx solid #EEEEEE;
}
.footer-wechat{
justify-content: center;
margin:10rpx 0;
}
.footer-email{
justify-content: center;
}
.foot-url{
color:#576B95;
}
}
.form-label{
margin-bottom:30rpx;
}

1092
pages/OrderConfirm/end.vue

File diff suppressed because it is too large Load Diff

4
pages/OrderConfirm/start.vue

@ -3,7 +3,7 @@
<view class="body-background">
</view>
<u-row :custom-style="{padding:'16rpx 26rpx',boxSizing:'border-box'}">
<u-row :custom-style="{padding:'50rpx 26rpx',boxSizing:'border-box'}">
<u-col :span="12" :custom-style="{
backgroundColor:'#FFFFFF',
borderRadius:'20rpx',
@ -315,5 +315,5 @@ export default {
</script>
<style lang="scss">
@import './components/index.scss';
@import './components/start.scss';
</style>

7
pages/OrderPage/index.vue

@ -288,11 +288,8 @@
<!-- <view class="">-->
<!-- <u-text :text="parseFloat(item.price)+'元'" size="32" style="white-space: nowrap;" line-height="32"></u-text>-->
<!-- </view>-->
<u-number-box border="none" v-model="item.number" :min="0" :max="1000" button-size="36" inputWidth="50" buttonSize="50">
<template #input>
<u-input input-align="center" v-model="item.number" type="number" border="none" custom-style="width:80rpx;height:50rpx;background-color:#fafafa;"></u-input>
</template>
</u-number-box>
<uv-number-box border="none" v-model="item.number" :min="0" :max="1000">
</uv-number-box>
</view>
</template>
</u-cell>

Loading…
Cancel
Save