001
This commit is contained in:
parent
83b7f8264f
commit
a0726463bc
|
@ -196,6 +196,13 @@
|
|||
{
|
||||
"navigationBarTitleText" : ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"path" : "pages/syy",
|
||||
"style" :
|
||||
{
|
||||
"navigationBarTitleText" : ""
|
||||
}
|
||||
}
|
||||
],
|
||||
"globalStyle": {
|
||||
|
|
|
@ -1,235 +1,261 @@
|
|||
<template>
|
||||
<view class="flex-col page">
|
||||
<view class="flex-row group">
|
||||
<view class=" ">
|
||||
<image
|
||||
class="flex-col justify-start items-end shrink-0 self-start image-wrapper"
|
||||
:src="productBrief.goodImg"
|
||||
/>
|
||||
</view>
|
||||
<view class="flex-row flex-1 ml-23">
|
||||
<view class="flex-col flex-1 self-start group_2">
|
||||
<view class="self-start group_3">
|
||||
<text class="text_2">¥</text>
|
||||
<text class="text">{{ productBrief.price }}</text>
|
||||
</view>
|
||||
<view class="mt-14 flex-col items-start self-stretch">
|
||||
<text class="text_3">{{productBrief.name}}</text>
|
||||
<!-- <text class="text_4 mt-9">{{已选:蓝色发簪}}</text> -->
|
||||
</view>
|
||||
</view>
|
||||
<view class="flex-col shrink-0 ml-5">
|
||||
<image
|
||||
class="self-end image"
|
||||
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FxSHTnKhk-close.png"
|
||||
@click="close()"
|
||||
/>
|
||||
<view class="flex-row self-stretch mt-104">
|
||||
<view class="flex-col justify-start items-center image-wrapper_2">
|
||||
<image
|
||||
class="image_3"
|
||||
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FosWvYyNx-short1.png"
|
||||
@click="decrease"
|
||||
/>
|
||||
</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">
|
||||
<image
|
||||
class="image_3"
|
||||
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FGbdSQDul-add1.png"
|
||||
@click="increase"
|
||||
/>
|
||||
</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-row group">
|
||||
<view class=" ">
|
||||
<image class="flex-col justify-start items-end shrink-0 self-start image-wrapper"
|
||||
:src="productBrief.goodImg" />
|
||||
</view>
|
||||
<view class="flex-row flex-1 ml-23">
|
||||
<view class="flex-col flex-1 self-start group_2">
|
||||
<view class="self-start group_3">
|
||||
<text class="text_2">¥</text>
|
||||
<text class="text">{{ productBrief.price }}</text>
|
||||
</view>
|
||||
<view class="mt-14 flex-col items-start self-stretch">
|
||||
<text class="text_3">{{productBrief.name}}</text>
|
||||
<!-- <text class="text_4 mt-9">{{已选:蓝色发簪}}</text> -->
|
||||
</view>
|
||||
</view>
|
||||
<view class="flex-col shrink-0 ml-5">
|
||||
<image class="self-end image"
|
||||
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FxSHTnKhk-close.png"
|
||||
@click="close()" />
|
||||
<view class="flex-row self-stretch mt-104">
|
||||
<view class="flex-col justify-start items-center image-wrapper_2">
|
||||
<image class="image_3"
|
||||
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FosWvYyNx-short1.png"
|
||||
@click="decrease" />
|
||||
</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">
|
||||
<image class="image_3"
|
||||
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FGbdSQDul-add1.png"
|
||||
@click="increase" />
|
||||
</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>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { onMounted , ref } from 'vue';
|
||||
import emitter from '../../../utils/emitter';
|
||||
import { onLoad , onShow } 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);
|
||||
productBrief.value = val
|
||||
import {
|
||||
onMounted,
|
||||
ref
|
||||
} from 'vue';
|
||||
import emitter from '../../../utils/emitter';
|
||||
import {
|
||||
onLoad,
|
||||
onShow
|
||||
} 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);
|
||||
productBrief.value = val
|
||||
})
|
||||
})
|
||||
})
|
||||
onShow(()=>{
|
||||
userInfo.value = wx.getStorageSync('userInfo') //获取用户信息
|
||||
})
|
||||
const close =()=>{
|
||||
emitter.emit('close')
|
||||
}
|
||||
const addCart = async()=>{
|
||||
console.log('商品brief-->',productBrief.value);
|
||||
console.log('用户信息-->',userInfo.value);
|
||||
const res = await uni.request({
|
||||
url: baseUrl + '/cart/add',
|
||||
method: 'POST',
|
||||
header: {
|
||||
cookie: wx.getStorageSync('cookie')
|
||||
},
|
||||
data: {
|
||||
userId: userInfo.value.id,
|
||||
goodId: productBrief.value.id,
|
||||
quantity: quantity.value,
|
||||
subtotal: productBrief.value.price * quantity.value,
|
||||
isGoodType: productBrief.value.isGoodType
|
||||
onShow(() => {
|
||||
userInfo.value = wx.getStorageSync('userInfo') //获取用户信息
|
||||
})
|
||||
const close = () => {
|
||||
emitter.emit('close')
|
||||
}
|
||||
const addCart = async () => {
|
||||
console.log('商品brief-->', productBrief.value);
|
||||
console.log('用户信息-->', userInfo.value);
|
||||
const res = await uni.request({
|
||||
url: baseUrl + '/cart/add',
|
||||
method: 'POST',
|
||||
header: {
|
||||
cookie: wx.getStorageSync('cookie')
|
||||
},
|
||||
data: {
|
||||
userId: userInfo.value.id,
|
||||
goodId: productBrief.value.id,
|
||||
quantity: quantity.value,
|
||||
subtotal: productBrief.value.price * quantity.value,
|
||||
isGoodType: productBrief.value.isGoodType
|
||||
}
|
||||
})
|
||||
if (res.data.code === 1) {
|
||||
uni.showToast({
|
||||
icon: 'success',
|
||||
title: "加入购物车成功"
|
||||
})
|
||||
close()
|
||||
} else {
|
||||
console.log('失败原因-->', res.data);
|
||||
uni.showToast({
|
||||
icon: 'error',
|
||||
title: "请求失败"
|
||||
})
|
||||
return;
|
||||
}
|
||||
})
|
||||
if(res.data.code === 1) {
|
||||
uni.showToast({
|
||||
icon: 'success',
|
||||
title: "加入购物车成功"
|
||||
})
|
||||
close()
|
||||
}else{
|
||||
console.log('失败原因-->',res.data);
|
||||
uni.showToast({
|
||||
icon: 'error',
|
||||
title: "请求失败"
|
||||
})
|
||||
return;
|
||||
}
|
||||
}
|
||||
//减少商品
|
||||
const decrease =()=>{
|
||||
// console.log('index-->',index);
|
||||
if(quantity.value > 0) {
|
||||
quantity.value -= 1
|
||||
//减少商品
|
||||
const decrease = () => {
|
||||
// console.log('index-->',index);
|
||||
if (quantity.value > 0) {
|
||||
quantity.value -= 1
|
||||
}
|
||||
}
|
||||
}
|
||||
//这里应该结合库存有多少 11.8
|
||||
const increase = () =>{
|
||||
if(quantity.value <= productBrief.value.inventory) {
|
||||
quantity.value += 1
|
||||
//这里应该结合库存有多少 11.8
|
||||
const increase = () => {
|
||||
if (quantity.value <= productBrief.value.inventory) {
|
||||
quantity.value += 1
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.ml-23 {
|
||||
margin-left: 43.13rpx;
|
||||
}
|
||||
.mt-9 {
|
||||
margin-top: 16.88rpx;
|
||||
}
|
||||
.ml-5 {
|
||||
margin-left: 9.38rpx;
|
||||
}
|
||||
.mt-104 {
|
||||
margin-top: 195rpx;
|
||||
}
|
||||
.page {
|
||||
padding: 0 31.88rpx 31.88rpx 45rpx;
|
||||
background-color: #fffef8;
|
||||
border-radius: 37.5rpx 37.5rpx 0rpx 0rpx;
|
||||
width: 100%;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
height: 100%;
|
||||
}
|
||||
.group {
|
||||
padding: 28.13rpx 0 37.5rpx 11.25rpx;
|
||||
}
|
||||
.image-wrapper {
|
||||
margin-top: 76.88rpx;
|
||||
// padding-bottom: 151.88rpx;
|
||||
border-radius: 5.63rpx;
|
||||
background-size: 100% 100%;
|
||||
background-repeat: no-repeat;
|
||||
width: 191.25rpx;
|
||||
height: 189.38rpx;
|
||||
}
|
||||
.image_2 {
|
||||
border-radius: 5.63rpx;
|
||||
width: 37.5rpx;
|
||||
height: 37.5rpx;
|
||||
}
|
||||
.group_2 {
|
||||
margin-top: 112.5rpx;
|
||||
}
|
||||
.group_3 {
|
||||
margin-left: 3.75rpx;
|
||||
}
|
||||
.text_2 {
|
||||
color: #ff0000;
|
||||
font-size: 26.25rpx;
|
||||
font-family: STZhongsong;
|
||||
line-height: 18.13rpx;
|
||||
}
|
||||
.text {
|
||||
color: #ff0000;
|
||||
font-size: 37.5rpx;
|
||||
font-family: STZhongsong;
|
||||
line-height: 26.92rpx;
|
||||
}
|
||||
.text_3 {
|
||||
color: #000000;
|
||||
font-size: 28.13rpx;
|
||||
font-family: Open Sans;
|
||||
line-height: 26.21rpx;
|
||||
}
|
||||
.text_4 {
|
||||
color: #000000;
|
||||
font-size: 26.25rpx;
|
||||
font-family: Open Sans;
|
||||
line-height: 24.34rpx;
|
||||
}
|
||||
.image {
|
||||
width: 52.5rpx;
|
||||
height: 52.5rpx;
|
||||
}
|
||||
.image-wrapper_2 {
|
||||
padding: 11.25rpx 0;
|
||||
background-color: #f5f5dc;
|
||||
border-radius: 5.63rpx 0rpx 0rpx 5.63rpx;
|
||||
width: 52.5rpx;
|
||||
height: 52.5rpx;
|
||||
}
|
||||
.image_3 {
|
||||
width: 33.75rpx;
|
||||
height: 33.75rpx;
|
||||
}
|
||||
.text-wrapper {
|
||||
padding: 15rpx 0 11.25rpx;
|
||||
background-color: #f5f5dc;
|
||||
width: 52.5rpx;
|
||||
height: 52.5rpx;
|
||||
}
|
||||
.text_5 {
|
||||
color: #000000;
|
||||
font-size: 30rpx;
|
||||
font-family: Open Sans;
|
||||
line-height: 21.41rpx;
|
||||
}
|
||||
.image-wrapper_3 {
|
||||
padding: 11.25rpx 0;
|
||||
background-color: #f5f5dc;
|
||||
border-radius: 0rpx 5.63rpx 5.63rpx 0rpx;
|
||||
width: 52.5rpx;
|
||||
height: 52.5rpx;
|
||||
}
|
||||
.text-wrapper_2 {
|
||||
margin-right: 15rpx;
|
||||
padding: 22.5rpx 0;
|
||||
background-color: #ffd45a;
|
||||
border-radius: 93.75rpx;
|
||||
}
|
||||
.text_6 {
|
||||
color: #ffffff;
|
||||
font-size: 30rpx;
|
||||
font-family: Inter;
|
||||
font-weight: 700;
|
||||
line-height: 28.2rpx;
|
||||
}
|
||||
.ml-23 {
|
||||
margin-left: 43.13rpx;
|
||||
}
|
||||
|
||||
.mt-9 {
|
||||
margin-top: 16.88rpx;
|
||||
}
|
||||
|
||||
.ml-5 {
|
||||
margin-left: 9.38rpx;
|
||||
}
|
||||
|
||||
.mt-104 {
|
||||
margin-top: 195rpx;
|
||||
}
|
||||
|
||||
.page {
|
||||
padding: 0 31.88rpx 31.88rpx 45rpx;
|
||||
background-color: #fffef8;
|
||||
border-radius: 37.5rpx 37.5rpx 0rpx 0rpx;
|
||||
width: 100%;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.group {
|
||||
padding: 28.13rpx 0 37.5rpx 11.25rpx;
|
||||
}
|
||||
|
||||
.image-wrapper {
|
||||
margin-top: 76.88rpx;
|
||||
// padding-bottom: 151.88rpx;
|
||||
border-radius: 5.63rpx;
|
||||
background-size: 100% 100%;
|
||||
background-repeat: no-repeat;
|
||||
width: 191.25rpx;
|
||||
height: 189.38rpx;
|
||||
}
|
||||
|
||||
.image_2 {
|
||||
border-radius: 5.63rpx;
|
||||
width: 37.5rpx;
|
||||
height: 37.5rpx;
|
||||
}
|
||||
|
||||
.group_2 {
|
||||
margin-top: 112.5rpx;
|
||||
}
|
||||
|
||||
.group_3 {
|
||||
margin-left: 3.75rpx;
|
||||
}
|
||||
|
||||
.text_2 {
|
||||
color: #ff0000;
|
||||
font-size: 26.25rpx;
|
||||
font-family: STZhongsong;
|
||||
line-height: 18.13rpx;
|
||||
}
|
||||
|
||||
.text {
|
||||
color: #ff0000;
|
||||
font-size: 37.5rpx;
|
||||
font-family: STZhongsong;
|
||||
line-height: 26.92rpx;
|
||||
}
|
||||
|
||||
.text_3 {
|
||||
color: #000000;
|
||||
font-size: 28.13rpx;
|
||||
font-family: Open Sans;
|
||||
line-height: 26.21rpx;
|
||||
}
|
||||
|
||||
.text_4 {
|
||||
color: #000000;
|
||||
font-size: 26.25rpx;
|
||||
font-family: Open Sans;
|
||||
line-height: 24.34rpx;
|
||||
}
|
||||
|
||||
.image {
|
||||
width: 52.5rpx;
|
||||
height: 52.5rpx;
|
||||
}
|
||||
|
||||
.image-wrapper_2 {
|
||||
padding: 11.25rpx 0;
|
||||
background-color: #f5f5dc;
|
||||
border-radius: 5.63rpx 0rpx 0rpx 5.63rpx;
|
||||
width: 52.5rpx;
|
||||
height: 52.5rpx;
|
||||
}
|
||||
|
||||
.image_3 {
|
||||
width: 33.75rpx;
|
||||
height: 33.75rpx;
|
||||
}
|
||||
|
||||
.text-wrapper {
|
||||
padding: 15rpx 0 11.25rpx;
|
||||
background-color: #f5f5dc;
|
||||
width: 52.5rpx;
|
||||
height: 52.5rpx;
|
||||
}
|
||||
|
||||
.text_5 {
|
||||
color: #000000;
|
||||
font-size: 30rpx;
|
||||
font-family: Open Sans;
|
||||
line-height: 21.41rpx;
|
||||
}
|
||||
|
||||
.image-wrapper_3 {
|
||||
padding: 11.25rpx 0;
|
||||
background-color: #f5f5dc;
|
||||
border-radius: 0rpx 5.63rpx 5.63rpx 0rpx;
|
||||
width: 52.5rpx;
|
||||
height: 52.5rpx;
|
||||
}
|
||||
|
||||
.text-wrapper_2 {
|
||||
margin-right: 15rpx;
|
||||
padding: 22.5rpx 0;
|
||||
background-color: #ffd45a;
|
||||
border-radius: 93.75rpx;
|
||||
}
|
||||
|
||||
.text_6 {
|
||||
color: #ffffff;
|
||||
font-size: 30rpx;
|
||||
font-family: Inter;
|
||||
font-weight: 700;
|
||||
line-height: 28.2rpx;
|
||||
}
|
||||
|
||||
@import url(../../../common/css/global.css);
|
||||
</style>
|
||||
</style>
|
File diff suppressed because it is too large
Load Diff
507
pages/text.vue
507
pages/text.vue
|
@ -1,440 +1,67 @@
|
|||
<template>
|
||||
<uni-popup ref="popup" :mask-click="false" background-color="white" borderRadius="10px" class="pop" type="dialog">
|
||||
<input placeholder="联系人姓名" v-model="newContacts.name" />
|
||||
<input placeholder="联系方式" v-model="newContacts.phone" />
|
||||
<checkbox @click="handleIsDefaultChanges()" :key="newContacts.id">设置为默认联系人</checkbox>
|
||||
<button @click="addContact">添加</button>
|
||||
<button @click="close">取消</button>
|
||||
</uni-popup>
|
||||
<uni-popup ref="popup1" :mask-click="false" background-color="white" borderRadius="10px" class="pop">
|
||||
<input placeholder="联系人姓名" v-model="newContact.name" />
|
||||
<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 class="mt-16 flex-col">
|
||||
<view class="flex-row justify-between items-center list-item mt-5"
|
||||
v-for="(item, index) in filteredContacts" :key="index">
|
||||
<view class="flex-row items-center">
|
||||
<text class="font ml-9">{{item.name}}</text>
|
||||
<text class="font_2 ml-9">{{item.phone}} -{{item.id}}</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>
|
||||
<view class="flex-col justify-start items-center section mt-431" @click="open">
|
||||
<view class="flex-col justify-start items-center text-wrapper"><text class="text_2">添加新联系人</text></view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {
|
||||
ref,
|
||||
onMounted,
|
||||
watch,
|
||||
set
|
||||
} from 'vue'
|
||||
import {
|
||||
baseUrl
|
||||
} from '../../../api/request'
|
||||
|
||||
|
||||
onMounted(() => {
|
||||
getContacts()
|
||||
})
|
||||
|
||||
const newContact = ref({
|
||||
name: '',
|
||||
phone: '',
|
||||
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>
|
||||
<view class="flex-col justify-start relative page">
|
||||
<view class="section"></view>
|
||||
<text class="font text pos">选择预约类别</text>
|
||||
<view class="flex-row equal-division group">
|
||||
<view class="flex-col equal-division-item section_2">
|
||||
<image
|
||||
class="self-start image"
|
||||
src="https://ide.code.fun/api/image?token=675fbf94797f850011f2bedf&name=e29908fd7c3623fbb6854b38b828c5b8.png"
|
||||
/>
|
||||
<text class="self-center font mt-7">整套约拍</text>
|
||||
</view>
|
||||
<view class="ml-48 flex-col equal-division-item section_3">
|
||||
<image
|
||||
class="self-start image"
|
||||
src="https://ide.code.fun/api/image?token=675fbf94797f850011f2bedf&name=ca4da1e3507e3276bd2cf0946c8322bd.png"
|
||||
/>
|
||||
<text class="mt-8 self-center font text_2">自带服装</text>
|
||||
</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>
|
||||
<image
|
||||
class="self-start image_3 image_4"
|
||||
src="https://ide.code.fun/api/image?token=675fbf94797f850011f2bedf&name=eee721f36de3196113485ea7e5c6b5ad.png"
|
||||
/>
|
||||
</view>
|
||||
</view>
|
||||
<view class="mt-22 flex-row justify-between items-center section_9">
|
||||
<view class="flex-row">
|
||||
<image
|
||||
class="shrink-0 self-center image_9"
|
||||
src="https://ide.code.fun/api/image?token=675fbf94797f850011f2bedf&name=0ed6323496056f793bd3c25b3dcd9eb6.png"
|
||||
/>
|
||||
<text class="self-start text_15">88.</text>
|
||||
<text class="self-center font_2 text_14">定金:</text>
|
||||
<text class="self-center text_17">00</text>
|
||||
<view class="flex-row shrink-0 section_10">
|
||||
<text class="text_18">费用说明</text>
|
||||
<image
|
||||
class="shrink-0 image_10 ml-3"
|
||||
src="https://ide.code.fun/api/image?token=675fbf94797f850011f2bedf&name=0455b173571a47fdc438588e788f26c5.png"
|
||||
/>
|
||||
</view>
|
||||
</view>
|
||||
<view class="flex-col justify-start items-center text-wrapper"><text class="font text_16">确定预约</text></view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
Loading…
Reference in New Issue
Block a user