Browse Source

新增修改宠物页面

创建订单
用户券选择
宠物创建页面
对接接口
master
396316021 2 years ago
parent
commit
b12176cfd0
  1. 3
      api/other.js
  2. 12
      api/pet.js
  3. 211
      components/PetPage/index.vue
  4. 6
      pages.json
  5. 95
      pages/OrderPage/index.vue
  6. 106
      pages/Pet/components/create.scss
  7. 127
      pages/Pet/create.vue
  8. 2
      pages/Pet/index.vue
  9. 41
      pages/UserCoupons/index.vue

3
api/other.js

@ -1,3 +1,6 @@
import request from "@/utils/request";
import {host} from "@/config/host";
/** /**
* 阿里云文件上传STS * 阿里云文件上传STS
* @param {Object} data * @param {Object} data

12
api/pet.js

@ -45,4 +45,16 @@ export function feedLog(pet_id){
pet_id pet_id
} }
}) })
}
/**
* 新增/修改宠物
* @param data
* @returns {Promise<unknown>}
*/
export function editPet(data){
return request({
url:'user/pet-upinfo',
method:'post',
data:data
})
} }

211
components/PetPage/index.vue

@ -1,64 +1,179 @@
<template> <template>
<view class="pet-page-container" :style="{width:buttonWidth}"> <view class="pet-page-container" :style="{width:buttonWidth}">
<view class="pet-page-capsule-container row"> <view class="pet-page-capsule-container row">
<view class="pet-page-capsule col-4 active"> <view class="pet-page-capsule col-4" v-for="(item,index) in petTypeList"
喵喵 :class="{active:(index === petTypeChecked)}" @click="selectPetType(index)">
</view> {{item.label}}
<view class="pet-page-capsule col-4">
汪汪
</view>
<view class="pet-page-capsule col-4">
其他萌宠
</view> </view>
</view> </view>
</view> </view>
<view class="pet-page-group row" v-for="i in [1,2]"> <view class="pet-page-group row">
<view class="order-item row"> <view class="order-item row">
<view class="item-title"> <view class="item-title">
宝贝姓名 宝贝姓名
</view> </view>
<view class="item-content row col"> <view class="item-content row col">
<view class="item-content-text"> <view class="item-content-text">
58元优惠券 <u-input inputAlign="right" placeholder="请输入"></u-input>
</view> </view>
</view> </view>
</view> </view>
<view class="order-item row"> <view class="order-item row">
<view class="item-title"> <view class="item-title">
宝贝品种 宝贝品种
</view> </view>
<view class="item-content row col"> <view class="item-content row col">
<view class="item-content-text"> <view class="item-content-text">
58元优惠券 <u-input inputAlign="right" placeholder="请输入"></u-input>
</view>
</view>
</view>
<view class="order-item row">
<view class="item-title">
宝贝体重(KG)
</view>
<view class="item-content row col">
<view class="item-content-text">
<u-number-box :min="1" :max="1000" button-size="36" inputWidth="50" buttonSize="50"></u-number-box>
</view>
</view>
</view>
<view class="order-item row">
<view class="item-title">
宝贝生日
</view>
<view class="item-content row col">
<view class="item-content-text">
<u-text suffix-icon="arrow-right" text="请选择" size="28" color="#636363" icon-style="font-size:30" line-height="30"></u-text>
</view>
</view>
</view>
<view class="order-item row">
<view class="item-title">
宝贝性别
</view>
<view class="item-content row col">
<view class="item-content-text">
<u-text suffix-icon="arrow-right" text="请选择" size="28" color="#636363" icon-style="font-size:30" line-height="30"></u-text>
</view>
</view>
</view>
<view class="order-item row">
<view class="item-title">
最近疫苗时间
</view>
<view class="item-content row col">
<view class="item-content-text">
<u-text suffix-icon="arrow-right" text="请选择" size="28" color="#636363" icon-style="font-size:30" line-height="30"></u-text>
</view> </view>
</view> </view>
</view> </view>
<view class="order-item row"> <view class="order-item row">
<view class="item-title"> <view class="item-title">
宝贝体重 最近驱虫时间
</view> </view>
<view class="item-content row col"> <view class="item-content row col">
<view class="item-content-text"> <view class="item-content-text">
58元优惠券 <u-text suffix-icon="arrow-right" text="请选择" size="28" color="#636363" icon-style="font-size:30" line-height="30"></u-text>
</view>
</view>
</view>
<view class="order-item row">
<view class="item-title">
是否有户口
</view>
<view class="item-content row col">
<view class="item-content-text">
<u-text suffix-icon="arrow-right" text="请选择" size="28" color="#636363" icon-style="font-size:30" line-height="30"></u-text>
</view>
</view>
</view>
<view class="order-item row">
<view class="item-title">
宝贝图片
</view>
<view class="item-content row col">
<view class="item-content-text">
<u-upload
width="160"
height="160"
:fileList="imageList"
name="img"
multiple
:maxCount="10"
:previewFullImage="true"
uploadIcon="plus"
@afterRead="afterImgRead"
@delete="deleteImg"
></u-upload>
</view>
</view>
</view>
<view class="order-item row">
<view class="item-title">
宝贝视频
</view>
<view class="item-content row col">
<view class="item-content-text">
<u-upload
width="160"
height="160"
:fileList="imageList"
name="img"
multiple
:maxCount="10"
:previewFullImage="true"
uploadIcon="plus"
@afterRead="afterImgRead"
@delete="deleteImg"
></u-upload>
</view> </view>
</view> </view>
</view> </view>
</view> </view>
<view class="pet-page-button row"> <view class="pet-page-button row">
<MzButton <view class="col-12" style="justify-content: center;" v-if="type === 'lists'">
title="添加喵喵" <view class="" style="display: inline-block;">
button-color="#FFFFFF" <MzButton
font-color="#262626" title="添加萌宠"
button-width="300rpx" button-color="#FFFFFF"
class="" font-color="#262626"
> button-width="300rpx"
</MzButton> class=""
>
</MzButton>
</view>
</view>
<view class="col-6" v-if="type === 'create' && showCancel">
<MzButton
title="取消"
button-color="#FFFFFF"
font-color="#262626"
button-width="300rpx"
class=""
>
</MzButton>
</view>
<view class="col-6" v-if="type === 'create'">
<MzButton
title="保存"
button-color="#4DC3B8"
font-color="#fff"
button-width="300rpx"
class=""
@click="submit"
>
</MzButton>
</view>
</view> </view>
</template> </template>
<script> <script>
import { imghost } from '@/config/host.js'; import { imghost } from '@/config/host.js';
import MzButton from "@/components/MzButton/Index.vue"; import MzButton from "@/components/MzButton/Index.vue";
import {editPet} from "@/api/pet";
import {getSTS} from "@/api/other";
export default{ export default{
name:'PetPage', name:'PetPage',
@ -95,6 +210,18 @@
type:Object, type:Object,
default:{}, default:{},
}, },
type:{
type:String,
default:'create',
},
showCancel:{
type:Boolean,
default:false,
},
autoBack:{
type:Boolean,
default:false,
},
}, },
components:{ components:{
MzButton MzButton
@ -105,14 +232,52 @@
buttonBackground:imghost+"/static/image/small-button-background.png", buttonBackground:imghost+"/static/image/small-button-background.png",
staticImage:{ staticImage:{
buttonBackground:imghost+'/static/image/small-button-background.png' buttonBackground:imghost+'/static/image/small-button-background.png'
} },
petTypeList:[
{
label:'喵喵',
value:'1',
},{
label:'汪汪',
value:'2',
},{
label:'其他萌宠',
value:'3',
},
],
petTypeChecked:0,
} }
}, },
onLoad() { onLoad() {
}, },
methods: { methods: {
selectPetType(index){
this.petTypeChecked = index;
},
submit(){
let data = {
"id": "",
"avatar": "",
"name": "124123",
"type_name": "12412",
"type": "1",
"weight": "12",
"birthday": "2020/01/04",
"sex": "1",
"last_vaccine_time": "",
"last_insect_repellent_time": "",
"remarks": "121122",
"is_home": "1",
"video": ""
}
// editPet(data).then(res => {
// console.log(res)
// })
getSTS({}).then(res => {
console.log(res)
})
}
} }
} }
</script> </script>

