Browse Source

Merge remote-tracking branch 'origin/master'

# Conflicts:
#	pages/ChatDetail/index.vue
master
396316021 2 years ago
parent
commit
d62971deb3
  1. 8
      api/draw.js
  2. 29
      components/RightNav/index.vue
  3. 16
      pages/ChatDetail/index.vue
  4. 167
      pages/Draw/index.vue
  5. 4
      pages/Index/components/OrderPage/components/index.scss
  6. 49
      pages/Index/components/OrderPage/index.vue
  7. 59
      unpackage/dist/dev/mp-weixin/components/FooterNav/Index.js
  8. 2
      unpackage/dist/dev/mp-weixin/components/HeaderNav/Index.js
  9. 27
      unpackage/dist/dev/mp-weixin/components/RightNav/Index.js
  10. 2
      unpackage/dist/dev/mp-weixin/pages/Addr/index.js
  11. 10
      unpackage/dist/dev/mp-weixin/pages/ChatDetail/index.js
  12. 2
      unpackage/dist/dev/mp-weixin/pages/ChatDetail/index.wxml
  13. 51
      unpackage/dist/dev/mp-weixin/pages/Index/components/ChatPage/Index.js
  14. 4
      unpackage/dist/dev/mp-weixin/pages/Index/components/ChatPage/Index.json
  15. 2
      unpackage/dist/dev/mp-weixin/pages/Index/components/ChatPage/Index.wxml
  16. 4
      unpackage/dist/dev/mp-weixin/pages/Index/components/HomePage/Index.js
  17. 86
      unpackage/dist/dev/mp-weixin/pages/Index/components/OrderPage/Index.js
  18. 2
      unpackage/dist/dev/mp-weixin/pages/Index/components/OrderPage/Index.wxml
  19. 4
      unpackage/dist/dev/mp-weixin/pages/Index/components/OrderPage/Index.wxss
  20. 9
      unpackage/dist/dev/mp-weixin/pages/Index/components/UserPage/Index.js
  21. 75
      unpackage/dist/dev/mp-weixin/pages/Index/index.js
  22. 2
      unpackage/dist/dev/mp-weixin/pages/Index/index.wxml
  23. 2
      unpackage/dist/dev/mp-weixin/pages/UserCoupons/index.js
  24. 17
      unpackage/dist/dev/mp-weixin/project.private.config.json

8
api/draw.js

@ -0,0 +1,8 @@
import request from "@/utils/request";
export function drawList(){
return request({
url:'draw/drawgoods-list',
method:'post',
})
}

29
components/RightNav/index.vue

@ -1,8 +1,6 @@
<template>
<view class="right-nav row">
<view class="right-nav-button col-12" :style="{backgroundImage:'url('+staticImage.wechat+')'}"></view>
<view class="right-nav-button col-12" :style="{backgroundImage:'url('+staticImage.chat+')'}"></view>
<view @click="callPhone('15012345678')" class="right-nav-button col-12" :style="{backgroundImage:'url('+staticImage.phone+')'}"></view>
<view class="right-nav-button col-12" v-for="(item,index) in buttonGroup" :style="{backgroundImage:'url('+item.image+')'}"></view>
</view>
</template>
@ -13,11 +11,18 @@
return {
title: 'Hello',
loading: true,
staticImage:{
wechat: imghost + "/static/image/right-button-wechat.png",
chat: imghost + "/static/image/right-button-chat.png",
phone: imghost + "/static/image/right-button-phone.png",
}
buttonGroup:[
{
image:imghost+"/static/image/right-button-wechat.png",
type:'wechat'
},{
image:imghost+"/static/image/right-button-chat.png",
type:'chat'
},{
image:imghost+"/static/image/right-button-phone.png",
type:'phone'
},
]
}
},
onLoad() {
@ -29,6 +34,14 @@
phoneNumber: phone.toString()
});
},
handle(type){
switch (type) {
case 'chat':
uni.navigateTo({
url:"/pages/ChatDetail/index?id=" + 0
})
}
}
}
}
</script>

16
pages/ChatDetail/index.vue

