轮播图、购物车bug

This commit is contained in:
yuanteng0011 2025-03-19 20:52:14 +08:00
parent 08bb73c838
commit f6edd09641
4 changed files with 82 additions and 44 deletions

View File

@ -6,4 +6,4 @@ export const domain = 'https://www.carboner.cn:8888/api'
export const myIp = 'http://8.130.119.119:9092/api' export const myIp = 'http://8.130.119.119:9092/api'
export const nwct = 'https://winning-mouse-internally.ngrok-free.app/api' export const nwct = 'https://winning-mouse-internally.ngrok-free.app/api'
export const suiUrl = '' export const suiUrl = ''
export const baseUrl = domain export const baseUrl = Url

View File

@ -178,7 +178,7 @@
item.checked = false // item.checked = false //
}) })
} }
console.log('products-->', products.value); // console.log('products-->', products.value);
} }
//id //id
const getProductCart = async () => { const getProductCart = async () => {
@ -275,6 +275,7 @@
// console.log('---->', event); // // console.log('---->', event); //
// console.log('length---->', event.detail.value.length); // console.log('length---->', event.detail.value.length);
// console.log('product--->',products.value); // console.log('product--->',products.value);
let flagArr = new Array(products.value.length).fill(0) //
if (event.detail.value.length == products.value.length) { // if (event.detail.value.length == products.value.length) { //
allCheck.value = true allCheck.value = true
} else { } else {
@ -283,7 +284,7 @@
checkedData.value = [] // checkedData.value = [] //
totalPrice.value = 0; totalPrice.value = 0;
let count = 0; //checkedDatanull let count = 0; //checkedDatanull
console.log('event--->', event.detail.value); // console.log('event--->', event);
console.log('现在的商品---->',products.value); console.log('现在的商品---->',products.value);
if (!event.detail.value.length) { if (!event.detail.value.length) {
// products.value[parseInt(event.detail.value)].checked = true; // // products.value[parseInt(event.detail.value)].checked = true; //
@ -304,18 +305,23 @@
} }
event.detail.value.forEach((item) => { event.detail.value.forEach((item) => {
products.value[parseInt(item)].checked = true products.value[parseInt(item)].checked = true
products.value.forEach((item) =>{ flagArr[parseInt(item)] = 1
products.value.forEach((proItem,index,arr) => { //false
}) if(flagArr[index] !== 1) {
}) products.value[index].checked = false
//checkboxGroup detail.valueidcheckedtrue()
products.value.forEach((x) => {
event.detail.value.forEach((y) => {
if (x.value == y) {
x.checked = true
} }
}) })
}) })
//checkboxGroup detail.valueidcheckedtrue()
// products.value.forEach((x) => {
// event.detail.value.forEach((y) => {
// if (x.value == y) {
// x.checked = true
// } else {
// x.checked = false
// }
// })
// })
event.detail.value.forEach((item) => { //checkedData event.detail.value.forEach((item) => { //checkedData
console.log('products.value[parseInt(item)].goodId', products.value[parseInt(item)].goodId); console.log('products.value[parseInt(item)].goodId', products.value[parseInt(item)].goodId);
if (products.value[parseInt(item)] !== null) { if (products.value[parseInt(item)] !== null) {

View File

@ -74,6 +74,8 @@ const sort =ref([{}]) //商品类别对象数组
const headerList = ref([{}]) // const headerList = ref([{}]) //
const productList = ref([{}]) // const productList = ref([{}]) //
const cookie = wx.getStorageSync("cookie") const cookie = wx.getStorageSync("cookie")
const imgList = ref([]) //
const carouseList = ref([]) //
const product_type = ref({ const product_type = ref({
type: "材料包" type: "材料包"
@ -83,14 +85,39 @@ onLoad( async (options)=>{
getFonts() getFonts()
await Getsort() await Getsort()
await changeTypes( sort.value[0] , 0 ) // await changeTypes( sort.value[0] , 0 ) //
await getCarouseList()
}) })
onPullDownRefresh( async ()=>{ // onPullDownRefresh( async ()=>{ //
await Getsort() await Getsort()
await changeTypes( sort.value[0] , 0 ) // await changeTypes( sort.value[0] , 0 ) //
await getCarouseList()
setTimeout(()=>{ setTimeout(()=>{
uni.stopPullDownRefresh() // uni.stopPullDownRefresh() //
},1000) },1000)
}) })
const getCarouseList = async () => { //
const res = await uni.request({
url: baseUrl + '/banner/query',
method: 'POST',
header: {
cookie
},
data: {
type: '实体类'
}
})
if(res.data.code === 1) {
console.log('轮播图信息--->',res.data.data);
carouseList.value = res.data.data
carouseList.value.forEach((item)=>{
imgList.value.push({
url: publicPath + item.url
})
})
}
}
// //
const Getsort = async ()=>{ const Getsort = async ()=>{
const res = await uni.request({ const res = await uni.request({
@ -119,7 +146,7 @@ const Getsort = async ()=>{
duration: 2000 duration: 2000
}) })
} }
console.log('获取商品分类==>',res.data); // console.log('==>',res.data.data);
} }
// //
const changeTypes = async (item , index) =>{ const changeTypes = async (item , index) =>{
@ -166,21 +193,6 @@ const goToProduct = (item) => {
const imgList = ref([{
url: storeHomeUrl + '/main/banner1.png',
id: 1
},{
url: storeHomeUrl + '/main/banner2.png',
id: 2
},{
url: storeHomeUrl + '/main/banner3.png',
id: 3
},{
url: storeHomeUrl + '/main/banner4.png',
id: 4
},])

View File

@ -45,7 +45,7 @@
<script setup> <script setup>
import { ref , onMounted } from 'vue' import { ref , onMounted } from 'vue'
import { baseUrl } from '../../../api/request'; import { baseUrl } from '../../../api/request';
import { onLoad } from "@dcloudio/uni-app"; import { onLoad,onPullDownRefresh } from "@dcloudio/uni-app";
import { getFonts } from '../../../common/globalFont'; import { getFonts } from '../../../common/globalFont';
import { workshopUrl } from '../../../common/globalImagesUrl'; import { workshopUrl } from '../../../common/globalImagesUrl';
import { publicPath } from '../../../common/globalImagesUrl'; import { publicPath } from '../../../common/globalImagesUrl';
@ -53,13 +53,47 @@ import carousel from '@/components/vear-carousel/vear-carousel'
const products = ref() const products = ref()
const cookie = wx.getStorageSync("cookie") const cookie = wx.getStorageSync("cookie")
const bkgUrl = ref(workshopUrl + '/index/bkg.png') const bkgUrl = ref(workshopUrl + '/index/bkg.png')
const carouseList = ref([]) //
const imgList = ref([]) //
onLoad(() => { onLoad(() => {
getFonts() getFonts()
}) })
onMounted(()=>{ onMounted(()=>{
getProducts() getProducts()
getCarouseList()
}) })
onPullDownRefresh( async ()=>{
getProducts()
getCarouseList()
setTimeout(()=>{
uni.stopPullDownRefresh() //
},1000)
})
const getCarouseList = async () => {
const res = await uni.request({
url: baseUrl + '/banner/query',
method: 'POST',
header: {
cookie
},
data: {
type: '服务类'
}
})
console.log('轮播图---->',res.data);
if(res.data.code === 1) {
carouseList.value = res.data.data
carouseList.value.forEach((item)=>{
imgList.value.push({
url: publicPath + item.url
})
})
}
}
const getProducts = async ()=> { const getProducts = async ()=> {
const res = await uni.request({ const res = await uni.request({
url: baseUrl + '/goods/service/list/card', url: baseUrl + '/goods/service/list/card',
@ -78,23 +112,9 @@ const jump_detail =(item,index)=>{
} }
const imgList = ref([{
url: workshopUrl + '/index/banner1.png',
id: 1
},{
url: workshopUrl + '/index/banner2.png',
id: 2
},{
url: workshopUrl + '/index/banner3.png',
id: 3
},{
url: workshopUrl + '/index/banner4.png',
id: 4
},])
const goToSearch = () => { const goToSearch = () => {
uni.navigateTo({ uni.navigateTo({
url: '../searchGood/searchGood?type=0' url: '../searchGood/searchGood?type=0'