6
pages.json

@ -84,6 +84,12 @@
"style": { "style": {
"navigationBarTitleText": "登录" "navigationBarTitleText": "登录"
} }
},
{
"path": "pages/Pet/create",
"style": {
"navigationBarTitleText": "创建修改萌宠"
}
} }
], ],
"globalStyle": { "globalStyle": {

95
pages/OrderPage/index.vue

@ -62,22 +62,25 @@
<u-icon name="arrow-right"></u-icon> <u-icon name="arrow-right"></u-icon>
</view> </view>
</view> </view>
<view class="order-item row" @click="showAddServicePopup"> <view class="order-item row">
<view class="item-title"> <view class="item-title">
增值服务 增值服务
</view> </view>
<view class="item-content row col"> <view class="item-content row col">
<view class="item-content-tag" v-for="i of 3"> <view class="item-content-tag" v-for="(item,index) in addServiceChecked" v-if="addServiceChecked.length !== 0">
<view class="tag-text"> <view class="tag-text">
洗澡{{i}} {{item.name}}
</view> </view>
<view class="tag-close"> <view class="tag-close" @click="delAddService(index)">
<image mode="heightFix" class="img" :src="staticImage.tagClose"/> <image mode="heightFix" class="img" :src="staticImage.tagClose"/>
</view> </view>
</view> </view>
<view v-else>
<u-text text="请选择增值服务" size="28" color="#636363" @click="showAddServicePopup"></u-text>
</view>
</view> </view>
<view class="item-icon"> <view class="item-icon" @click="showAddServicePopup">
<u-icon name="arrow-right"></u-icon> <u-icon name="arrow-right"></u-icon>
</view> </view>
</view> </view>
@ -86,8 +89,11 @@
选择优惠 选择优惠
</view> </view>
<view class="item-content row col"> <view class="item-content row col">
<view class="item-content-text"> <view class="item-content-text" v-if="coupons.title">
58元优惠券 {{coupons.title}}
</view>
<view class="item-content-text" v-else>
<u-text text="请选择优惠券" size="28" color="#636363"></u-text>
</view> </view>
</view> </view>
<view class="item-icon"> <view class="item-icon">
@ -218,7 +224,17 @@
1文字占位文字占位文字占位文字占位文字占位文字占位文字占位 2文字占位文字占位文字占位文字占位文字占位文字占位文 1文字占位文字占位文字占位文字占位文字占位文字占位文字占位 2文字占位文字占位文字占位文字占位文字占位文字占位文
</view> </view>
</uv-popup> </uv-popup>
<uv-popup ref="addServicePopup" mode="bottom" round="20" closeable safeAreaInsetTop safeAreaInsetBottom> <uv-popup ref="addServicePopup" mode="bottom" round="20" closeable safeAreaInsetTop safeAreaInsetBottom custom-style="position:relative;">
<view class="title row" style="position:absolute;justify-content: center;width:100%;top:20rpx;left:0;">
<view class="value col" style="position: relative;text-align: center;">
<!-- <u-text text="协议内容" size="38" color="#191919"></u-text>-->
<view class="" style="position: relative;display:inline-block;">
<view style="color:#191919;font-size:38rpx;display:inline-block;position: relative;z-index: 2;">增值服务</view>
<view class="background" style="width:100%;height:50%;position: absolute;bottom:0;left:0;background-color:rgba(227, 191, 119, 0.6);display:inline-block;z-index:1;"></view>
</view>
</view>
</view>
<view class="pop-service-container"> <view class="pop-service-container">
<u-cell-group custom-style="max-height:700rpx;overflow:auto;"> <u-cell-group custom-style="max-height:700rpx;overflow:auto;">
<u-cell <u-cell
@ -227,7 +243,7 @@
isLink isLink
right-icon="" right-icon=""
v-for="(item,index) in addServiceList" v-for="(item,index) in addServiceList"
@click="selectAddService(item,index)" @click="selectAddService(index)"
> >
<template #value> <template #value>
<view class=""> <view class="">
@ -236,27 +252,28 @@
<u-text :text="parseFloat(item.price)+'元'" size="32" style="white-space: nowrap;" line-height="32"></u-text> <u-text :text="parseFloat(item.price)+'元'" size="32" style="white-space: nowrap;" line-height="32"></u-text>
</view> </view>
<view class=""> <view class="">
<u-radio-group> <u-checkbox-group>
<u-radio <u-checkbox
:customStyle="{marginBottom: '0',marginTop: '0',marginLeft:'15rpx'}" :customStyle="{marginBottom: '0',marginTop: '0',marginLeft:'15rpx'}"
size="32" size="32"
:checked="(addServiceChecked.indexOf(item.id))" :checked="item.checked"
@click="selectAddService(item)" activeColor="#4DC3B8"
iconSize="30"
> >
</u-radio> </u-checkbox>
</u-radio-group> </u-checkbox-group>
</view> </view>
</view> </view>
</view> </view>
</template> </template>
</u-cell> </u-cell>
</u-cell-group> </u-cell-group>
<view class="row"> <view class="row" style="padding-top:30rpx;">
<view class="col-6" style="padding:0 30rpx;"> <view class="col-6" style="padding:0 30rpx;">
<MzButton title="取消"></MzButton> <MzButton title="取消" @click="$refs.addServicePopup.close()"></MzButton>
</view> </view>
<view class="col-6" style="padding:0 30rpx;"> <view class="col-6" style="padding:0 30rpx;">
<MzButton title="确认" button-color="#4DC3B8" font-color="#fff"></MzButton> <MzButton title="确认" @click="addServiceConfirm" button-color="#4DC3B8" font-color="#fff"></MzButton>
</view> </view>
</view> </view>
</view> </view>
@ -328,31 +345,48 @@
limit:10 limit:10
}, },
addServiceChecked:[], addServiceChecked:[],
coupons:{},
} }
}, },
onLoad(options) { onLoad(options) {
this.id = options.id; this.id = options.id;
this.getCardDetail();
}, },
onShow(){ onShow(){
this.getDefaultAddress(); this.getDefaultAddress();
this.getUserCoupons();
}, },
methods: { methods: {
serverBottomLower(){ getUserCoupons(){
console.log(123123) let cacheCoupons = uni.getStorageSync('userCoupons');
if (cacheCoupons) {
this.coupons = cacheCoupons;
uni.removeStorage({key:'userCoupons'});
}
}, },
showAddServicePopup(){ showAddServicePopup(){
this.$refs.addServicePopup.open(); this.$refs.addServicePopup.open();
}, },
selectAddService(item){ selectAddService(index){
if(!this.addServiceChecked.indexOf(item.id)){ this.addServiceList[index].checked = !this.addServiceList[index].checked;
this.addServiceChecked.push.apply(item.id); },
} addServiceConfirm(){
console.log(this.addServiceChecked) this.addServiceList.map(item => {
if(item.checked){
this.addServiceChecked.push(item);
}
})
this.$refs.addServicePopup.close();
},
delAddService(index){
this.addServiceChecked.splice(index,1);
}, },
getStoreServiceList(){ getStoreServiceList(){
getStoreService({address_id: this.address.id}).then(res => { getStoreService({address_id: this.address.id}).then(res => {
this.addServiceList = res.data.add_service; this.addServiceList = res.data.add_service.map(item => {
item.checked = false;
return item;
});
console.log(this.addServiceList)
this.basicServiceList = res.data.basic_service; this.basicServiceList = res.data.basic_service;
}); });
}, },
@ -390,13 +424,6 @@
url:url url:url
}) })
}, },
getCardDetail(){
cardDetail({
id:this.id
}).then((res) => {
console.log(res)
})
},
sectionChange(index) { sectionChange(index) {
this.curNow = index; this.curNow = index;
}, },