@ -12,9 +12,9 @@
<view class="chat-avator " v-if="item.send_user_id !== user_id">
<image mode="aspectFill" class="img" :src="item.avatar ? item.avatar : user.avatar" />
</view>
<view class="chat-content-container ">
<view class="chat-content-container " style="max-width: calc(100% - 50px);">
<view class="chat-time">{{ item.create_time }}</view>
<view class="chat-content">{{ item.info }}</view>
<view class="chat-content" style="word-break: break-all;">{{ item.info }}</view>
</view>
<view class="chat-avator " v-if="item.send_user_id === user_id">
<image mode="aspectFill" class="img" :src="item.avatar ? item.avatar : user.avatar" />
@ -48,6 +48,7 @@
<view class="detail-input-group-container">
<view class="detail-input-group row">
<view class="col">
<input class="detail-input" v-model="message" type="text"/>
</view>
@ -57,7 +58,7 @@
button-color="#4DC3B8"
button-width="auto"
class="detail-input-button"
@click="sendMessage"
@click.stop="sendMessage"
>
</MzButton>
</view>
@ -107,12 +108,12 @@
user_id:0,
messageList:[]
},
onLoad() {
this.getToken();
onLoad(options) {
this.getToken(options.id);
},
methods: {
getToken(){
getToken(5, 1).then(data => {
getToken(order_id){
getToken(order_id, this.$store.state.userInfo.store_id ? 2 : 1).then(data => {
this.chat_id = data.data.chat_id;
this.type = data.data.type;
this.user_id = data.data.user_id;
@ -181,6 +182,7 @@
})
});
uni.hideLoading();
this.message = '';
}
}
},

167
pages/Draw/index.vue

@ -6,20 +6,24 @@
<view class="app-wallpaper">
<view class="draw-container" :style="{backgroundImage:'url('+staticImage.drawBackground+')'}">
<view class="draw-content row">
<view class="draw-item col-4" :class="{active:(checked == index)}" v-for="(item,index) in drawList">
<view class="draw-item-container" v-if="index != 4">
<view class="draw-item-content">
<image class="img" mode="aspectFill" :src="item.img"/>
<view class="draw-title ">{{item.title}}</view>
</view>
</view>
<view class="draw-item-container start-draw" :class="{disabled:!drawButton}" v-else>
<view class="draw-item-content " @click="drawAni()">
<image class="img" mode="aspectFill" :src="item.img"/>
<view class="draw-title">{{item.title}}</view>
</view>
</view>
</view>
<template v-for="(item,index) in drawList">
<view class="draw-item col-4" :class="{active:(checked === index)}" >
<view class="draw-item-container" >
<view class="draw-item-content">
<image class="img" mode="aspectFill" :src="item.logo"/>
<view class="draw-title ">{{item.title}}</view>
</view>
</view>
</view>
<view class="draw-item col-4" v-if="index === 3" >
<view class="draw-item-container start-draw" :class="{disabled:!drawButton}">
<view class="draw-item-content " @click="drawAni()">
<image class="img" mode="aspectFill" :src="item.logo"/>
<view class="draw-title">开始抽奖</view>
</view>
</view>
</view>
</template>
</view>
</view>
<view class="draw-info-container" :style="{backgroundImage:'url('+staticImage.drawInfoBackground+')'}">
@ -76,6 +80,8 @@ 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 {drawList} from "@/api/draw";
import log from "@/utils/log";
export default {
components: {
@ -121,40 +127,13 @@ export default {
isTop: false,
pagePadding: 100,
petImage: imghost + '/static/image/pet_avatar1.jpeg',
drawList: [
{
img:imghost+'/static/image/banner.png',
title:'优惠券'
},{
img:imghost+'/static/image/banner.png',
title:'优惠券'
},{
img:imghost+'/static/image/banner.png',
title:'优惠券'
},{
img:imghost+'/static/image/banner.png',
title:'优惠券'
},{
img:imghost+'/static/image/banner.png',
title:'开始抽奖'
},{
img:imghost+'/static/image/banner.png',
title:'优惠券'
},{
img:imghost+'/static/image/banner.png',
title:'优惠券'
},{
img:imghost+'/static/image/banner.png',
title:'优惠券'
},{
img:imghost+'/static/image/banner.png',
title:'优惠券'
},
],
defaultImage: imghost + '/static/image/banner.png',
drawList: [],
loopIndex:0,
}
},
onLoad() {
this.getDrawList();
},
methods: {
navTo(url) {
@ -163,36 +142,82 @@ export default {
})
},
drawAni(){
let that = this;
if(that.drawButton === false){
return;
}
that.drawButton = false;
that.drawOrder = [];
for(let i=2;i<=3;i++){
for(let index in that.drawOrderDefault){
if(i===3 && that.drawId === that.drawOrderDefault[index]){
break;
}else{
that.drawOrder.push(that.drawOrderDefault[index])
let draw = Math.round((Math.random() * 7)); //
let loopIndex = 0;
let checkIndex = [0, 1, 2, 4, 7, 6, 5, 3];
let speed = 3; //
let length = 500; //
let current = 0; //
let t = setInterval(() => {
if ((current++ % speed) === 0){
this.checked = checkIndex[loopIndex++];
if (loopIndex >= 8) {
loopIndex = 0;
speed *= 2;
}
}
}
}
console.log(that.drawOrder)
let index = 0;
let ani = setInterval(()=>{
that.checked = that.drawOrder[index]
index++;
if(index>=that.drawOrder.length){
clearInterval(ani);
that.drawButton = true;
that.drawShadow = true;
}
},200)
if (current > length && draw === loopIndex){
clearInterval(t)
}
}, 10)
// // let t1 = this.loop(50);
// // setTimeout(() => {
// // clearInterval(t1);
// // let t2 = this.loop(100);
// // setTimeout(() => {
// // clearInterval(t2)
// // let t3 = this.loop(200)
// // setTimeout(() => clearInterval(t3), 2000)
// // }, 2000);
// // },3000);
//
// return;
//
// let that = this;
// if(that.drawButton === false){
// return;
// }
// that.drawButton = false;
// that.drawOrder = [];
// for(let i=2;i<=3;i++){
// for(let index in that.drawOrderDefault){
// if(i===3 && that.drawId === that.drawOrderDefault[index]){
// break;
// }else{
// that.drawOrder.push(that.drawOrderDefault[index])
// }
// }
// }
// console.log(that.drawOrder)
// let index = 0;
// let ani = setInterval(()=>{
// that.checked = that.drawOrder[index]
// index++;
// if(index>=that.drawOrder.length){
// clearInterval(ani);
// that.drawButton = true;
// that.drawShadow = true;
// }
// },200)
},
closeDrawShadow(){
this.drawShadow = false;
}
},
getDrawList(){
drawList().then(data => {
log(data)
this.drawList = data.data.goodslists;
if (this.drawList.length < 8){
this.drawList.push(...Array(8 - this.drawList.length).fill({
logo:this.defaultImage,
title:'谢谢惠顾'
}));
}
})
}
},
onPageScroll(res) {
if (res.scrollTop <= 20) {

4
pages/Index/components/OrderPage/components/index.scss

@ -42,6 +42,7 @@
line-height: 53rpx;
color:#646464;
font-weight: 400;
position: relative;
&.active{
color:#000000;
font-size: 32rpx;
@ -54,6 +55,9 @@
display: none;
align-items: center;
justify-content: center;
position: absolute;
top: 90rpx;
left: 12rpx;
.img{
width:37rpx;
}

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

@ -53,25 +53,24 @@
<image class="img" :src="petImage" mode="aspectFill" />
</view>
<view class="order-card-right">
<view class="order-card-title">{{item.title}}</view>
<view class="order-card-title">{{item.addr}}</view>
<view class="order-card-tag-container row">
<view class="order-card-tag">刷毛</view>
<view class="order-card-tag">洗澡</view>
<view class="order-card-tag" v-for="server in item.services">{{ server }}</view>
</view>
<view class="order-card-day"><text class="card-label">上门</text>{{item.do_time}}
<view class="order-card-day"><text class="card-label">上门</text>{{item.do_date}} {{ item.do_time }}
</view>
<view class="order-card-pay-time"><text class="card-label">下单时间</text>{{item.create_time}}
</view>
</view>
<view class="order-card-bottom col-12 row">
<view class="card-button" @click="navTo('/pages/ChatDetail/index')">
<view class="card-button" @click="navTo('/pages/ChatDetail/index?id=' + item.id)">
<MzButton
title="立即沟通"
font-color="#3E3221"
button-color="#F7E1C3"
button-width="255rpx"></MzButton>
</view>
<view class="card-button" @click="navTo('/pages/FeedLog/index')">
<view class="card-button" @click="navTo('/pages/FeedLog/index?pet_id=' + item.pet_id)">
<MzButton
title="喂养档案"
font-color="#FFFFFF"
@ -130,23 +129,22 @@
orderCardBackground: imghost + '/static/image/order-card-background.png',
wallpaperBgImage:imghost +'/static/image/background.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,
petImage: imghost + '/static/image/pet_avatar1.jpeg',
orderCardList:[
{
title:'成都市武侯区丰德国际4栋...',
tags:['刷毛','洗澡'],
do_time:'2023/05/03 15—17时',
create_time:'2023/03/03 15:23:22',
},
{
title:'成都市武侯区丰德国际4栋...',
tags:['刷毛','洗澡'],
do_time:'2023/05/03 15—17时',
create_time:'2023/03/03 15:23:22',
},
],
orderList:[],
dayActive: 1,
statusActive: 1,
}
},
onLoad() {
@ -171,9 +169,16 @@
filter.limit = 10;
getOrderList(filter).then(data => {
log(data);
this.orderList = data.data;
})
}
},
dayActiveToggle(daySign){
this.dayActive = daySign;
},
statusActiveToggle(statusSign){
this.statusActive = statusSign;
},
},
onPageScroll(res) {
if(res.scrollTop <= 20){

59
unpackage/dist/dev/mp-weixin/components/FooterNav/Index.js vendored

@ -1,44 +1,28 @@
"use strict";
const config_host = require("../../config/host.js");
const common_vendor = require("../../common/vendor.js");
const _sfc_main = {
props: {},
props: {
footGroup: {
type: Object,
default: {}
},
footCheck: {
type: Number,
default: 0
}
},
data() {
return {
footCheck: "home",
title: "Hello",
loading: true,
buttonGroup: [
{
image: config_host.imghost + "/static/image/foot-nav-button-one",
url: "/pages/index/index",
name: "home",
title: "汪汪行天下"
},
{
image: config_host.imghost + "/static/image/foot-nav-button-two",
url: "/pages/order/index",
name: "order",
title: "订单"
},
{
image: config_host.imghost + "/static/image/foot-nav-button-three",
url: "/pages/chatList/index",
name: "chat",
title: "在线沟通"
},
{
image: config_host.imghost + "/static/image/foot-nav-button-four",
url: "/pages/user/index",
name: "user",
title: ""
}
]
check: 0
};
},
onLoad() {
},
methods: {
selectItem(index) {
this.current = index;
this.$emit("change", index);
},
commitFootCheck(item) {
this.$store.commit("footCheck", item.name);
this.$store.commit("title", item.title);
@ -47,6 +31,9 @@ const _sfc_main = {
isFootCheck() {
}
},
mounted() {
this.check = this.footCheck;
},
watch: {
"$store.state.footCheck": {
handler(newVal, oldVal) {
@ -57,12 +44,12 @@ const _sfc_main = {
};
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
return {
a: common_vendor.f($data.buttonGroup, (item, index, i0) => {
a: common_vendor.f($props.footGroup, (item, index, i0) => {
return {
a: item.name == $data.footCheck ? 1 : "",
b: "url(" + item.image + (item.name == $data.footCheck ? "-active" : "") + ".png)",
c: "auto " + (item.name == $data.footCheck ? "81" : "54") + "rpx",
d: common_vendor.o(($event) => $options.commitFootCheck(item))
a: item.name === $props.footCheck ? 1 : "",
b: "url(" + item.image + (index === $props.footCheck ? "-active" : "") + ".png)",
c: "auto " + (index === $props.footCheck ? "81" : "54") + "rpx",
d: common_vendor.o(($event) => $options.selectItem(index))
};
})
};

2
unpackage/dist/dev/mp-weixin/components/HeaderNav/Index.js vendored

@ -36,7 +36,7 @@ const _sfc_main = {
console.log("this.headerPadding", this.headerPadding);
},
navBack() {
common_vendor.wx$1.navigateBack({
common_vendor.index.navigateBack({
delta: 1
});
}

27
unpackage/dist/dev/mp-weixin/components/RightNav/Index.js vendored

@ -1,6 +1,6 @@
"use strict";
const config_host = require("../../config/host.js");
const common_vendor = require("../../common/vendor.js");
const config_host = require("../../config/host.js");
const _sfc_main = {
data() {
return {
@ -8,20 +8,37 @@ const _sfc_main = {
loading: true,
buttonGroup: [
{
image: config_host.imghost + "/static/image/right-button-wechat.png"
image: config_host.imghost + "/static/image/right-button-wechat.png",
type: "wechat"
},
{
image: config_host.imghost + "/static/image/right-button-chat.png"
image: config_host.imghost + "/static/image/right-button-chat.png",
type: "chat"
},
{
image: config_host.imghost + "/static/image/right-button-phone.png"
image: config_host.imghost + "/static/image/right-button-phone.png",
type: "phone"
}
]
};
},
onLoad() {
},
methods: {}
methods: {
callPhone(phone) {
common_vendor.index.makePhoneCall({
phoneNumber: phone.toString()
});
},
handle(type) {
switch (type) {
case "chat":
common_vendor.index.navigateTo({
url: "/pages/ChatDetail/index?id=0"
});
}
}
}
};
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
return {

2
unpackage/dist/dev/mp-weixin/pages/Addr/index.js vendored

@ -113,7 +113,7 @@ const _sfc_main = {
});
},
navTo(url) {
common_vendor.wx$1.navigateTo({
common_vendor.index.navigateTo({
url
});
},

10
unpackage/dist/dev/mp-weixin/pages/ChatDetail/index.js vendored

@ -35,12 +35,12 @@ const _sfc_main = {
user_id: 0,
messageList: []
},
onLoad() {
this.getToken();
onLoad(options) {
this.getToken(options.id);
},
methods: {
getToken() {
api_chat.getToken(5, 1).then((data) => {
getToken(order_id) {
api_chat.getToken(order_id, this.$store.state.userInfo.store_id ? 2 : 1).then((data) => {
this.chat_id = data.data.chat_id;
this.type = data.data.type;
this.user_id = data.data.user_id;
@ -92,6 +92,7 @@ const _sfc_main = {
data: this.message
});
common_vendor.index.hideLoading();
this.message = "";
}, 50);
} else {
common_vendor.index.sendSocketMessage({
@ -105,6 +106,7 @@ const _sfc_main = {
})
});
common_vendor.index.hideLoading();
this.message = "";
}
}
},

2
unpackage/dist/dev/mp-weixin/pages/ChatDetail/index.wxml vendored

@ -1 +1 @@
<header-nav wx:if="{{a}}" u-i="2ed33194-0" bind:__l="__l" u-p="{{a}}"></header-nav><view class="body-background" style="{{'background-image:' + b}}"></view><view class="app-wallpaper"><view class="detail-container" style="{{'height:' + h}}"><view class="detail-content-container"><view class="detail-content" style="height:calc(100%);overflow:auto;padding-bottom:150px;box-sizing:border-box"><view wx:for="{{c}}" wx:for-item="item" class="{{item.g}}" wx:key="index"><view class="chat-item-content row"><view wx:if="{{item.a}}" class="chat-avator"><image mode="aspectFill" class="img" src="{{item.b}}"/></view><view class="chat-content-container"><view class="chat-time">{{item.c}}</view><view class="chat-content">{{item.d}}</view></view><view wx:if="{{item.e}}" class="chat-avator"><image mode="aspectFill" class="img" src="{{item.f}}"/></view></view></view></view><view class="detail-input-group-container"><view class="detail-input-group row"><input class="detail-input" type="text" value="{{d}}" bindinput="{{e}}"/><view bindtap="{{g}}"><mz-button wx:if="{{f}}" class="detail-input-button" u-i="2ed33194-1" bind:__l="__l" u-p="{{f}}"></mz-button></view></view></view></view><view class="detail-background-container"><view class="detail-background"></view></view></view></view>
<header-nav wx:if="{{a}}" u-i="2ed33194-0" bind:__l="__l" u-p="{{a}}"></header-nav><view class="body-background" style="{{'background-image:' + b}}"></view><view class="app-wallpaper"><view class="detail-container" style="{{'height:' + h}}"><view class="detail-content-container"><view class="detail-content" style="height:calc(100%);overflow:auto;padding-bottom:150px;box-sizing:border-box"><view wx:for="{{c}}" wx:for-item="item" class="{{item.g}}" wx:key="index"><view class="chat-item-content row"><view wx:if="{{item.a}}" class="chat-avator"><image mode="aspectFill" class="img" src="{{item.b}}"/></view><view class="chat-content-container" style="max-width:calc(100% - 50px)"><view class="chat-time">{{item.c}}</view><view class="chat-content" style="word-break:break-all">{{item.d}}</view></view><view wx:if="{{item.e}}" class="chat-avator"><image mode="aspectFill" class="img" src="{{item.f}}"/></view></view></view></view><view class="detail-input-group-container"><view class="detail-input-group row"><input class="detail-input" type="text" value="{{d}}" bindinput="{{e}}"/><view catchtap="{{g}}"><mz-button wx:if="{{f}}" class="detail-input-button" u-i="2ed33194-1" bind:__l="__l" u-p="{{f}}"></mz-button></view></view></view></view><view class="detail-background-container"><view class="detail-background"></view></view></view></view>

51
unpackage/dist/dev/mp-weixin/pages/Index/components/ChatPage/Index.js vendored

@ -29,14 +29,10 @@ const _sfc_main = {
chatLTBgImage: config_host.imghost + "/static/image/chat-list-lt-background.png",
bodyBackground: config_host.imghost + "/static/image/background.png"
},
user: {
avatar: config_host.imghost + "/static/image/banner.png",
nickname: "清晨的风",
coupons: 221,
id: 88685
},
isTop: false,
chatList: []
chatList: [],
status: "loadmore",
page: 1
};
},
mounted() {
@ -44,16 +40,29 @@ const _sfc_main = {
},
methods: {
chatDetail(item) {
common_vendor.wx$1.navigateTo({
common_vendor.index.navigateTo({
url: "/pages/ChatDetail/index?id=" + item.id
});
},
getChatList(page = 1) {
api_chat.chatList(page, this.$store.state.userInfo.store_id !== null).then((data) => {
this.chatList = data.data;
getChatList() {
if (this.status === "nomre") {
return false;
}
this.status = "loading";
api_chat.chatList(this.page, this.$store.state.userInfo.store_id !== null).then((res) => {
this.chatList.push.apply(this.chatList, res.data);
if (res.data.length === 0) {
this.status = "nomore";
} else {
this.status = "loadmore";
}
this.page++;
});
}
},
onReachBottom() {
this.getChatList();
},
onPageScroll(res) {
if (res.scrollTop <= 20) {
common_vendor.index.$emit("isTop", true);
@ -64,6 +73,14 @@ const _sfc_main = {
created() {
}
};
if (!Array) {
const _easycom_u_loadmore2 = common_vendor.resolveComponent("u-loadmore");
_easycom_u_loadmore2();
}
const _easycom_u_loadmore = () => "../../../../uni_modules/uview-plus/components/u-loadmore/u-loadmore.js";
if (!Math) {
_easycom_u_loadmore();
}
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
return {
a: "url(" + $data.staticImage.bodyBackground + ")",
@ -77,7 +94,17 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
};
}),
c: "url(" + $data.staticImage.chatLTBgImage + ")",
d: "url(" + $data.staticImage.chatBgImage + ")"
d: "url(" + $data.staticImage.chatBgImage + ")",
e: common_vendor.o(($event) => $options.getChatList()),
f: common_vendor.p({
status: $data.status,
fontSize: "28",
color: "#ACB4B6",
line: true,
["line-color"]: "#ACB4B6",
marginBottom: "30",
marginTop: "30"
})
};
}
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "D:/phpstudy_pro/WEB/pet_uni/pages/Index/components/ChatPage/Index.vue"]]);

4
unpackage/dist/dev/mp-weixin/pages/Index/components/ChatPage/Index.json vendored

@ -1,4 +1,6 @@
{
"component": true,
"usingComponents": {}
"usingComponents": {
"u-loadmore": "../../../../uni_modules/uview-plus/components/u-loadmore/u-loadmore"
}
}

2
unpackage/dist/dev/mp-weixin/pages/Index/components/ChatPage/Index.wxml vendored

@ -1 +1 @@
<view class="body-background" style="{{'background-image:' + a}}"></view><view class="app-wallpaper"><view class="chat-list-container row"><view wx:for="{{b}}" wx:for-item="item" class="chat-list-item-container col-12" style="{{'background-image:' + d}}"><view class="chat-item-background" bindtap="{{item.e}}" style="{{'background-image:' + c}}"><view class="chat-item-content row"><view class="chat-item-left"><image class="img" src="{{item.a}}" mode="aspectFill"/></view><view class="chat-item-right"><view class="chat-item-title-group row"><view class="chat-item-title">{{item.b}}</view><view class="chat-item-time">{{item.c}}</view></view><view class="chat-item-desc">{{item.d}}</view></view></view></view></view><view class="chat-item-end row"> — 没有更多内容了 — </view></view></view>
<view class="body-background" style="{{'background-image:' + a}}"></view><view class="app-wallpaper"><view class="chat-list-container row"><view wx:for="{{b}}" wx:for-item="item" class="chat-list-item-container col-12" style="{{'background-image:' + d}}"><view class="chat-item-background" bindtap="{{item.e}}" style="{{'background-image:' + c}}"><view class="chat-item-content row"><view class="chat-item-left"><image class="img" src="{{item.a}}" mode="aspectFill"/></view><view class="chat-item-right"><view class="chat-item-title-group row"><view class="chat-item-title">{{item.b}}</view><view class="chat-item-time">{{item.c}}</view></view><view class="chat-item-desc">{{item.d}}</view></view></view></view></view></view><u-loadmore wx:if="{{f}}" bindloadmore="{{e}}" u-i="b27470a8-0" bind:__l="__l" u-p="{{f}}"/></view>

4
unpackage/dist/dev/mp-weixin/pages/Index/components/HomePage/Index.js vendored

@ -60,12 +60,12 @@ const _sfc_main = {
},
methods: {
userCouponsPage() {
common_vendor.wx$1.navigateTo({
common_vendor.index.navigateTo({
url: "/pages/UserCoupons/index"
});
},
navTo(url) {
common_vendor.wx$1.navigateTo({
common_vendor.index.navigateTo({
url
});
},

86
unpackage/dist/dev/mp-weixin/pages/Index/components/OrderPage/Index.js vendored

@ -3,7 +3,7 @@ const common_vendor = require("../../../../common/vendor.js");
const config_host = require("../../../../config/host.js");
const utils_functions = require("../../../../utils/functions.js");
const api_order = require("../../../../api/order.js");
const utils_log = require("../../../../utils/log.js");
require("../../../../utils/log.js");
require("../../../../utils/qqmap-wx-jssdk.min.js");
require("../../../../utils/request.js");
const HeaderNav = () => "../../../../components/HeaderNav/Index.js";
@ -21,6 +21,21 @@ const _sfc_main = {
return {
title: "Hello",
loading: true,
screenCheck: 0,
screenMenu: [
{
name: "全部",
value: ""
},
{
name: "待服务",
value: "1"
},
{
name: "已完成",
value: "2"
}
],
staticImage: {
screenActiveImg: config_host.imghost + "/static/image/order-screen-active.png",
orderCardBackground: config_host.imghost + "/static/image/order-card-background.png",
@ -39,27 +54,19 @@ const _sfc_main = {
isTop: false,
pagePadding: 100,
petImage: config_host.imghost + "/static/image/pet_avatar1.jpeg",
orderCardList: [
{
title: "成都市武侯区丰德国际4栋...",
tags: ["刷毛", "洗澡"],
do_time: "2023/05/03 15—17时",
create_time: "2023/03/03 15:23:22"
},
{
title: "成都市武侯区丰德国际4栋...",
tags: ["刷毛", "洗澡"],
do_time: "2023/05/03 15—17时",
create_time: "2023/03/03 15:23:22"
}
]
orderList: [],
dayActive: 1,
statusActive: 1
};
},
onLoad() {
},
methods: {
selectScreen(index) {
this.screenCheck = index;
},
navTo(url) {
common_vendor.wx$1.navigateTo({
common_vendor.index.navigateTo({
url
});
},
@ -72,8 +79,14 @@ const _sfc_main = {
filter.page = page;
filter.limit = 10;
api_order.getOrderList(filter).then((data) => {
utils_log.log(data);
this.orderList = data.data;
});
},
dayActiveToggle(daySign) {
this.dayActive = daySign;
},
statusActiveToggle(statusSign) {
this.statusActive = statusSign;
}
},
onPageScroll(res) {
@ -96,35 +109,48 @@ if (!Array) {
}
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
return {
a: $data.staticImage.screenActiveImg,
a: common_vendor.f($data.screenMenu, (item, index, i0) => {
return {
a: common_vendor.t(item.name),
b: index === $data.screenCheck ? 1 : "",
c: common_vendor.o(($event) => $options.selectScreen(index))
};
}),
b: $data.staticImage.screenActiveImg,
c: $data.staticImage.screenActiveImg,
d: common_vendor.f($data.orderCardList, (item, k0, i0) => {
d: $data.staticImage.screenActiveImg,
e: common_vendor.f(_ctx.orderCardList, (item, k0, i0) => {
return {
a: common_vendor.t(item.title),
b: common_vendor.t(item.do_time),
c: common_vendor.t(item.create_time),
d: "e3c278e4-0-" + i0,
e: "e3c278e4-1-" + i0
a: common_vendor.t(item.addr),
b: common_vendor.f(item.services, (server, k1, i1) => {
return {
a: common_vendor.t(server)
};
}),
c: common_vendor.t(item.do_date),
d: common_vendor.t(item.do_time),
e: common_vendor.t(item.create_time),
f: "e3c278e4-0-" + i0,
g: common_vendor.o(($event) => $options.navTo("/pages/ChatDetail/index?id=" + item.id)),
h: "e3c278e4-1-" + i0,
i: common_vendor.o(($event) => $options.navTo("/pages/FeedLog/index?pet_id=" + item.pet_id))
};
}),
e: $data.petImage,
f: common_vendor.p({
f: $data.petImage,
g: common_vendor.p({
title: "立即沟通",
["font-color"]: "#3E3221",
["button-color"]: "#F7E1C3",
["button-width"]: "255rpx"
}),
g: common_vendor.o(($event) => $options.navTo("/pages/ChatDetail/index")),
h: common_vendor.p({
title: "喂养档案",
["font-color"]: "#FFFFFF",
["button-color"]: "#4DC3B8",
["button-width"]: "255rpx"
}),
i: common_vendor.o(($event) => $options.navTo("/pages/FeedLog/index")),
j: "url(" + $data.staticImage.orderCardBackground + ")",
k: "url(" + $data.staticImage.wallpaperBgImage + ")"
i: "url(" + $data.staticImage.orderCardBackground + ")",
j: "url(" + $data.staticImage.wallpaperBgImage + ")"
};
}
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "D:/phpstudy_pro/WEB/pet_uni/pages/Index/components/OrderPage/Index.vue"]]);

2
unpackage/dist/dev/mp-weixin/pages/Index/components/OrderPage/Index.wxml vendored

@ -1 +1 @@
<view class="app-wallpaper" style="{{'background-image:' + k}}"><view class="order-capsule-container row"><view class="order-capsule col-4 active"> 全部 </view><view class="order-capsule col-4"> 待服务 </view><view class="order-capsule col-4"> 已完成 </view></view><view class="order-screen-container row"><view class="order-screen active"> 全部 <view class="order-screen-active"><image mode="widthFix" class="img" src="{{a}}"/></view></view><view class="order-screen"> 明天 <view class="order-screen-active"><image mode="widthFix" class="img" src="{{b}}"/></view></view><view class="order-screen"> 后天 <view class="order-screen-active"><image mode="widthFix" class="img" src="{{c}}"/></view></view><view class="order-screen-time-container row"><view class="order-screen order-screen-time-title"> 05/06-08-03 </view><view class="order-screen order-screen-time-buttton-container"><view class="order-screen-time-buttton"> 时间 </view></view></view><view class="order-list-container"><view wx:for="{{d}}" wx:for-item="item" class="order-list-item"><view class="order-card-container row"><view class="order-card-container-background col-12"></view><view class="order-card-container-background-main row"><view class="order-card-col row" style="{{'background-image:' + j}}"><view class="order-card-left"><image class="img" src="{{e}}" mode="aspectFill"/></view><view class="order-card-right"><view class="order-card-title">{{item.a}}</view><view class="order-card-tag-container row"><view class="order-card-tag">刷毛</view><view class="order-card-tag">洗澡</view></view><view class="order-card-day"><text class="card-label">上门:</text>{{item.b}}</view><view class="order-card-pay-time"><text class="card-label">下单时间:</text>{{item.c}}</view></view><view class="order-card-bottom col-12 row"><view class="card-button" bindtap="{{g}}"><mz-button wx:if="{{f}}" u-i="{{item.d}}" bind:__l="__l" u-p="{{f}}"></mz-button></view><view class="card-button" bindtap="{{i}}"><mz-button wx:if="{{h}}" u-i="{{item.e}}" bind:__l="__l" u-p="{{h}}"></mz-button></view></view></view></view></view></view></view></view></view>
<view class="app-wallpaper" style="{{'background-image:' + j}}"><view class="order-capsule-container row"><view wx:for="{{a}}" wx:for-item="item" class="{{['order-capsule', 'col-4', item.b && 'active']}}" bindtap="{{item.c}}">{{item.a}}</view></view><view class="order-screen-container row"><view class="order-screen active"> 全部 <view class="order-screen-active"><image mode="widthFix" class="img" src="{{b}}"/></view></view><view class="order-screen"> 明天 <view class="order-screen-active"><image mode="widthFix" class="img" src="{{c}}"/></view></view><view class="order-screen"> 后天 <view class="order-screen-active"><image mode="widthFix" class="img" src="{{d}}"/></view></view><view class="order-screen-time-container row"><view class="order-screen order-screen-time-title"> 05/06-08-03 </view><view class="order-screen order-screen-time-buttton-container"><view class="order-screen-time-buttton"> 时间 </view></view></view><view class="order-list-container"><view wx:for="{{e}}" wx:for-item="item" class="order-list-item"><view class="order-card-container row"><view class="order-card-container-background col-12"></view><view class="order-card-container-background-main row"><view class="order-card-col row" style="{{'background-image:' + i}}"><view class="order-card-left"><image class="img" src="{{f}}" mode="aspectFill"/></view><view class="order-card-right"><view class="order-card-title">{{item.a}}</view><view class="order-card-tag-container row"><view wx:for="{{item.b}}" wx:for-item="server" class="order-card-tag">{{server.a}}</view></view><view class="order-card-day"><text class="card-label">上门:</text>{{item.c}} {{item.d}}</view><view class="order-card-pay-time"><text class="card-label">下单时间:</text>{{item.e}}</view></view><view class="order-card-bottom col-12 row"><view class="card-button" bindtap="{{item.g}}"><mz-button wx:if="{{g}}" u-i="{{item.f}}" bind:__l="__l" u-p="{{g}}"></mz-button></view><view class="card-button" bindtap="{{item.i}}"><mz-button wx:if="{{h}}" u-i="{{item.h}}" bind:__l="__l" u-p="{{h}}"></mz-button></view></view></view></view></view></view></view></view></view>

4
unpackage/dist/dev/mp-weixin/pages/Index/components/OrderPage/Index.wxss vendored

@ -61,6 +61,7 @@
line-height: 53rpx;
color: #646464;
font-weight: 400;
position: relative;
}
.app-wallpaper .order-screen-container .order-screen.active {
color: #000000;
@ -74,6 +75,9 @@
display: none;
align-items: center;
justify-content: center;
position: absolute;
top: 90rpx;
left: 12rpx;
}
.app-wallpaper .order-screen-container .order-screen .order-screen-active .img {
width: 37rpx;

9
unpackage/dist/dev/mp-weixin/pages/Index/components/UserPage/Index.js vendored

@ -67,18 +67,17 @@ const _sfc_main = {
},
methods: {
navTo(url) {
common_vendor.wx$1.navigateTo({
common_vendor.index.navigateTo({
url
});
},
userDetail() {
common_vendor.wx$1.navigateTo({
common_vendor.index.navigateTo({
url: "/pages/UserDetail/index"
});
},
orderPage() {
this.$store.commit("footCheck", "order");
this.$store.commit("title", "订单");
this.$emit("tabNavTo", 1);
},
showNumber() {
api_user.userExtends().then((data) => {
@ -87,7 +86,7 @@ const _sfc_main = {
});
},
userCouponsPage() {
common_vendor.wx$1.navigateTo({
common_vendor.index.navigateTo({
url: "/pages/UserCoupons/index"
});
},

75
unpackage/dist/dev/mp-weixin/pages/Index/index.js vendored

@ -1,9 +1,6 @@
"use strict";
const common_vendor = require("../../common/vendor.js");
require("../../utils/functions.js");
require("../../utils/log.js");
require("../../utils/qqmap-wx-jssdk.min.js");
require("../../config/host.js");
const config_host = require("../../config/host.js");
const FooterNav = () => "../../components/FooterNav/Index.js";
const RightNav = () => "../../components/RightNav/Index.js";
const HeaderNav = () => "../../components/HeaderNav/Index.js";
@ -23,15 +20,48 @@ const _sfc_main = {
},
data() {
return {
current: 0,
footCheck: "home",
show: false,
title: "标题",
content: "uview-plus的目标是成为uni-app生态最优秀的UI框架"
content: "uview-plus的目标是成为uni-app生态最优秀的UI框架",
footGroup: [
{
image: config_host.imghost + "/static/image/foot-nav-button-one",
name: "home",
title: "汪汪行天下"
},
{
image: config_host.imghost + "/static/image/foot-nav-button-two",
name: "order",
title: "订单"
},
{
image: config_host.imghost + "/static/image/foot-nav-button-three",
name: "chat",
title: "在线沟通"
},
{
image: config_host.imghost + "/static/image/foot-nav-button-four",
name: "user",
title: ""
}
],
rightShow: false
};
},
onLoad() {
onLoad(option) {
if (option == null ? void 0 : option.foot_check) {
this.footSelect(option.foot_check);
}
},
methods: {
footSelect(index) {
this.current = index;
this.footCheck = this.footGroup[index].name;
this.title = this.footGroup[index].title;
this.rightShow = this.footCheck === "home" || this.footCheck === "user";
},
userLogin() {
common_vendor.index.navigateTo({
url: "/pages/Login/index"
@ -88,30 +118,43 @@ if (!Math) {
_easycom_u_modal();
}
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
return {
return common_vendor.e({
a: common_vendor.p({
title: $data.title
}),
b: $data.footCheck === "home",
b: $data.footCheck === "home"
}, $data.footCheck === "home" ? {} : {}, {
c: $data.footCheck === "home" ? 1 : "",
d: $data.footCheck === "order",
d: $data.footCheck === "order"
}, $data.footCheck === "order" ? {} : {}, {
e: $data.footCheck === "order" ? 1 : "",
f: $data.footCheck === "chat",
f: $data.footCheck === "chat"
}, $data.footCheck === "chat" ? {} : {}, {
g: $data.footCheck === "chat" ? 1 : "",
h: $data.footCheck === "user",
i: $data.footCheck === "user" ? 1 : "",
j: common_vendor.o($options.userLogin),
k: common_vendor.o(($event) => {
h: $data.footCheck === "user"
}, $data.footCheck === "user" ? {
i: common_vendor.o($options.footSelect)
} : {}, {
j: $data.footCheck === "user" ? 1 : "",
k: $data.rightShow
}, $data.rightShow ? {} : {}, {
l: common_vendor.o($options.footSelect),
m: common_vendor.p({
["foot-group"]: $data.footGroup,
footCheck: $data.current
}),
n: common_vendor.o($options.userLogin),
o: common_vendor.o(($event) => {
this.show = false;
}),
l: common_vendor.p({
p: common_vendor.p({
show: $data.show,
title: "登录",
content: "当前未登录是否前往登录",
closeOnClickOverlay: true,
showCancelButton: true
})
};
});
}
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "D:/phpstudy_pro/WEB/pet_uni/pages/Index/index.vue"]]);
_sfc_main.__runtimeHooks = 1;

2
unpackage/dist/dev/mp-weixin/pages/Index/index.wxml vendored

@ -1 +1 @@
<header-nav wx:if="{{a}}" u-i="ed1e66ca-0" bind:__l="__l" u-p="{{a}}"></header-nav><view class="{{[c && 'show']}}"><home-page data-c-h="{{!b}}" u-i="ed1e66ca-1" bind:__l="__l"></home-page></view><view class="{{[e && 'show']}}"><order-page data-c-h="{{!d}}" u-i="ed1e66ca-2" bind:__l="__l"></order-page></view><view class="{{[g && 'show']}}"><chat-page data-c-h="{{!f}}" u-i="ed1e66ca-3" bind:__l="__l"></chat-page></view><view class="{{[i && 'show']}}"><user-page data-c-h="{{!h}}" u-i="ed1e66ca-4" bind:__l="__l"></user-page></view><right-nav u-i="ed1e66ca-5" bind:__l="__l"></right-nav><footer-nav u-i="ed1e66ca-6" bind:__l="__l"></footer-nav><u-modal wx:if="{{l}}" bindconfirm="{{j}}" bindcancel="{{k}}" u-i="ed1e66ca-7" bind:__l="__l" u-p="{{l}}"></u-modal>
<header-nav wx:if="{{a}}" u-i="ed1e66ca-0" bind:__l="__l" u-p="{{a}}"></header-nav><view class="{{[c && 'show']}}"><home-page wx:if="{{b}}" u-i="ed1e66ca-1" bind:__l="__l"></home-page></view><view class="{{[e && 'show']}}"><order-page wx:if="{{d}}" u-i="ed1e66ca-2" bind:__l="__l"></order-page></view><view class="{{[g && 'show']}}"><chat-page wx:if="{{f}}" u-i="ed1e66ca-3" bind:__l="__l"></chat-page></view><view class="{{[j && 'show']}}"><user-page wx:if="{{h}}" bindtabNavTo="{{i}}" u-i="ed1e66ca-4" bind:__l="__l"></user-page></view><right-nav wx:if="{{k}}" u-i="ed1e66ca-5" bind:__l="__l"></right-nav><footer-nav wx:if="{{m}}" bindchange="{{l}}" u-i="ed1e66ca-6" bind:__l="__l" u-p="{{m}}"></footer-nav><u-modal wx:if="{{p}}" bindconfirm="{{n}}" bindcancel="{{o}}" u-i="ed1e66ca-7" bind:__l="__l" u-p="{{p}}"></u-modal>

2
unpackage/dist/dev/mp-weixin/pages/UserCoupons/index.js vendored

@ -67,7 +67,7 @@ const _sfc_main = {
},
methods: {
navTo(url) {
common_vendor.wx$1.navigateTo({
common_vendor.index.navigateTo({
url
});
},

17
unpackage/dist/dev/mp-weixin/project.private.config.json vendored

@ -4,5 +4,22 @@
"setting": {
"compileHotReLoad": true,
"urlCheck": false
},
"condition": {
"miniprogram": {
"list": [
{
"name": "",
"pathName": "pages/Draw/index",
"query": "",
"launchMode": "default",
"scene": null,
"partialCompile": {
"enabled": true,
"pages": []
}
}
]
}
}
}
Loading…
Cancel
Save