Browse Source

修复问题,

按需求新增内容
master
396316021 2 years ago
parent
commit
1d74e1f824
  1. 20
      api/coupons.js
  2. 2
      components/HeaderNav/components/index.scss
  3. 1
      components/HeaderNav/index.vue
  4. 101
      components/PetPage/index.vue
  5. 3
      components/RightNav/components/index.scss
  6. 7
      pages.json
  7. 8
      pages/Addr/index.vue
  8. 147
      pages/Coupons/components/index.scss
  9. 274
      pages/Coupons/index.vue
  10. 6
      pages/Draw/index.vue
  11. 16
      pages/FeedLog/index.vue
  12. 2
      pages/Index/components/HomePage/components/index.scss
  13. 29
      pages/Index/components/HomePage/index.vue
  14. 15
      pages/Index/components/OrderPage/index.vue
  15. 10
      pages/Index/index.vue
  16. 22
      pages/OrderDetail/index.vue
  17. 87
      pages/OrderPage/index.vue
  18. 4
      pages/Pet/index.vue
  19. 6
      pages/PetDetail/index.vue
  20. 4
      pages/UserDetail/index.vue
  21. 8
      pages/UserOrderPage/index.vue
  22. 1
      uview-plus/index.scss

20
api/coupons.js

@ -0,0 +1,20 @@
import request from "@/utils/request.js";
import {host} from "@/config/host.js";
export function couponsList(data) {
return request({
url: `${host}/coupons/coupons-list`,
method: "get",
data
});
}
export function obtainCoupons(data) {
return request({
url: `${host}/coupons/get-coupons`,
method: "post",
data
});
}

2
components/HeaderNav/components/index.scss

@ -7,7 +7,7 @@
background:{
color:#ffffff;
}
position: sticky;
position: fixed;
width:100%;
top:0;
z-index:9999;

1
components/HeaderNav/index.vue

@ -1,4 +1,5 @@
<template>
<view class="safe-header" :style="{height:navPaddingTop+navHeight+'px'}"></view>
<view class="header" :class="{top:isTop}" :style="{
paddingTop:navPaddingTop+'px',
}">

101
components/PetPage/index.vue