106
pages/Pet/components/create.scss

@ -0,0 +1,106 @@
.order-item.pet-page-item{
padding:{
left:0 !important;
right:0 !important;
}
border-bottom: none !important;
}
.pet-page-group{
margin-top:20rpx;
padding:0 20rpx;
background:{
color:#F3FDFC;
}
border-radius: 20rpx;
}
.pet-page-button{
width: 100%;
text-align: center;
padding:55rpx 0 15rpx 0;
justify-content: center;
}
.order-item {
padding: 25rpx 10rpx;
align-items: center;
border-bottom: 1rpx solid #BBB;
box-sizing: border-box;
&:last-child {
border-bottom: none;
}
.item-content {
justify-content: flex-end;
box-sizing: border-box;
}
}
.detail-container{
position: relative;
box-sizing: border-box;
.detail-background-container{
box-sizing: border-box;
padding:0 10rpx;
position: absolute;
top:0rpx;
left:0;
width:100%;
height:100%;
.detail-background{
position: relative;
// top:10rpx;
left:0;
width:100%;
height:100%;
z-index: 1;
background-color: #fff;
border: 2rpx solid #262626;
box-shadow: 1rpx 4rpx 6rpx 0rpx rgba(103,131,131,0.3);
border-radius: 50rpx;
}
}
.detail-content-container{
position: relative;
z-index: 2;
padding:15rpx 0;
.detail-content{
border: 2rpx solid #262626;
border-radius: 50rpx;
background-color:#fff;
padding:40rpx;
}
}
.detail-container{
position: relative;
box-sizing: border-box;
.detail-background-container{
box-sizing: border-box;
padding:0 10rpx;
position: absolute;
top:0rpx;
left:0;
width:100%;
height:100%;
.detail-background{
position: relative;
// top:10rpx;
left:0;
width:100%;
height:100%;
z-index: 1;
background-color: #fff;
border: 2rpx solid #262626;
box-shadow: 1rpx 4rpx 6rpx 0rpx rgba(103,131,131,0.3);
border-radius: 50rpx;
}
}
.detail-content-container{
position: relative;
z-index: 2;
padding:15rpx 0;
.detail-content{
border: 2rpx solid #262626;
border-radius: 50rpx;
background-color:#fff;
padding:40rpx;
}
}
}
}

