This commit is contained in:
sa_10_0 2024-12-17 10:59:51 +08:00
parent 83b7f8264f
commit a0726463bc
4 changed files with 720 additions and 1302 deletions

View File

@ -196,6 +196,13 @@
{ {
"navigationBarTitleText" : "" "navigationBarTitleText" : ""
} }
},
{
"path" : "pages/syy",
"style" :
{
"navigationBarTitleText" : ""
}
} }
], ],
"globalStyle": { "globalStyle": {

View File

@ -2,10 +2,8 @@
<view class="flex-col page"> <view class="flex-col page">
<view class="flex-row group"> <view class="flex-row group">
<view class=" "> <view class=" ">
<image <image class="flex-col justify-start items-end shrink-0 self-start image-wrapper"
class="flex-col justify-start items-end shrink-0 self-start image-wrapper" :src="productBrief.goodImg" />
:src="productBrief.goodImg"
/>
</view> </view>
<view class="flex-row flex-1 ml-23"> <view class="flex-row flex-1 ml-23">
<view class="flex-col flex-1 self-start group_2"> <view class="flex-col flex-1 self-start group_2">
@ -19,58 +17,64 @@
</view> </view>
</view> </view>
<view class="flex-col shrink-0 ml-5"> <view class="flex-col shrink-0 ml-5">
<image <image class="self-end image"
class="self-end image"
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FxSHTnKhk-close.png" src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FxSHTnKhk-close.png"
@click="close()" @click="close()" />
/>
<view class="flex-row self-stretch mt-104"> <view class="flex-row self-stretch mt-104">
<view class="flex-col justify-start items-center image-wrapper_2"> <view class="flex-col justify-start items-center image-wrapper_2">
<image <image class="image_3"
class="image_3"
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FosWvYyNx-short1.png" src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FosWvYyNx-short1.png"
@click="decrease" @click="decrease" />
/>
</view> </view>
<view class="ml-2 flex-col justify-start items-center text-wrapper"><text class="text_5">{{ quantity }}</text></view> <view class="ml-2 flex-col justify-start items-center text-wrapper"><text
class="text_5">{{ quantity }}</text></view>
<view class="ml-2 flex-col justify-start items-center image-wrapper_3"> <view class="ml-2 flex-col justify-start items-center image-wrapper_3">
<image <image class="image_3"
class="image_3"
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FGbdSQDul-add1.png" src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FGbdSQDul-add1.png"
@click="increase" @click="increase" />
/>
</view> </view>
</view> </view>
</view> </view>
</view> </view>
</view> </view>
<view class="flex-col justify-start items-center text-wrapper_2" @click="addCart"><text class="text_6">加入购物车</text></view> <view class="flex-col justify-start items-center text-wrapper_2" @click="addCart"><text
class="text_6">加入购物车</text></view>
</view> </view>
</template> </template>
<script setup> <script setup>
import { onMounted , ref } from 'vue'; import {
import emitter from '../../../utils/emitter'; onMounted,
import { onLoad , onShow } from "@dcloudio/uni-app"; ref
import { baseUrl , testUrl ,suiUrl} from '../../../api/request'; } from 'vue';
const productBrief = ref({}) // import emitter from '../../../utils/emitter';
const quantity = ref(1) import {
const userInfo = ref({}) onLoad,
onMounted(()=>{ onShow
emitter.on('product',(val)=>{ } from "@dcloudio/uni-app";
import {
baseUrl,
testUrl,
suiUrl
} from '../../../api/request';
const productBrief = ref({}) //
const quantity = ref(1)
const userInfo = ref({})
onMounted(() => {
emitter.on('product', (val) => {
// console.log(val); // console.log(val);
productBrief.value = val productBrief.value = val
}) })
}) })
onShow(()=>{ onShow(() => {
userInfo.value = wx.getStorageSync('userInfo') // userInfo.value = wx.getStorageSync('userInfo') //
}) })
const close =()=>{ const close = () => {
emitter.emit('close') emitter.emit('close')
} }
const addCart = async()=>{ const addCart = async () => {
console.log('商品brief-->',productBrief.value); console.log('商品brief-->', productBrief.value);
console.log('用户信息-->',userInfo.value); console.log('用户信息-->', userInfo.value);
const res = await uni.request({ const res = await uni.request({
url: baseUrl + '/cart/add', url: baseUrl + '/cart/add',
method: 'POST', method: 'POST',
@ -85,50 +89,54 @@ const addCart = async()=>{
isGoodType: productBrief.value.isGoodType isGoodType: productBrief.value.isGoodType
} }
}) })
if(res.data.code === 1) { if (res.data.code === 1) {
uni.showToast({ uni.showToast({
icon: 'success', icon: 'success',
title: "加入购物车成功" title: "加入购物车成功"
}) })
close() close()
}else{ } else {
console.log('失败原因-->',res.data); console.log('失败原因-->', res.data);
uni.showToast({ uni.showToast({
icon: 'error', icon: 'error',
title: "请求失败" title: "请求失败"
}) })
return; return;
} }
} }
// //
const decrease =()=>{ const decrease = () => {
// console.log('index-->',index); // console.log('index-->',index);
if(quantity.value > 0) { if (quantity.value > 0) {
quantity.value -= 1 quantity.value -= 1
} }
} }
// 11.8 // 11.8
const increase = () =>{ const increase = () => {
if(quantity.value <= productBrief.value.inventory) { if (quantity.value <= productBrief.value.inventory) {
quantity.value += 1 quantity.value += 1
} }
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.ml-23 { .ml-23 {
margin-left: 43.13rpx; margin-left: 43.13rpx;
} }
.mt-9 {
.mt-9 {
margin-top: 16.88rpx; margin-top: 16.88rpx;
} }
.ml-5 {
.ml-5 {
margin-left: 9.38rpx; margin-left: 9.38rpx;
} }
.mt-104 {
.mt-104 {
margin-top: 195rpx; margin-top: 195rpx;
} }
.page {
.page {
padding: 0 31.88rpx 31.88rpx 45rpx; padding: 0 31.88rpx 31.88rpx 45rpx;
background-color: #fffef8; background-color: #fffef8;
border-radius: 37.5rpx 37.5rpx 0rpx 0rpx; border-radius: 37.5rpx 37.5rpx 0rpx 0rpx;
@ -136,11 +144,13 @@ const increase = () =>{
overflow-y: auto; overflow-y: auto;
overflow-x: hidden; overflow-x: hidden;
height: 100%; height: 100%;
} }
.group {
.group {
padding: 28.13rpx 0 37.5rpx 11.25rpx; padding: 28.13rpx 0 37.5rpx 11.25rpx;
} }
.image-wrapper {
.image-wrapper {
margin-top: 76.88rpx; margin-top: 76.88rpx;
// padding-bottom: 151.88rpx; // padding-bottom: 151.88rpx;
border-radius: 5.63rpx; border-radius: 5.63rpx;
@ -148,88 +158,104 @@ const increase = () =>{
background-repeat: no-repeat; background-repeat: no-repeat;
width: 191.25rpx; width: 191.25rpx;
height: 189.38rpx; height: 189.38rpx;
} }
.image_2 {
.image_2 {
border-radius: 5.63rpx; border-radius: 5.63rpx;
width: 37.5rpx; width: 37.5rpx;
height: 37.5rpx; height: 37.5rpx;
} }
.group_2 {
.group_2 {
margin-top: 112.5rpx; margin-top: 112.5rpx;
} }
.group_3 {
.group_3 {
margin-left: 3.75rpx; margin-left: 3.75rpx;
} }
.text_2 {
.text_2 {
color: #ff0000; color: #ff0000;
font-size: 26.25rpx; font-size: 26.25rpx;
font-family: STZhongsong; font-family: STZhongsong;
line-height: 18.13rpx; line-height: 18.13rpx;
} }
.text {
.text {
color: #ff0000; color: #ff0000;
font-size: 37.5rpx; font-size: 37.5rpx;
font-family: STZhongsong; font-family: STZhongsong;
line-height: 26.92rpx; line-height: 26.92rpx;
} }
.text_3 {
.text_3 {
color: #000000; color: #000000;
font-size: 28.13rpx; font-size: 28.13rpx;
font-family: Open Sans; font-family: Open Sans;
line-height: 26.21rpx; line-height: 26.21rpx;
} }
.text_4 {
.text_4 {
color: #000000; color: #000000;
font-size: 26.25rpx; font-size: 26.25rpx;
font-family: Open Sans; font-family: Open Sans;
line-height: 24.34rpx; line-height: 24.34rpx;
} }
.image {
.image {
width: 52.5rpx; width: 52.5rpx;
height: 52.5rpx; height: 52.5rpx;
} }
.image-wrapper_2 {
.image-wrapper_2 {
padding: 11.25rpx 0; padding: 11.25rpx 0;
background-color: #f5f5dc; background-color: #f5f5dc;
border-radius: 5.63rpx 0rpx 0rpx 5.63rpx; border-radius: 5.63rpx 0rpx 0rpx 5.63rpx;
width: 52.5rpx; width: 52.5rpx;
height: 52.5rpx; height: 52.5rpx;
} }
.image_3 {
.image_3 {
width: 33.75rpx; width: 33.75rpx;
height: 33.75rpx; height: 33.75rpx;
} }
.text-wrapper {
.text-wrapper {
padding: 15rpx 0 11.25rpx; padding: 15rpx 0 11.25rpx;
background-color: #f5f5dc; background-color: #f5f5dc;
width: 52.5rpx; width: 52.5rpx;
height: 52.5rpx; height: 52.5rpx;
} }
.text_5 {
.text_5 {
color: #000000; color: #000000;
font-size: 30rpx; font-size: 30rpx;
font-family: Open Sans; font-family: Open Sans;
line-height: 21.41rpx; line-height: 21.41rpx;
} }
.image-wrapper_3 {
.image-wrapper_3 {
padding: 11.25rpx 0; padding: 11.25rpx 0;
background-color: #f5f5dc; background-color: #f5f5dc;
border-radius: 0rpx 5.63rpx 5.63rpx 0rpx; border-radius: 0rpx 5.63rpx 5.63rpx 0rpx;
width: 52.5rpx; width: 52.5rpx;
height: 52.5rpx; height: 52.5rpx;
} }
.text-wrapper_2 {
.text-wrapper_2 {
margin-right: 15rpx; margin-right: 15rpx;
padding: 22.5rpx 0; padding: 22.5rpx 0;
background-color: #ffd45a; background-color: #ffd45a;
border-radius: 93.75rpx; border-radius: 93.75rpx;
} }
.text_6 {
.text_6 {
color: #ffffff; color: #ffffff;
font-size: 30rpx; font-size: 30rpx;
font-family: Inter; font-family: Inter;
font-weight: 700; font-weight: 700;
line-height: 28.2rpx; line-height: 28.2rpx;
} }
@import url(../../../common/css/global.css); @import url(../../../common/css/global.css);
</style> </style>

File diff suppressed because it is too large Load Diff

View File

@ -1,440 +1,67 @@
<template> <view class="flex-col justify-start relative page">
<uni-popup ref="popup" :mask-click="false" background-color="white" borderRadius="10px" class="pop" type="dialog"> <view class="section"></view>
<input placeholder="联系人姓名" v-model="newContacts.name" /> <text class="font text pos">选择预约类别</text>
<input placeholder="联系方式" v-model="newContacts.phone" /> <view class="flex-row equal-division group">
<checkbox @click="handleIsDefaultChanges()" :key="newContacts.id">设置为默认联系人</checkbox> <view class="flex-col equal-division-item section_2">
<button @click="addContact">添加</button> <image
<button @click="close">取消</button> class="self-start image"
</uni-popup> src="https://ide.code.fun/api/image?token=675fbf94797f850011f2bedf&name=e29908fd7c3623fbb6854b38b828c5b8.png"
<uni-popup ref="popup1" :mask-click="false" background-color="white" borderRadius="10px" class="pop"> />
<input placeholder="联系人姓名" v-model="newContact.name" /> <text class="self-center font mt-7">整套约拍</text>
<input placeholder="联系方式" v-model="newContact.phone" />
<checkbox @click="handleIsDefaultChange" :key="newContact.id">设置为默认联系人</checkbox>
<button @click="saveModifiedContact">保存</button>
<button @click="close1">取消</button>
</uni-popup>
<view class="flex-col page">
<view class="flex-col">
<view class="flex-row justify-center items-center relative group">
<text class="text">联系人信息</text>
<image class="image pos"
src="https://ide.code.fun/api/image?token=673329a3c471750012deb1ec&name=888e11f2c452b3d64f79a5136a779376.png" />
</view> </view>
<view class="mt-16 flex-col"> <view class="ml-48 flex-col equal-division-item section_3">
<view class="flex-row justify-between items-center list-item mt-5" <image
v-for="(item, index) in filteredContacts" :key="index"> class="self-start image"
<view class="flex-row items-center"> src="https://ide.code.fun/api/image?token=675fbf94797f850011f2bedf&name=ca4da1e3507e3276bd2cf0946c8322bd.png"
<text class="font ml-9">{{item.name}}</text> />
<text class="font_2 ml-9">{{item.phone}} -{{item.id}}</text> <text class="mt-8 self-center font text_2">自带服装</text>
</view>
<text v-if="item.isDefault === 1" class="font_3 ml-12">默认联系人</text>
<view class="flex-row group_2">
<image class="image_2"
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FEclWfXMx-bj.png"
@click="editContact(index)" />
<image class="ml-12 image_2"
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FzgFMedLP-sc.png"
@click="deleteContact(index)" />
</view> </view>
</view> </view>
<text class="font text_3 pos_2">选择服装类别</text>
<view class="flex-col section_4 pos_3">
<view class="flex-col list">
<view class="flex-row justify-between section_5" v-for="(item, index) in items" :key="index">
<view class="flex-row items-end self-center">
<image
class="image_2"
src="https://ide.code.fun/api/image?token=675fbf94797f850011f2bedf&name=72dc2b1fa62db33ed73692af7f65cb9b.png"
/>
<view class="ml-20 flex-col group_2">
<text class="self-start font_2 text_4">简约风尚</text>
<view class="flex-row items-center self-stretch group_3">
<view class="group_4">
<text class="font_2">价位</text>
<text class="font_4"></text>
</view>
<text class="ml-6 font_3 text_5">100-200</text>
</view>
<text class="self-stretch font_5 text_6">传承非遗之美简约演绎经典</text>
</view> </view>
</view> </view>
<view class="flex-col justify-start items-center section mt-431" @click="open"> <image
<view class="flex-col justify-start items-center text-wrapper"><text class="text_2">添加新联系人</text></view> class="self-start image_3 image_4"
src="https://ide.code.fun/api/image?token=675fbf94797f850011f2bedf&name=eee721f36de3196113485ea7e5c6b5ad.png"
/>
</view> </view>
</view> </view>
</template> <view class="mt-22 flex-row justify-between items-center section_9">
<view class="flex-row">
<script setup> <image
import { class="shrink-0 self-center image_9"
ref, src="https://ide.code.fun/api/image?token=675fbf94797f850011f2bedf&name=0ed6323496056f793bd3c25b3dcd9eb6.png"
onMounted, />
watch, <text class="self-start text_15">88.</text>
set <text class="self-center font_2 text_14">定金</text>
} from 'vue' <text class="self-center text_17">00</text>
import { <view class="flex-row shrink-0 section_10">
baseUrl <text class="text_18">费用说明</text>
} from '../../../api/request' <image
class="shrink-0 image_10 ml-3"
src="https://ide.code.fun/api/image?token=675fbf94797f850011f2bedf&name=0455b173571a47fdc438588e788f26c5.png"
onMounted(() => { />
getContacts() </view>
}) </view>
<view class="flex-col justify-start items-center text-wrapper"><text class="font text_16">确定预约</text></view>
const newContact = ref({ </view>
name: '', </view>
phone: '', </view>
isDefault: 0,
id: 0
})
const newContacts = ref({
name: '',
phone: '',
isDefault: 0,
id: 0
})
const editContact = async (index) => {
popup1.value.open('center')
const contact = filteredContacts.value[index]
newContact.value = {
name: contact.name,
id: contact.id,
phone: contact.phone,
isDefault: contact.isDefault
}
}
const handleIsDefaultChanges = (e) => {
let currentValue = newContact.value.isDefault
let updatedValue = currentValue === 0 ? 1 : 0
newContact.value.isDefault = updatedValue
console.log(updatedValue)
}
const handleIsDefaultChange = (e) => {
//console.log(newContact.value.isDefault)
let currentValue = newContact.value.isDefault
let updatedValue = currentValue === 0 ? 1 : 0
newContact.value.isDefault = updatedValue
console.log(updatedValue)
}
//
const getContacts = async () => {
const res = await uni.request({
url: baseUrl + '/contacts/list',
method: 'POST',
header: {
cookie: wx.getStorageSync('cookie')
}
})
// console.log(res)
if (res.data.code === 1) {
const correctContacts = []
let defaultContact = null
res.data.data.forEach((contact) => {
if (contact.isDefault === 1) {
if (!defaultContact) {
defaultContact = contact
} else {
contact.isDefault = 0
}
}
correctContacts.push(contact)
})
filteredContacts.value = correctContacts
if (defaultContact) {
const index = filteredContacts.value.findIndex(
c => c.id === defaultContact.id
);
if (index!== -1) {
filteredContacts.value[index].isDefault = 1
}
}
} else {
uni.showToast({
icon: 'error',
title: '获取失败'
})
}
}
const searchText = ref('')
const filteredContacts = ref([])
watch(searchText, () => {
if (searchText.value === '') {
filteredContacts.value = contacts.value;
} else {
filteredContacts.value = contacts.value.filter(contact => {
return contact.name.includes(searchText.value) || contact.phone.includes(
searchText.value)
})
}
})
//
const addContact = async () => {
popup.value.close();
//
if (newContacts.value.isDefault) {
for (let i = 0; i < filteredContacts.value.length; i++) {
if (filteredContacts.value[i].isDefault === 1) {
filteredContacts.value[i].isDefault = 0
}
}
}
const res = await uni.request({
url: baseUrl + '/contacts/add',
method: 'POST',
header: {
cookie: wx.getStorageSync('cookie')
},
data: {
name: newContacts.value.name,
phone: newContacts.value.phone,
isDefault: newContacts.value.isDefault
}
});
if (res.data.code === 1) {
console.log('添加成功')
newContacts.value = {
name: '',
phone: '',
isDefault: 0,
id: 0
};
} else {
uni.showToast({
icon: 'error',
title: '添加失败'
});
}
getContacts()
}
//
const deleteContact = async (index) => {
const res = await uni.request({
url: baseUrl + '/contacts/delete',
method: 'POST',
header: {
cookie: wx.getStorageSync('cookie')
},
data: {
id: filteredContacts.value[index].id,
}
})
console.log(res, '1111111111111');
if (res.data.code === 1) {
console.log('删除成功')
} else {
uni.showToast({
icon: 'error',
title: '删除失败'
});
}
getContacts()
}
const contactToModify = ref({})
const indexToModify = ref(null)
//
const saveModifiedContact = async () => {
popup1.value.close();
if (!newContact.value.name ||!newContact.value.phone) {
uni.showToast({
icon: 'error',
title: '不能为空'
})
return
}
if (newContact.value.isDefault) {
for (let i = 0; i < filteredContacts.value.length; i++) {
if (filteredContacts.value[i].isDefault === 1) {
filteredContacts.value[i].isDefault = 0
}
}
}
const res = await uni.request({
url: baseUrl + '/contacts/update',
method: 'POST',
header: {
cookie: wx.getStorageSync('cookie')
},
data: {
name: newContact.value.name,
phone: newContact.value.phone,
id: newContact.value.id,
isDefault: newContact.value.isDefault
}
})
if (res.data.code === 1) {
console.log('更新成功')
console.log(newContact.value.isDefault,'000000000000000000000000 ')
} else {
uni.showToast({
icon: 'error',
title: '更新失败'
})
}
getContacts()
}
const popup = ref(null)
const popup1 = ref(null)
const open = () => {
popup.value.open('center')
}
const open1 = () => {
popup1.value.open('center')
}
const close = () => {
popup.value.close()
}
const close1 = () => {
popup1.value.close()
}
</script>
<style lang="scss" scoped>
.font_3 {
color: #007aff;
font-size: 14px;
}
.mt-5 {
margin-top: 9.38rpx;
}
.ml-9 {
margin-left: 16.88rpx;
}
.mt-431 {
margin-top: 808.13rpx;
}
.page {
padding-top: 18.75rpx;
background-color: #f5f5dc;
border-radius: 28.13rpx 28.13rpx 0rpx 0rpx;
width: 100%;
overflow-y: auto;
overflow-x: hidden;
height: 100%;
}
.group {
padding: 11.25rpx 24.38rpx 7.5rpx;
}
.text {
color: #323232;
font-size: 37.5rpx;
font-family: Open Sans;
line-height: 35.21rpx;
}
.image {
width: 52.5rpx;
height: 52.5rpx;
}
.pos {
position: absolute;
right: 24.38rpx;
top: 50%;
transform: translateY(-50%);
}
.list-item {
padding: 52.5rpx 15rpx;
background-color: #fffef8;
border-bottom: solid 1.88rpx #c8c8c8;
}
.list-item:first-child {
margin-top: 0;
}
.image_3 {
width: 33.75rpx;
height: 33.75rpx;
}
.font {
font-size: 30rpx;
font-family: Open Sans;
line-height: 27.19rpx;
color: #323232;
}
.font_2 {
font-size: 30rpx;
font-family: Open Sans;
line-height: 22.05rpx;
color: #323232;
}
.group_2 {
margin-right: 11.25rpx;
}
.image_2 {
width: 39.38rpx;
height: 39.38rpx;
}
.section {
margin-left: 16.88rpx;
padding: 22.5rpx 0 15rpx;
background-color: #fffef8;
}
.text-wrapper {
padding: 30rpx 0;
background-color: #fbb612;
border-radius: 75rpx;
width: 639.38rpx;
}
.text_2 {
color: #ffffff;
font-size: 33.75rpx;
font-family: Open Sans;
line-height: 31.22rpx;
}
.pop{
height: 300px;
width: 400px;
padding: 20px;
/* 输入框的通用样式 */
input {
margin-left: 10%;
width: 80%; //
margin-bottom: 15px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
/* 复选框的通用样式 */
checkbox {
margin-bottom: 15px;
}
/* 按钮的通用样式 */
button {
width: 45%; //
padding: 8px 0;
border: none;
border-radius: 5px;
font-size: 14px;
cursor: pointer;
transition: background-color 0.3s ease;
}
}
/* 第一个弹窗添加联系人的特定按钮样式 */
.pop:first-child button:first-child {
background-color: #007aff;
color: white;
}
.pop:first-child button:last-child {
background-color: #ccc;
color: #333;
}
/* 第二个弹窗修改联系人的特定按钮样式 */
.pop:last-child button:first-child {
background-color: #4caf50;
color: white;
}
.pop:last-child button:last-child {
background-color: #ccc;
color: #333;
}
@import url(/common/css/global.css)
</style>