@ -14,28 +14,28 @@
</view>
<view class="item-content row col">
<view class="item-content-text">
<u-input v-model="data.name" inputAlign="right" placeholder="请输入"></u-input>
<u-input border="none" v-model="data.name" inputAlign="right" placeholder="请输入"></u-input>
</view>
</view>
</view>
<view class="order-item row">
<view class="item-title">
宝贝品种
<text style="color: red;">*</text>宝贝品种
</view>
<view class="item-content row col">
<view class="item-content-text">
<u-input v-model="data.type_name" inputAlign="right" placeholder="请输入"></u-input>
<u-input border="none" v-model="data.type_name" inputAlign="right" placeholder="请输入"></u-input>
</view>
</view>
</view>
<view class="order-item row">
<view class="item-title">
宝贝体重(KG)
<text style="color: red;">*</text> 宝贝体重(KG)
</view>
<view class="item-content row col">
<view class="item-content-text">
<u-number-box v-model="data.weight" :min="1" :max="1000" button-size="36" inputWidth="50" buttonSize="50"></u-number-box>
<u-number-box border="none" v-model="data.weight" :min="1" :max="1000" button-size="36" inputWidth="50" buttonSize="50"></u-number-box>
</view>
</view>
</view>
@ -129,9 +129,27 @@
</view>
</view>
</view>
<view class="order-item row">
<view class="item-title">
<text style="color: red;">*</text>健康状况
</view>
<view class="item-content row col">
<view class="item-content-text">
<u-text
suffix-icon="arrow-right"
:text="data.is_health_name || '请选择'"
size="28"
color="#636363"
icon-style="font-size:30"
line-height="30"
@click="$refs.pickerHealth.open()"
></u-text>
</view>
</view>
</view>
<view class="order-item row">
<view class="item-title" style="padding-bottom:30rpx;">
过往病史
<text style="color: red;">*</text>过往病史 <text style="color: #999;font-size:26rpx;">(无请输入"无")</text>
</view>
<view class="item-content row">
<view class="item-content-text row">
@ -142,6 +160,43 @@
color="#636363"
line-height="30"
height="100"
border="none"
></u-textarea>
</view>
</view>
</view>
<view class="order-item row">
<view class="item-title" style="padding-bottom:30rpx;">
<text style="color: red;">*</text>攻击性行为 <text style="color: #999;font-size:26rpx;">(无请输入"无")</text>
</view>
<view class="item-content row">
<view class="item-content-text row">
<u-textarea
placeholder="请输入"
v-model="data.attack"
size="28"
color="#636363"
line-height="30"
height="100"
border="none"
></u-textarea>
</view>
</view>
</view>
<view class="order-item row">
<view class="item-title" style="padding-bottom:30rpx;">
其他
</view>
<view class="item-content row">
<view class="item-content-text row">
<u-textarea
placeholder="请输入"
v-model="data.other"
size="28"
color="#636363"
line-height="30"
height="100"
border="none"
></u-textarea>
</view>
</view>
@ -335,18 +390,19 @@
<uv-datetime-picker
:value="data.last_vaccine_time"
ref="vaccinePicker"
mode="date"
mode="year-month"
minDate="1970-01-01"
@confirm="vaccineConfirm"
></uv-datetime-picker>
<uv-datetime-picker
:value="data.last_insect_repellent_time"
ref="insectRepellentPicker"
mode="date"
mode="year-month"
minDate="1970-01-01"
@confirm="insectRepellentConfirm"
></uv-datetime-picker>
<uv-picker :columns="[homeList]" ref="pickerHome" key-name="name" title="是否有户口" round="20rpx" @confirm="homeSelect"></uv-picker>
<uv-picker :columns="[homeList]" ref="pickerHealth" key-name="name" title="是否健康" round="20rpx" @confirm="healthSelect"></uv-picker>
<uv-picker :columns="[sexList]" ref="pickerSex" key-name="name" title="宝贝性别" round="20rpx" @confirm="sexSelect"></uv-picker>
<uv-popup ref="popup" style="position: relative;" :is-mask-click="false" round="20" mode="bottom" closeable safe-area-inset-bottom safe-area-inset-top>
<view class="pet-list" style="padding:30rpx;max-height:50vh;overflow: auto;">
@ -603,13 +659,17 @@
sex:0,
is_home:0,
is_home_name:'否',
is_health:0,
is_health_name:'否',
birthday:'',
last_vaccine_time:'',
last_insect_repellent_time:'',
avatar:'',
video:'',
images:'',
background_image:''
background_image:'',
other:'',
attack:'',
},
videoList:[],
imagesList:[],
@ -618,13 +678,8 @@
}
},
mounted() {
let date = new Date();
let today = ''+date.getFullYear();
today += '-'+ (date.getMonth() + 1);
today += '-'+ date.getDate();
console.log(today)
console.log(date.getMonth())
this.data.birthday = this.data.last_vaccine_time = this.data.last_insect_repellent_time = today;
this.data.birthday = uni.$u.timeFormat(null,'yyyy-mm-dd');
this.data.last_insect_repellent_time = this.data.last_vaccine_time = uni.$u.timeFormat(null,'yyyy-mm');
if(this.petId!==0){
this.getDetail(this.petId)
}
@ -684,9 +739,9 @@
getDetail(id){
getDetail(id).then(res => {
this.data = res.data;
this.data.birthday = this.data.birthday.substr(0, 10);
this.data.last_vaccine_time = this.data.last_vaccine_time.substr(0, 10);
this.data.last_insect_repellent_time = this.data.last_insect_repellent_time.substr(0, 10);
this.data.birthday = uni.$u.timeFormat(this.data.birthday,'yyyy-mm-dd');
this.data.last_vaccine_time = uni.$u.timeFormat(this.data.last_vaccine_time,'yyyy-mm');
this.data.last_insect_repellent_time = uni.$u.timeFormat(this.data.last_insect_repellent_time,'yyyy-mm');
this.sexList.forEach(res=>{
if(res.value===this.data.sex){
this.data.sex_name = res.name;
@ -831,6 +886,10 @@
this.data.is_home_name = e.value[0].name;
this.data.is_home = e.value[0].value;
},
healthSelect(e){
this.data.is_health_name = e.value[0].name;
this.data.is_health = e.value[0].value;
},
sexSelect(e){
this.data.sex_name = e.value[0].name;
this.data.sex = e.value[0].value;
@ -851,10 +910,10 @@
this.data.birthday = uni.$u.timeFormat(e.value, 'yyyy-mm-dd');
},
vaccineConfirm(e){
this.data.last_vaccine_time = uni.$u.timeFormat(e.value, 'yyyy-mm-dd');
this.data.last_vaccine_time = uni.$u.timeFormat(e.value, 'yyyy-mm');
},
insectRepellentConfirm(e){
this.data.last_insect_repellent_time = uni.$u.timeFormat(e.value, 'yyyy-mm-dd');
this.data.last_insect_repellent_time = uni.$u.timeFormat(e.value, 'yyyy-mm');
},
selectPetType(value){
this.data.type = value;

3
components/RightNav/components/index.scss

@ -16,4 +16,7 @@ button{
&:after{
border:none;
}
&:active{
background: none;
}
}

7
pages.json

@ -151,6 +151,13 @@
"navigationBarTitleText": "进入帮填",
"enablePullDownRefresh": true
}
},
{
"path": "pages/Coupons/index",
"style": {
"navigationBarTitleText": "优惠券",
"enablePullDownRefresh": true
}
}
],
"globalStyle": {

8
pages/Addr/index.vue

@ -9,12 +9,12 @@
<uni-swipe-action v-for="(item, index) in addrList" wx:key="index" style="width:100%;">
<uni-swipe-action-item :right-options="options1" style="width:100%;">
<view class="addr-list-item-container" @click="(type === 'select')?navBack(item):''">
<view class="addr-list-item-container">
<view class="addr-list-item row" :style="{backgroundImage:'url('+staticImage.addrBg+')'}">
<view class="addr-list-content row">
<view class="addr-title-group row">
<view class="addr-title">{{item.name}}</view>
<view class="addr-phone">{{item.phone}}</view>
<view class="addr-title" @click="(type === 'select')?navBack(item):''">{{item.name}}</view>
<view class="addr-phone" @click="(type === 'select')?navBack(item):''">{{item.phone}}</view>
<view class="addr-edit" @click="navTo('/pages/AddrDetail/index?id=' + item.id)">
<image class="img" :src="staticImage.addrEdit" mode="aspectFit" />
</view>
@ -23,7 +23,7 @@
<view class="addr-icon">
<image class="img" :src="staticImage.addrIcon" mode="aspectFit" />
</view>
<view class="addr-desc col">
<view class="addr-desc col" @click="(type === 'select')?navBack(item):''">
{{item.province}} {{ item.city }} {{ item.district }} {{ item.info }}
</view>
</view>

147
pages/Coupons/components/index.scss

@ -0,0 +1,147 @@
.app-wallpaper{
position: relative;
background:{
size: 100% 100%;
repeat: no-repeat;
};
padding-bottom:50rpx;
.capsule-container{
position: sticky;
box-sizing: border-box;
width:100%;
padding:10rpx;
border:2rpx solid #262626;
border-radius: 45rpx;
box-shadow: 1rpx 4rpx 12rpx 0rpx rgba(90,104,103,0.24);
background-color: #F8FAFA;
.capsule{
box-sizing: border-box;
padding:20rpx;
text-align: center;
font: {
size:30rpx;
weight:500;
}
line-height:30rpx;
border:2rpx solid rgba(0,0,0,0);
&.active{
background:{
color:#4DC3B8;
}
color:#FFFFFF;
border:2rpx solid #262626;
border-radius:35rpx;
}
}
}
.coupons-list{
margin-top:30rpx;
margin-left:-15rpx;
margin-right:-30rpx;
.coupons-item-container{
padding:{
bottom:7rpx;
}
background:{
size: 100% 100%;
repeat: no-repeat;
};
.coupons-item{
box-sizing: border-box;
height:226rpx;
padding:{
top:28rpx;
bottom:46rpx;
left:10rpx;
right:59rpx;
}
.coupons-left{
width:220rpx;
padding-top:10rpx;
.coupons-big-title-group{
align-items: flex-end;
justify-content: center;
.coupons-big-title{
text-align: center;
font-size: 90rpx;
font-family: Source Han Sans CN;
font-weight: 800;
color: #FFFFFF;
line-height: 1;
text-shadow: 0rpx 0rpx 14rpx rgba(209,145,70,0.21);
}
.coupons-big-desc{
font-size: 32rpx;
font-family: Source Han Sans CN;
font-weight: bold;
color: #FFFFFF;
line-height: 70rpx;
text-shadow: 0rpx 0rpx 14rpx rgba(209,145,70,0.21);
}
}
.coupons-cause{
margin-top:15rpx;
text-align: center;
font-size: 26rpx;
font-family: Source Han Sans CN;
font-weight: 400;
color: #FFFFFF;
}
}
.coupons-right{
padding:0 0 0 30rpx;
justify-content: space-between;
.coupons-gq{
width:80rpx;
height:80rpx;
.img{
width:75rpx;
height:75rpx;
}
}
.coupons-title{
font-size: 30rpx;
font-weight: 500;
color: #161616;
}
.coupons-desc{
margin:7rpx 0;
font-size: 24rpx;
font-weight: 400;
color: #999999;
}
.coupons-bottom{
border-top: 1px solid #F0F1F6;
align-items: center;
justify-content: space-between;
margin:15rpx 0;
.coupons-rule{
font-size: 24rpx;
font-weight: 400;
color: #999999;
.u-icon{
margin-left:3rpx;
position: relative;
top:2rpx;
flex-direction: row;
align-items: center;
}
}
.coupons-button{
padding:10rpx;
font-size: 26rpx;
font-weight: 500;
color: #FFFFFF;
line-height: 30rpx;
text-shadow: 0rpx 3rpx 2rpx rgba(77,195,184,0.16);
}
}
}
}
}
}
}

274
pages/Coupons/index.vue

@ -0,0 +1,274 @@
<template>
<HeaderNav title="优惠在这" :is-back="true" :nav-to-url="navToUrl"></HeaderNav>
<view class="app-wallpaper" :style="{
backgroundImage:'url('+staticImage.wallpaperBgImage+')'
}">
<view class="capsule-container row">
<view class="capsule" :class="{active:item.value === couponType,'col-6':(types.length >1),'col-12':(types.length === 1)}" @click="couponTypeToggle(item)" v-for="item in types">
{{ item.title }}
</view>
</view>
<view class="coupons-list" v-if="type === 'lists'">
<view v-for="item in couponsList" class="coupons-item-container" :style="{
backgroundImage:'url('+((item.status > 0)?staticImage.couponsGrayBackground:staticImage.couponsBackground)+')'
}">
<view class="coupons-item row">
<view class="coupons-left ">
<view class="coupons-big-title-group row">
<view class="coupons-big-title">{{item.price}}</view>
<view class="coupons-big-desc"></view>
</view>
<view class="coupons-cause">
{{item.type_name}}
</view>
</view>
<view class="coupons-right col row">
<view class=" ">
<view class="coupons-title col-12">{{item.title}}</view>
<view class="coupons-desc col-12">
<text v-if="item.number !== 0 && item.number !== -1">剩余:</text>
<text v-if="item.number === 0">不限数量</text>
<text v-if="item.number !== 0 && item.number !== -1">{{item.number}}</text>
<text v-if="item.number === -1">已领取完</text>
<text v-if="item.number !== 0 && item.number !== -1"></text>
</view>
</view>
<view class="coupons-gq " v-show="item.status === 2">
<image class="img" :src="staticImage.couponsGQ" mode="aspectFill" />
</view>
<view class="coupons-gq " v-show="item.status === 1">
<image class="img" :src="staticImage.couponsUse" mode="aspectFill" />
</view>
<view class="coupons-bottom col-12 row">
<view class="coupons-rule row col" @click="showCoupons(item)">查看使用规则 <u-icon class="arrow-right" size="24rpx" color="#999999" name="arrow-right"></u-icon></view>
<view class="coupons-button">
<MzButton
title="立即领取"
@click="clickCoupons(item)"
button-width="145rpx"
:button-color="(item.status > 0 || item.number === -1)?'#CACACA':'#4DC3B8'"
font-color="#fff"
font-size="26rpx"
:is-background="false"
padding-tb="2rpx"
:btn-style="{
boxShadow:((item.status > 0 || item.number === -1)?'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>
<u-loadmore v-if="type === 'lists'"
:status="status" fontSize="28"
color="#ACB4B6"
line
line-color="#ACB4B6"
marginBottom="30" marginTop="30" @loadmore="getCouponsList(++this.page)"/>
<Draw v-if="type === 'draw'"></Draw>
</view>
<uv-popup ref="agreement" mode="bottom" round="20rpx" 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 style="padding:30rpx;max-height:700rpx;overflow: auto;" v-if="couponsContent!==''">
<u-parse :content="couponsContent"></u-parse>
</view>
</uv-popup>
<!-- <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 Draw from '@/pages/Draw/index.vue';
import {userCoupons, userDetail, userExtends} from "../../api/user";
import {getConfig} from "@/api/other";
import {couponsList, obtainCoupons} from "@/api/coupons";
import {drawList} from "@/api/draw";
import {error} from "@/uni_modules/uv-ui-tools/libs/function";
import api from "@/utils/functions";
import {UserCache} from "@/config/config";
export default {
components: {
HeaderNav,
FooterNav,
RightNav,
MzButton,
Draw
},
data() {
return {
title: 'Hello',
loading: true,
staticImage: {
screenActiveImg: imghost + '/order-screen-active.png',
orderCardBackground: imghost + '/order-card-background.png',
wallpaperBgImage: imghost + '/background.png',
couponsBackground: imghost + '/coupons-bg.png',
couponsGrayBackground: imghost + '/coupons-gray-bg.png',
couponsGQ: imghost + '/coupons-gq.png',
couponsUse: imghost + '/coupons-use.png',
},
indexBanner: [{
image: imghost + '/banner.png',
url: '',
}],
user: {
avatar: imghost + '/banner.png',
nickname: '清晨的风',
coupons: 221,
id: 88685
},
isTop: false,
pagePadding: 100,
petImage: imghost + '/pet_avatar1.jpeg',
couponsList: [ ],
type:'lists',
couponType:2,
types:[
{title:'省点银子', value: 2},
],
page:1,
status:'loadmore',
navToUrl:'',
couponsContent:'',
}
},
onLoad(option) {
this.type = option.type||'lists'
console.log(this.type)
this.navToUrl = option.url || ''
},
methods: {
getDrawList(){
drawList().then(data => {
if(data.data.goodslists.length > 0){
this.types = [
{title:'省点银子', value: 2},
{title:'宝藏挖掘机', value: 1},
];
}
});
},
showCoupons(item){
console.log(item)
console.log(item.use_info)
this.couponsContent = item.use_info;
this.$refs.agreement.open();
},
clickCoupons(item){
if(item.number !== -1){
obtainCoupons({
coupons_id:item.id,
number:1
}).then(res => {
api.success('领取成功')
userExtends().then(res => {
this.$store.commit('userExtends', UserCache.extSetAndReturn(res.data));
})
}).catch(err => {
api.error(err.msg)
})
}
},
navTo(url){
uni.navigateTo({
url:url
})
},
getCouponsList(page = 1){
if (this.status === 'nomore'){
return;
}else{
this.status = 'loading';
}
couponsList({
page:page,
limit:10,
is_buy:this.couponType
}).then((res) => {
let couponsList = res.data.map((row) => {
let type_name;
switch (row.type){
case 1:
type_name = '满减券';
break;
case 2:
type_name = '折扣券';
break;
case 3:
type_name = '抵扣券';
break;
}
return {
id:row.id,
price:parseFloat(row.deduction),
title:row.title,
type_name: type_name,
number: row.number,
cause:'满'+parseFloat(row.min_price)+'使用',
status: row.status,
use_info: row.use_info,
}
});
this.status = couponsList.length < 10 ? 'nomore' : 'loadmore';
if (page === 1) {
this.couponsList = couponsList;
return;
}
this.couponsList.push(...couponsList);
})
},
couponTypeToggle(item){
this.couponType = item.value;
this.page = 1;
this.status = 'loadmore';
if(item.value === 1){
this.type = 'draw';
return;
}else{
this.type = 'lists';
}
this.getCouponsList();
}
},
onPageScroll(res) {
if (res.scrollTop <= 20) {
uni.$emit('isTop', true);
} else {
uni.$emit('isTop', false);
}
},
onReachBottom() {
this.getCouponsList(++this.page);
},
created() {
// this.pagePadding = (api.navHeight().navPaddingTop +
// api.navHeight().navHeight + (api.navHeight().headerPadding * 2))
},
mounted() {
this.getCouponsList();
this.getDrawList();
}
}
</script>
<style lang="scss">
@import './components/index.scss';
</style>

6
pages/Draw/index.vue

@ -1,5 +1,5 @@
<template>
<HeaderNav title="惊喜抽抽抽" :is-back="true"></HeaderNav>
<!-- <HeaderNav title="惊喜抽抽抽" :is-back="true"></HeaderNav>-->
<view class="body-background" :style="{
backgroundImage:'url('+staticImage.wallpaperBgImage+')'
}"></view>
@ -149,7 +149,7 @@ export default {
}
},
onLoad() {
this.getDrawList();
},
methods: {
navTo(url) {
@ -278,7 +278,7 @@ export default {
// api.navHeight().navHeight + (api.navHeight().headerPadding * 2))
},
mounted() {
this.getDrawList();
}
}
</script>

16
pages/FeedLog/index.vue

@ -46,7 +46,7 @@
name="collapse"
title="水碗饭碗"
>
<u-textarea :disabled="(type !== 'create')" v-model="detail.feedlist.meal" placeholder="请输入内容" ></u-textarea>
<u-textarea border="none" :disabled="(type !== 'create')" v-model="detail.feedlist.meal" placeholder="请输入内容" ></u-textarea>
<u-upload
:fileList="images.meal_imgs"
name="1"
@ -68,7 +68,7 @@
name="collapse"
title="主食情况"
>
<u-textarea :disabled="(type !== 'create')" v-model="detail.feedlist.food" placeholder="请输入内容" ></u-textarea>
<u-textarea border="none" :disabled="(type !== 'create')" v-model="detail.feedlist.food" placeholder="请输入内容" ></u-textarea>
<u-upload
:fileList="images.food_imgs"
name="1"
@ -90,7 +90,7 @@
name="collapse"
title="零食小吃"
>
<u-textarea :disabled="(type !== 'create')" v-model="detail.feedlist.snack" placeholder="请输入内容" ></u-textarea>
<u-textarea border="none" :disabled="(type !== 'create')" v-model="detail.feedlist.snack" placeholder="请输入内容" ></u-textarea>
<u-upload
:fileList="images.snack_imgs"
name="1"
@ -112,7 +112,7 @@
name="collapse"
title="喂药擦药"
>
<u-textarea :disabled="(type !== 'create')" v-model="detail.feedlist.drug" placeholder="请输入内容" ></u-textarea>
<u-textarea border="none" :disabled="(type !== 'create')" v-model="detail.feedlist.drug" placeholder="请输入内容" ></u-textarea>
<u-upload
:fileList="images.drug_imgs"
name="1"
@ -134,7 +134,7 @@
name="collapse"
title="需要注意"
>
<u-textarea :disabled="(type !== 'create')" v-model="detail.feedlist.note" placeholder="请输入内容" ></u-textarea>
<u-textarea border="none" :disabled="(type !== 'create')" v-model="detail.feedlist.note" placeholder="请输入内容" ></u-textarea>
<u-upload
:fileList="images.note_imgs"
name="1"
@ -156,7 +156,7 @@
name="collapse"
title="用品位置"
>
<u-textarea :disabled="(type !== 'create')" v-model="detail.feedlist.goods" placeholder="请输入内容" ></u-textarea>
<u-textarea border="none" :disabled="(type !== 'create')" v-model="detail.feedlist.goods" placeholder="请输入内容" ></u-textarea>
<u-upload
:fileList="images.goods_imgs"
name="1"
@ -178,7 +178,7 @@
name="collapse"
title="外出路线"
>
<u-textarea :disabled="(type !== 'create')" v-model="detail.feedlist.line" placeholder="请输入内容" ></u-textarea>
<u-textarea border="none" :disabled="(type !== 'create')" v-model="detail.feedlist.line" placeholder="请输入内容" ></u-textarea>
<u-upload
:fileList="images.line_imgs"
name="1"
@ -200,7 +200,7 @@
name="collapse"
title="其它事项"
>
<u-textarea :disabled="(type !== 'create')" v-model="detail.feedlist.other" placeholder="请输入内容" ></u-textarea>
<u-textarea border="none" :disabled="(type !== 'create')" v-model="detail.feedlist.other" placeholder="请输入内容" ></u-textarea>
<u-upload
:fileList="images.other_imgs"
name="1"

2
pages/Index/components/HomePage/components/index.scss

@ -17,7 +17,7 @@
}
background: {
image: url("http://live.admin.jinghkb.com/banner-backgrond.png");
size: 100% 100%;
repeat: no-repeat;
}

29
pages/Index/components/HomePage/index.vue

@ -2,7 +2,7 @@
<view class="app-wallpaper" :style="{
backgroundImage:'url('+staticImage.wallpaperBgImage+')'
}">
<view class="index-banner">
<view class="index-banner" :style="{backgroundImage:'url('+staticImage.bannerBack+')'}">
<view class="index-banner-container" >
<view class="" style="border:4rpx solid #3F3F3F;border-radius: 25rpx;overflow: hidden;">
<u-swiper height="600" :list="indexBanner"></u-swiper>
@ -19,8 +19,11 @@
<view class="user-title-top row">
<u-image class="img" height="35" width="83" mode="heightFix"
:src="staticImage.hiImage"></u-image>
<view class="user-title-text">
<u-text :text="userInfo.name" color="#131313" size="30" custom-style="display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1;overflow: hidden;max-width:200rpx;"></u-text>
<view class="user-title-text" style="display: block;">
<!-- <view class="" style="color:#131313;font-size: 30rpx;max-width:200rpx;white-space:nowrap;overflow:hidden;text-overflow: ellipsis;">-->
<!-- {{userInfo.name}}-->
<!-- </view>-->
<u-text :text="userInfo.name" lines="1" color="#131313" size="30rpx" custom-style="max-width:200rpx;max-height:30rpx;"></u-text>
</view>
</view>
<view class="user-title-bottom">
@ -69,14 +72,16 @@ import {
} from '@/config/host.js'
import api from '@/utils/functions.js';
import log from "@/utils/log";
import {userExtends} from "@/api/user";
import {userDetail, userExtends} from "@/api/user";
import {getConfig} from "@/api/other";
import {UserCache} from "@/config/config";
export default {
data: {
title: 'Hello',
loading: true,
staticImage: {
bannerBack:imghost + '/banner-backgrond.png',
indexUserBack:imghost + '/index-user-banner-background.png',
hiImage: imghost + '/index-user-title-hi.png',
dogImage: imghost + '/index-user-title-dog.png',
@ -87,8 +92,13 @@ export default {
backgroundImage: imghost + '/index-button-one.png',
serviceImage: imghost + '/index-button-bg-one.png',
buttonImage: imghost + '/index-button-bg-btn-one.png',
url: '/pages/OrderPage/index'
}, {
url: '/pages/OrderPage/index?type=1'
}, {
backgroundImage: imghost + '/index-button-five.png',
serviceImage: imghost + '/index-button-bg-five.png',
buttonImage: imghost + '/index-button-bg-btn-five.png',
url: '/pages/OrderPage/index?type=2'
},{
backgroundImage: imghost + '/index-button-two.png',
serviceImage: imghost + '/index-button-bg-two.png',
buttonImage: imghost + '/index-button-bg-btn-two.png',
@ -97,12 +107,7 @@ export default {
backgroundImage: imghost + '/index-button-three.png',
serviceImage: imghost + '/index-button-bg-three.png',
buttonImage: imghost + '/index-button-bg-btn-three.png',
url: '/pages/UserCoupons/index'
}, {
backgroundImage: imghost + '/index-button-four.png',
serviceImage: imghost + '/index-button-bg-four.png',
buttonImage: imghost + '/index-button-bg-btn-four.png',
url: '/pages/Draw/index'
url: '/pages/Coupons/index'
},
],
wallpaperBgImage: imghost + '/background.png'

15
pages/Index/components/OrderPage/index.vue

@ -47,19 +47,24 @@
<view class="order-card-left" @click="navTo('/pages/OrderDetail/index?id='+item.id)">
<image class="img" :src="item.pet_avatar" mode="aspectFill" />
</view>
<view class="order-card-right" @click="navTo('/pages/OrderDetail/index?id='+item.id)" style="max-width: 65%;">
<view class="order-card-right" @click="navTo('/pages/OrderDetail/index?id='+item.id)" style="max-width: 65%;box-sizing: border-box;">
<view class="order-card-title">
<!-- {{item.addr}}-->
<u-text :text="item.addr"
color="#131313" size="32"
custom-style="display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden;"></u-text>
color="#131313"
size="32"
:lines="1"
></u-text>
</view>
<view class="order-card-tag-container row">
<view class="order-card-tag" v-for="(server, i) in item.services" wx:key="i">{{ server }}</view>
</view>
<view class="order-card-day"><text class="card-label">上门</text>{{item.do_date}} {{ item.do_time }}
<view class="order-card-day row">
<text class="card-label">上门</text>
<u-text :text="item.do_date+' '+item.do_time" size="28" color="#767676" :lines="1"></u-text>
</view>
<view class="order-card-pay-time"><text class="card-label">下单时间</text>{{item.create_time}}
<view class="order-card-pay-time row"><text class="card-label">下单时间</text>
<u-text :text="item.create_time" size="28" color="#767676" :lines="1"></u-text>
</view>
</view>
<view class="order-card-bottom col-12 row" :class="{showDone:(item.status === 0)}">

10
pages/Index/index.vue

@ -29,6 +29,7 @@
import {imghost} from "@/config/host";
import {UserCache} from "@/config/config.js";
import log from "@/utils/log";
import {userDetail, userExtends} from "@/api/user";
export default {
components: {
FooterNav,
@ -77,6 +78,7 @@
},
onLoad(option) {
this.footSelect(option?.foot_check ?? 0);
this.showUserInfo();
},
methods: {
footSelect(index){
@ -98,6 +100,14 @@
this.show = false;
},
// store.
showUserInfo(){
userDetail().then(res => {
this.$store.commit('userInfo', UserCache.setAndReturn(res.data));
})
userExtends().then(res => {
this.$store.commit('userExtends', UserCache.extSetAndReturn(res.data));
})
}
},
onReachBottom() {
log(this.footCheck);

22
pages/OrderDetail/index.vue

@ -106,6 +106,28 @@
{{detail.no}}
</view>
</view>
<view class="content-item row" v-if="detail.lock_type_name">
<view class="item-icon">
<image class="img" mode="widthFix" :src="staticImage.petName"/>
</view>
<view class="item-title">
锁类型
</view>
<view class="item-content">
{{detail.lock_type_name}}
</view>
</view>
<view class="content-item row" v-if="detail.open_info">
<view class="item-icon">
<image class="img" mode="widthFix" :src="staticImage.petName"/>
</view>
<view class="item-title">
开锁方式
</view>
<view class="item-content">
{{detail.open_info}}
</view>
</view>
<view class="content-item row">
<view class="item-icon">
<image class="img" mode="widthFix" :src="staticImage.petName"/>

87
pages/OrderPage/index.vue

@ -11,10 +11,10 @@
backgroundImage:'url('+staticImage.addrBg+')'
}" @click="navTo('/pages/Addr/index?type=select')">
<view class="main-img">
<image mode="widthFix" class="img" :src="staticImage.addrAvatar"/>
<u-image mode="widthFix" width="85" height="85" class="img" :src="staticImage.addrAvatar"></u-image>
</view>
<view class="main-content">
<image mode="heightFix" class="img" :src="staticImage.addrFw"/>
<u-image mode="heightFix" class="img" :src="staticImage.addrFw" height="35rpx"></u-image>
<view class="main-content-text" style="max-width:300rpx;">
<u-text :text="address.info || '请输入具体地址'" color="#131313" size="30"></u-text>
</view>
@ -23,7 +23,7 @@
<view class="main-select-btn-gun"></view>
<view class="main-select-btn-content row">
<view class="content-img col-12">
<image mode="widthFix" class="img" :src="staticImage.addrBook"/>
<u-image mode="widthFix" class="img" :src="staticImage.addrBook" width="45" height="45" custom-style="margin:auto;"></u-image>
</view>
<view class="content-text col-12">
选择地址
@ -69,7 +69,7 @@
<view class="item-content row col">
<view class="item-content-tag" v-for="(item,index) in addServiceChecked" v-if="addServiceChecked.length !== 0">
<view class="tag-text">
{{item.name}}
{{item.name}} * {{item.number}}
</view>
<view class="tag-close" @click="delAddService(index)">
<u-image width="23" height="23" mode="heightFix" class="img" :src="staticImage.tagClose"></u-image>
@ -100,6 +100,22 @@
<u-icon name="arrow-right"></u-icon>
</view>
</view>
<view class="order-item row" @click="$refs.addTimePicker.open()">
<view class="item-title">
服务加时
</view>
<view class="item-content row col">
<view class="item-content-text" v-if="add_time>0">
{{add_time}}小时
</view>
<view class="item-content-text" v-else>
<u-text text="请选择服务时长" size="28" color="#636363"></u-text>
</view>
</view>
<view class="item-icon">
<u-icon name="arrow-right"></u-icon>
</view>
</view>
</view>
</view>
</view>
@ -254,27 +270,23 @@
v-for="(item,index) in addServiceList"
@click="selectAddService(index)"
>
<template #title>
<view>
<text style="font-size:32rpx;line-height: 40rpx;">{{item.name}}</text>
<text style="font-size:28rpx;line-height: 40rpx;color:#999999;padding:0 15rpx;">({{parseFloat(item.price)+'元'}})</text>
</view>
</template>
<template #value>
<view class="">
<view class="" style="display:flex;align-items: center">
<view class="">
<u-text :text="parseFloat(item.price)+'元'" size="32" style="white-space: nowrap;" line-height="32"></u-text>
</view>
<view class="">
<u-checkbox-group @change="addServiceChange">
<u-checkbox
:name="index"
:customStyle="{marginBottom: '0',marginTop: '0',marginLeft:'15rpx'}"
size="32"
:checked="item.checked"
activeColor="#4DC3B8"
iconSize="30"
>
</u-checkbox>
</u-checkbox-group>
</view>
<!-- <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>
</view>
</view>
</template>
</u-cell>
</u-cell-group>
@ -343,6 +355,7 @@
</view>
</uv-popup>
<!-- <RightNav></RightNav> -->
<uv-picker ref="addTimePicker" :columns="addTimeLists" keyName="label" @confirm="addTimeConfirm"></uv-picker>
</template>
<script>
@ -384,6 +397,22 @@
},
radioValue1:[],
list: ['未付款', '待评价', '已付款'],
addTimeLists: [
[
{label:'1小时',value:1},
{label:'2小时',value:2},
{label:'3小时',value:3},
{label:'4小时',value:4},
{label:'5小时',value:5},
{label:'6小时',value:6},
{label:'7小时',value:7},
{label:'8小时',value:8},
{label:'9小时',value:9},
{label:'10小时',value:10},
{label:'11小时',value:11},
{label:'12小时',value:12},
]
],
curNow: 0,
id:'',
title: 'Hello',
@ -441,10 +470,13 @@
basicServiceChecked:'',
feedPolicy:'',
isPay:false,
type:1,
add_time:0,
}
},
onLoad(options) {
this.id = options.id;
this.type = options.type || 1;
},
updated() {
@ -456,6 +488,9 @@
}
},
methods: {
addTimeConfirm(e){
this.add_time = e.value[0].value;
},
addServiceChange(e){
this.addServiceList[e].checked = !this.addServiceList[e].checked;
},
@ -470,6 +505,7 @@
this.isPay = true;
console.log(this.basicServiceChecked)
createOrderPrice({
order_type:this.type,
address_id: this.address.id,
do_date: this.timeList.map(res => [res.date,res.time]),
services: this.addServiceChecked.map(res => res.id).join(','),
@ -517,6 +553,7 @@
){
console.log(this.basicServiceChecked)
getOrderPrice({
order_type:this.type,
address_id: this.address.id,
do_date: this.timeList.map(res => [res.date,res.time]),
services: this.addServiceChecked.map(res => res.id).join(','),
@ -585,7 +622,7 @@
addServiceConfirm(){
let list = [];
this.addServiceList.map(item => {
if(item.checked){
if(item.number>0){
list.push(item);
}
})
@ -598,9 +635,9 @@
this.checkOrderData();
},
getStoreServiceList(){
getStoreService({address_id: this.address.id}).then(res => {
getStoreService({address_id: this.address.id,order_type:1}).then(res => {
this.addServiceList = res.data.add_service.map(item => {
item.checked = false;
item.number = 0;
return item;
});

4
pages/Pet/index.vue

@ -54,9 +54,9 @@
<!-- </MzButton>-->
<!-- </view>-->
<view class="footer-button col-12"
@click="navTo('/pages/Pet/index')">
@click="navTo('/pages/Pet/create')">
<MzButton
title="新增地址"
title="新增萌宠"
button-color="#4DC3B8"
font-color="#FFFFFF"
button-width="100%"

6
pages/PetDetail/index.vue

@ -74,7 +74,7 @@
出生日期
</view>
<view class="item-content">
{{ pet.birthday.substr(0, 10) }}
{{ $u.timeFormat(pet.birthday, 'yyyy-mm-dd') }}
</view>
</view>
@ -100,7 +100,7 @@
最近狂犬疫苗时间
</view>
<view class="item-content">
{{ pet.last_vaccine_time.substr(0, 10) }}
{{ $u.timeFormat(pet.last_vaccine_time, 'yyyy-mm') }}
</view>
</view>
@ -112,7 +112,7 @@
最近驱虫时间
</view>
<view class="item-content">
{{ pet.last_insect_repellent_time.substr(0, 10) }}
{{ $u.timeFormat(pet.last_insect_repellent_time, 'yyyy-mm') }}
</view>
</view>

4
pages/UserDetail/index.vue

@ -17,7 +17,7 @@
<view class="detail-content-item">
<view class="detail-item-title">昵称</view>
<view class="detail-item-content">
<u-input v-model="user.name" inputAlign="right" ></u-input>
<u-input border="none" v-model="user.name" inputAlign="right" ></u-input>
<u-icon class="arrow-right" name="arrow-right"></u-icon>
</view>
</view>
@ -39,7 +39,7 @@
<view class="detail-content-item">
<view class="detail-item-title">手机</view>
<view class="detail-item-content">
<u-input v-model="user.phone" inputAlign="right" ></u-input>
<u-input border="none" v-model="user.phone" inputAlign="right" ></u-input>
<u-icon class="arrow-right" name="arrow-right"></u-icon>
</view>
</view>

8
pages/UserOrderPage/index.vue

@ -61,9 +61,13 @@
<view class="order-card-tag-container row">
<view class="order-card-tag" v-for="(server, i) in item.services" wx:key="i">{{ server }}</view>
</view>
<view class="order-card-day"><text class="card-label">上门</text>{{item.do_date}} {{ item.do_time }}
<view class="order-card-day row">
<text class="card-label">上门</text>
<u-text :text="item.do_date+' '+item.do_time" size="28" color="#767676" :lines="1"></u-text>
</view>
<view class="order-card-pay-time"><text class="card-label">下单时间</text>{{item.create_time}}
<view class="order-card-pay-time row">
<text class="card-label">下单时间</text>
<u-text :text="item.create_time" size="28" color="#767676" :lines="1"></u-text>
</view>
</view>
<!-- <view class="" style="padding:20rpx 0;">-->

1
uview-plus/index.scss

@ -1,3 +1,4 @@
@import "@/uni_modules/uview-plus/libs/css/common.scss";
$appWallpaperPadding : 30rpx !default;
$appWallpaperPaddingBottom :200rpx !default;
@mixin bgDefault{

Loading…
Cancel
Save