127
pages/Pet/create.vue

@ -0,0 +1,127 @@
<template>
<view class="body-background" :style="{
backgroundImage:'url('+staticImage.wallpaperBgImage+')'
}"></view>
<HeaderNav :title="title" :is-back="true"></HeaderNav>
<view class="app-wallpaper">
<view class="detail-container">
<view class="detail-content-container">
<view class="detail-content">
<PetPage></PetPage>
</view>
</view>
<view class="detail-background-container">
<view class="detail-background"></view>
</view>
</view>
</view>
<view class="right-nav row">
<view class="right-nav-button col-12" :style="{backgroundImage:'url('+staticImage.addPet+')'}"></view>
</view>
<!-- <RightNav></RightNav> -->
</template>
<script>
import {
imghost
} from '@/config/host.js'
import HeaderNav from '@/components/HeaderNav/Index.vue';
import FooterNav from '@/components/FooterNav/Index.vue';
import RightNav from '@/components/RightNav/Index.vue';
import MzButton from '@/components/MzButton/Index.vue';
import api from '@/utils/functions.js';
import {getMyPets} from "@/api/pet";
import PetPage from '../../components/PetPage/Index.vue';
export default {
components: {
PetPage,
HeaderNav,
FooterNav,
RightNav,
MzButton
},
data() {
return {
title: '',
loading: true,
staticImage: {
screenActiveImg: imghost + '/static/image/order-screen-active.png',
orderCardBackground: imghost + '/static/image/order-card-background.png',
wallpaperBgImage:imghost +'/static/image/background.png',
petGun:imghost +'/static/image/pet_gun.png',
addPet:imghost +'/static/image/add-pet.png',
},
indexBanner: [{
image: imghost + '/static/image/banner.png',
url: '',
}],
user: {
avatar: imghost + '/static/image/banner.png',
nickname: '清晨的风',
coupons: 221,
id: 88685
},
isTop: false,
pagePadding: 100,
currentPage:1,
petImage: imghost + '/static/image/pet_avatar1.jpeg',
petList:[],
status:"loadmore",
type:"create",
}
},
onLoad(option) {
this.type = option.id ?"edit": "create";
this.id = option.id || 0;
if(this.id !== 0){
this.title = '修改萌宠';
}else{
this.title = '添加萌宠';
}
this.getMyPets();
},
methods: {
navTo(url){
uni.navigateTo({
url:url
})
},
getMyPets(page = 1){
if (this.status === 'nomore') {
return;
}
this.status = 'loading';
getMyPets(page).then(data => {
if (page === 1){
this.petList = data.data;
}else{
this.petList.push.apply(this.petList,data.data);
}
if (data.data.length < 10) {
this.status = 'nomore';
}
});
}
},
onReachBottom() {
this.getMyPets(++this.currentPage);
},
onPageScroll(res) {
if(res.scrollTop <= 20){
uni.$emit('isTop', true);
}else{
uni.$emit('isTop', false);
}
},
created() {
this.pagePadding = (api.navHeight().navPaddingTop +
api.navHeight().navHeight + (api.navHeight().headerPadding * 2))
}
}
</script>
<style lang="scss">
@import './components/create.scss';
</style>

2
pages/Pet/index.vue

@ -44,7 +44,7 @@
</view> </view>
<view class="right-nav row"> <view class="right-nav row">
<view class="right-nav-button col-12" :style="{backgroundImage:'url('+staticImage.addPet+')'}"></view> <view class="right-nav-button col-12" :style="{backgroundImage:'url('+staticImage.addPet+')'}" @click="navTo('/pages/Pet/create')"></view>
</view> </view>
<!-- <RightNav></RightNav> --> <!-- <RightNav></RightNav> -->
</template> </template>

41
pages/UserCoupons/index.vue

@ -4,7 +4,7 @@
backgroundImage:'url('+staticImage.wallpaperBgImage+')' backgroundImage:'url('+staticImage.wallpaperBgImage+')'
}"> }">
<view class="capsule-container row"> <view class="capsule-container row" v-if="type === 'lists'">
<view class="capsule col-6 active"> <view class="capsule col-6 active">
省点银子 省点银子
</view> </view>
@ -37,16 +37,18 @@
<view class="coupons-bottom col-12 row"> <view class="coupons-bottom col-12 row">
<view class="coupons-rule row col">查看使用规则 <u-icon class="arrow-right" size="24rpx" color="#999999" name="arrow-right"></u-icon></view> <view class="coupons-rule row col">查看使用规则 <u-icon class="arrow-right" size="24rpx" color="#999999" name="arrow-right"></u-icon></view>
<view class="coupons-button"> <view class="coupons-button">
<MzButton title="立即使用" <MzButton
button-width="145rpx" title="立即使用"
:button-color="item.is_timeout?'#CACACA':'#4DC3B8'" @click="clickCoupons(item)"
font-color="#fff" button-width="145rpx"
font-size="26rpx" :button-color="item.is_timeout?'#CACACA':'#4DC3B8'"
:is-background="false" font-color="#fff"
padding-tb="2rpx" font-size="26rpx"
:btn-style="{ :is-background="false"
boxShadow:(item.is_timeout?'2rpx -5rpx 0rpx 0rpx rgba(199,199,199,0.35)':'2rpx -5rpx 0rpx 0rpx rgba(77,195,184,0.35)') padding-tb="2rpx"
}"></MzButton> :btn-style="{
boxShadow:(item.is_timeout?'2rpx -5rpx 0rpx 0rpx rgba(199,199,199,0.35)':'2rpx -5rpx 0rpx 0rpx rgba(77,195,184,0.35)')
}"></MzButton>
</view> </view>
</view> </view>
</view> </view>
@ -118,13 +120,22 @@
cause: '满0.01使用', cause: '满0.01使用',
time: '有效期至2023.08.02', time: '有效期至2023.08.02',
is_timeout: false, is_timeout: false,
}, ] }, ],
type:'lists',
} }
}, },
onLoad() { onLoad(option) {
this.type = option.type||'lists'
console.log(this.type)
}, },
methods: { methods: {
clickCoupons(item){
if(!item.is_timeout){
uni.setStorageSync('userCoupons',item);
uni.navigateBack();
}
},
navTo(url){ navTo(url){
uni.navigateTo({ uni.navigateTo({
url:url url:url
@ -140,7 +151,7 @@
title:row.title, title:row.title,
time: '有效期至 '+row.end_time, time: '有效期至 '+row.end_time,
cause:'满'+parseFloat(row.min_price)+'使用', cause:'满'+parseFloat(row.min_price)+'使用',
is_timeout: (row.status == 2), is_timeout: (row.status === 2),
} }
}) })
}) })

Loading…
Cancel
Save