合并代码
This commit is contained in:
parent
5f802e60ac
commit
6e9ca6a925
|
@ -5,18 +5,17 @@ const config = {
|
|||
host: 'http://localhost:5173',
|
||||
// #endif
|
||||
// #ifndef H5
|
||||
host: 'https://539c1514.r24.cpolar.top',
|
||||
// host: 'http://gfjds5.natappfree.cc',
|
||||
host: 'http://2h34ni.natappfree.cc',
|
||||
// #endif
|
||||
// 支付方式配置
|
||||
payType: {
|
||||
score: {
|
||||
name: '积分',
|
||||
img: '/static/images/pay/wechat.png',
|
||||
img: '/static/score.png',
|
||||
},
|
||||
balance: {
|
||||
name: '余额',
|
||||
img: '/static/images/pay/wechat.png',
|
||||
img: '/static/balance.png',
|
||||
},
|
||||
},
|
||||
// 腾讯im聊天
|
||||
|
|
|
@ -5,19 +5,22 @@ import api from '@/api/index.js'
|
|||
|
||||
const order = {
|
||||
/**
|
||||
* 订单支付
|
||||
* 订单取消
|
||||
* @param {Object} event 事件对象
|
||||
*/
|
||||
orderPay: (event) => {
|
||||
orderCancel: (event) => {
|
||||
return new Promise((resolve, reject) => {
|
||||
api.shop.orderPay({
|
||||
query: {
|
||||
...event.query,
|
||||
},
|
||||
data: [
|
||||
event.orderId,
|
||||
],
|
||||
}).then(rs => {
|
||||
util.alert({
|
||||
content: '取消订单后不可恢复,确认取消订单?',
|
||||
}).then(res => {
|
||||
if (!res.confirm) return
|
||||
//
|
||||
return api.shop.orderCancel({
|
||||
query: {
|
||||
id: event.orderId,
|
||||
},
|
||||
})
|
||||
}).then(res => {
|
||||
if (res.code == 200) {
|
||||
resolve(res.data)
|
||||
return
|
||||
|
@ -28,6 +31,18 @@ const order = {
|
|||
})
|
||||
})
|
||||
})
|
||||
},
|
||||
|
||||
/**
|
||||
* 订单支付
|
||||
* @param {Object} event 事件对象
|
||||
*/
|
||||
orderPay(event) {
|
||||
uni.navigateTo({
|
||||
url: util.setUrl('/pages/shop/commodity/payment', {
|
||||
orderId: event.id,
|
||||
})
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1804,11 +1804,6 @@ const util = {
|
|||
})
|
||||
})
|
||||
},
|
||||
|
||||
// 分页
|
||||
paging: {
|
||||
//
|
||||
},
|
||||
}
|
||||
|
||||
export default util
|
|
@ -3,23 +3,55 @@
|
|||
* 物流入口
|
||||
*/
|
||||
|
||||
import {
|
||||
ref,
|
||||
reactive,
|
||||
defineProps,
|
||||
computed
|
||||
} from 'vue'
|
||||
import {
|
||||
onLoad,
|
||||
} from '@dcloudio/uni-app';
|
||||
// 工具库
|
||||
import util from '@/common/js/util.js'
|
||||
// api
|
||||
import api from '@/api/index.js'
|
||||
//
|
||||
// 详情
|
||||
const props = defineProps({
|
||||
detail: {
|
||||
type: Object,
|
||||
default: () => ({})
|
||||
},
|
||||
logistics: {
|
||||
type: Object,
|
||||
default: () => ({})
|
||||
}
|
||||
})
|
||||
// 商品图片
|
||||
const productImg = computed(() => props.detail.orderDetailList[0]?.productInfo?.sliderImage.split(',')[0])
|
||||
|
||||
onLoad(() => {
|
||||
//
|
||||
})
|
||||
|
||||
// 跳转
|
||||
function link(url) {
|
||||
uni.navigateTo({
|
||||
url: '/pages/shop/order/logistics'
|
||||
url: util.setUrl('/pages/shop/order/logistics', {
|
||||
//
|
||||
})
|
||||
})
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<view class="detail rows oh ptb20 plr30 bfff" @click="link">
|
||||
<image class="wh100 br10"
|
||||
src="https://img13.360buyimg.com/n1/jfs/t1/117234/35/34799/82687/6449f2b4Fd6e2eef9/a754c5e178c9e9be.jpg.avif"
|
||||
mode="aspectFill" />
|
||||
<view class="detail rows oh ptb20 plr30 bfff" @click="link" v-if="logistics">
|
||||
<image class="wh100 br10" :src="productImg" mode="aspectFill" />
|
||||
|
||||
<view class="col f1 ml20 f28">
|
||||
<view class="c999">2024.12.10 18:00</view>
|
||||
<view class="mt10 f30">你的快递正在路上,请耐心等待</view>
|
||||
<view class="col oh f1 ml20 f28">
|
||||
<view class="c999">{{logistics.theLastTime}}</view>
|
||||
<view class="mt10 thd f30">{{logistics.theLastMessage}}</view>
|
||||
</view>
|
||||
|
||||
<uni-icons type="right" color="#999" size="30rpx" />
|
||||
|
|
|
@ -21,8 +21,6 @@
|
|||
import api from '@/api/index.js'
|
||||
// util
|
||||
import util from '@/common/js/util';
|
||||
// 订单方法
|
||||
import order from '@/common/js/order.js'
|
||||
// 二级支付
|
||||
import secondPwd from '@/components/mine/payPwd.vue'
|
||||
const {
|
||||
|
|
|
@ -1,41 +1,127 @@
|
|||
<script setup>
|
||||
// 订单详情
|
||||
import {
|
||||
ref
|
||||
ref,
|
||||
reactive,
|
||||
computed,
|
||||
} from 'vue';
|
||||
import {
|
||||
onLoad,
|
||||
onUnload,
|
||||
onReachBottom,
|
||||
onPullDownRefresh,
|
||||
onPageScroll
|
||||
} from '@dcloudio/uni-app';
|
||||
|
||||
// 订单方法
|
||||
import order from '@/common/js/order.js'
|
||||
// api
|
||||
import api from '@/api/index.js'
|
||||
// util
|
||||
import util from '@/common/js/util';
|
||||
//
|
||||
import productList from '@/components/shop/productList/productList'
|
||||
// 物流信息
|
||||
import logistics from '@/components/shop/order/logistics';
|
||||
import logisticsVue from '@/components/shop/order/logistics';
|
||||
// 地址
|
||||
import JyCommodityAddress from '@/components/public/jy-commodity-address'
|
||||
|
||||
// 订单详情
|
||||
const detail = ref({
|
||||
status: 1,
|
||||
statusText: '待发货',
|
||||
const detail = reactive({
|
||||
createTime: '',
|
||||
coutDownTime: '',
|
||||
// 订单商品列表信息
|
||||
orderDetailList: [],
|
||||
// 物流信息
|
||||
logistics: {
|
||||
info: [],
|
||||
},
|
||||
})
|
||||
// 订单id
|
||||
const orderId = ref('')
|
||||
// 显示订单详情
|
||||
const showOrderDetail = ref(false)
|
||||
// 物流信息
|
||||
const logistics = computed(() => detail.logistics.info ? detail.logistics.info[0] : {})
|
||||
|
||||
onLoad((option) => {
|
||||
if (option.orderId) orderId.value = option.orderId
|
||||
// 获取订单详情
|
||||
getDetail()
|
||||
// 开启监听
|
||||
addListener()
|
||||
})
|
||||
|
||||
onUnload(() => {
|
||||
// 移除监听
|
||||
removeListener()
|
||||
})
|
||||
|
||||
// 开启监听
|
||||
function addListener() {
|
||||
uni.$on('updateOrderDetail', () => {
|
||||
// 获取订单详情
|
||||
getDetail()
|
||||
})
|
||||
}
|
||||
|
||||
// 移除监听
|
||||
function removeListener() {
|
||||
uni.$off('updateOrderDetail')
|
||||
}
|
||||
|
||||
// 获取订单详情
|
||||
function getDetail() {
|
||||
api.shop.getOrderDetail({
|
||||
query: {
|
||||
id: orderId.value
|
||||
}
|
||||
}).then(res => {
|
||||
if (res.code == 200) {
|
||||
let result = res.data
|
||||
result.status = Number(result.status)
|
||||
Object.assign(detail, {}, result)
|
||||
return
|
||||
}
|
||||
util.alert({
|
||||
content: res.msg,
|
||||
showCancel: false,
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 文本复制
|
||||
* @param {Object} text
|
||||
*/
|
||||
function handleCopy(text) {
|
||||
util.copyText(text)
|
||||
}
|
||||
|
||||
// 取消订单
|
||||
function handleCancel() {
|
||||
order.orderCancel({
|
||||
orderId: orderId.value
|
||||
}).then(res => {
|
||||
uni.$emit('updateOrderList')
|
||||
// 获取订单详情
|
||||
getDetail()
|
||||
return
|
||||
})
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<view class="app">
|
||||
<!-- 物流状态 -->
|
||||
<view class="detail">
|
||||
<logistics />
|
||||
<logisticsVue :detail="detail" :logistics="logistics" />
|
||||
</view>
|
||||
|
||||
<!-- 地址详情 -->
|
||||
<view class="address rows mtb20 ptb15 plr30 bfff">
|
||||
<image class="wh30 oh fs0" src="/static/address.png" mode="aspectFill" />
|
||||
<!-- -->
|
||||
<view class="f1 mlr20">
|
||||
<view class="f30">山东省济南市槐荫区绿地新城商务大厦</view>
|
||||
<view class="mt10 c999 f26">
|
||||
<text>海棠的秋</text>
|
||||
<text class="ml10">15666006592</text>
|
||||
</view>
|
||||
</view>
|
||||
<!-- 修改地址 -->
|
||||
<view class="btn ti warmHollow plr10 bs0">修改地址</view>
|
||||
<view class="bfff mtb20 p25">
|
||||
<!-- 地址 -->
|
||||
<JyCommodityAddress v-model:address="detail.address" :shopEdit="[0,1].includes(detail.status)" />
|
||||
</view>
|
||||
|
||||
<!-- 商品信息 -->
|
||||
|
@ -43,64 +129,66 @@
|
|||
<view class="header line rows ptb20 f28">
|
||||
<!-- 店铺 -->
|
||||
<view class="store df aic thd f1">
|
||||
<image class="wh50 br10"
|
||||
src="https://img13.360buyimg.com/n1/jfs/t1/117234/35/34799/82687/6449f2b4Fd6e2eef9/a754c5e178c9e9be.jpg.avif"
|
||||
mode="aspectFill" />
|
||||
<view class="name ml10 c333">家纺专营店</view>
|
||||
<image class="wh50 br10" :src="detail.merImg" mode="aspectFill" />
|
||||
<view class="name ml10 c333">{{detail.merName}}</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 商品信息 -->
|
||||
<view class="product line df ptb20">
|
||||
<view class="poster wh160">
|
||||
<image class="wh160 br10"
|
||||
src="https://img13.360buyimg.com/n1/jfs/t1/117234/35/34799/82687/6449f2b4Fd6e2eef9/a754c5e178c9e9be.jpg.avif"
|
||||
mode="aspectFill" />
|
||||
<view class="goods mtb20 plr10 df" v-for="(item,index) in detail.orderDetailList">
|
||||
<!-- 产品图 -->
|
||||
<image class="wh180 br10" :src="item.productInfo.sliderImage.split(',')[0]" mode="aspectFill" />
|
||||
<!-- 产品信息 -->
|
||||
<view class="f1 ml20 mr10">
|
||||
<view class="name f30 t2hd">{{item.productName}}</view>
|
||||
<view class="spec mt10 c999 f26">升级款 {{item.sku}}</view>
|
||||
</view>
|
||||
|
||||
<!-- 产品名称 和 购买的规格 -->
|
||||
<view class="info mlr20 f1">
|
||||
<view class="name c333 f28">靠枕 纯棉靠枕 车载居家 纯棉100% 卡通靠枕 人体工学</view>
|
||||
<view class="spec mt10 c999 f26">款式:普通款 小熊</view>
|
||||
</view>
|
||||
|
||||
<!-- 单价 数量 -->
|
||||
<!-- 其他 -->
|
||||
<view class="tar">
|
||||
<view class="price c666">
|
||||
<view class="price">
|
||||
<text class="f20">¥</text>
|
||||
<text class="f26">89</text>
|
||||
<text class="f30">{{item.price}}</text>
|
||||
</view>
|
||||
<view class="number f24 c999">x 1</view>
|
||||
<view class="c999 f28">x{{item.payNum}}</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 订单信息 -->
|
||||
<view class="order mt30 f26 c999">
|
||||
<view class="line mtb20 rows">
|
||||
<text>订单编号:251547812138</text>
|
||||
<view class="btn ti closeHollow plr20">复制</view>
|
||||
<text>订单编号:{{detail.orderNo}}</text>
|
||||
<view class="btn ti closeHollow plr20" @click="handleCopy(detail.orderNo)">复制</view>
|
||||
</view>
|
||||
<view class="line mtb20">
|
||||
<text>支付方式:微信支付</text>
|
||||
</view>
|
||||
<view class="line mtb20">
|
||||
<text>物流公司:普通快递</text>
|
||||
</view>
|
||||
<view class="line mtb20 rows">
|
||||
<view class="f1">快递单号:251547812138</view>
|
||||
<view class="btn ti closeHollow plr20">复制</view>
|
||||
</view>
|
||||
<view class="line mtb20">
|
||||
<text>下单时间:2024-12-10 12:00</text>
|
||||
</view>
|
||||
<view class="line mtb20">
|
||||
<text>发货时间:2024-12-10 18:00</text>
|
||||
</view>
|
||||
<view class="line mtb20">
|
||||
<text>收货时间:2024-12-15 17:00</text>
|
||||
</view>
|
||||
<view class="mtb30 fmid">
|
||||
<template v-if="0">
|
||||
|
||||
<template v-if="showOrderDetail">
|
||||
<view class="line mtb20">
|
||||
<text>支付方式:微信支付</text>
|
||||
</view>
|
||||
|
||||
<view class="line mtb20">
|
||||
<text>物流公司:{{logistics.logisticsCompanyName}}</text>
|
||||
</view>
|
||||
|
||||
<view class="line mtb20 rows">
|
||||
<view class="f1">快递单号:{{detail.logistics.orderNo}}</view>
|
||||
<view class="btn ti closeHollow plr20" @click="handleCopy(detail.logistics.orderNo)">复制</view>
|
||||
</view>
|
||||
|
||||
<view class="line mtb20">
|
||||
<text>下单时间:{{detail.createTime}}</text>
|
||||
</view>
|
||||
|
||||
<view class="line mtb20">
|
||||
<text>发货时间:2024-12-10 18:00</text>
|
||||
</view>
|
||||
|
||||
<view class="line mtb20">
|
||||
<text>收货时间:2024-12-15 17:00</text>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<view class="mtb30 fmid" @click="showOrderDetail = !showOrderDetail">
|
||||
<template v-if="!showOrderDetail">
|
||||
<text>查看更多订单信息</text>
|
||||
<uni-icons type="bottom" color="" />
|
||||
</template>
|
||||
|
@ -118,14 +206,14 @@
|
|||
</view>
|
||||
|
||||
<view class="fill"></view>
|
||||
<view class="footer df jcr plr30 bfff shadow">
|
||||
<template v-if="detail.status == 1">
|
||||
<view class="btn bar closeHollow plr30">取消订单</view>
|
||||
<view class="btn bar warmHollow plr30">继续付款</view>
|
||||
<view class="footer df jcr plr30 bfff shadow" v-if="[0,1].includes(detail.status)">
|
||||
<template v-if="detail.status == 0">
|
||||
<view class="btn bar closeHollow plr30" @click="handleCancel">取消订单</view>
|
||||
<view class="btn bar warmHollow plr30" @click="order.orderPay(detail)">继续付款</view>
|
||||
</template>
|
||||
<template v-if="detail.status == 2">
|
||||
<template v-if="detail.status == 1">
|
||||
<view class="btn bar closeHollow plr30">申请退款</view>
|
||||
<view class="btn bar warmHollow plr30">催发货</view>
|
||||
<!-- <view class="btn bar warmHollow plr30">催发货</view> -->
|
||||
</template>
|
||||
<template v-if="detail.status == 3">
|
||||
<view class="btn bar closeHollow plr30">申请退款</view>
|
||||
|
@ -145,6 +233,6 @@
|
|||
</view>
|
||||
</template>
|
||||
|
||||
<style>
|
||||
<style lang="scss">
|
||||
|
||||
</style>7
|
||||
</style>
|
|
@ -13,15 +13,17 @@
|
|||
} from '@dcloudio/uni-app';
|
||||
// 顶部
|
||||
import apex from '@/components/header/apex.vue'
|
||||
//顶部条件栏
|
||||
// 顶部条件栏
|
||||
import JyShopNavigation from '@/components/public/jy-shop-navigation'
|
||||
// 产品图片
|
||||
// import JyOrderCard from '@/components/public/jy-order-card'
|
||||
// 订单
|
||||
import orderItem from '@/components/shop/order/item.vue';
|
||||
// 工具库
|
||||
import util from '@/common/js/util';
|
||||
// api
|
||||
import api from '@/api/index.js';
|
||||
// 订单方法
|
||||
import order from '@/common/js/order.js'
|
||||
|
||||
// tabs
|
||||
const tabs = reactive([{
|
||||
id: '',
|
||||
|
@ -51,13 +53,10 @@
|
|||
name: '已取消'
|
||||
}
|
||||
])
|
||||
//
|
||||
const params = reactive({
|
||||
currentTab: 0,
|
||||
search: ''
|
||||
})
|
||||
// 列表
|
||||
const list = reactive({
|
||||
status: '',
|
||||
search: '',
|
||||
data: [],
|
||||
pageSize: 10,
|
||||
pageNum: 1,
|
||||
|
@ -114,7 +113,7 @@
|
|||
|
||||
// 获取更多列表
|
||||
function getMoreList() {
|
||||
if (listlist.data.length >= list.total) return
|
||||
if (list.data.length >= list.total) return
|
||||
list.pageNum++
|
||||
getList()
|
||||
}
|
||||
|
@ -123,6 +122,8 @@
|
|||
function getList() {
|
||||
api.shop.getOrderList({
|
||||
query: {
|
||||
searchStr: list.search,
|
||||
status: list.status,
|
||||
pageNum: list.pageNum,
|
||||
pageSize: list.pageSize,
|
||||
},
|
||||
|
@ -149,7 +150,9 @@
|
|||
*/
|
||||
function handleItem(ev) {
|
||||
uni.navigateTo({
|
||||
url: util.setUrl('/pages/shop/order/detail')
|
||||
url: util.setUrl('/pages/shop/order/detail', {
|
||||
orderId: ev.id,
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
|
@ -163,14 +166,15 @@
|
|||
}
|
||||
|
||||
/**
|
||||
* 支付
|
||||
* 取消订单
|
||||
* @param {Object} item 订单
|
||||
*/
|
||||
function handlePay(item) {
|
||||
uni.navigateTo({
|
||||
url: util.setUrl('/pages/shop/commodity/payment', {
|
||||
orderId: item.id,
|
||||
})
|
||||
function handleCancel(item) {
|
||||
order.orderCancel({
|
||||
orderId: item.id,
|
||||
}).then(res => {
|
||||
// 重载列表
|
||||
refreshList()
|
||||
})
|
||||
}
|
||||
</script>
|
||||
|
@ -180,7 +184,7 @@
|
|||
<template #content>
|
||||
<view class="search rows f1 mr30 plr20 bf8f8f8 br10">
|
||||
<uni-icons type="search" color="#999" />
|
||||
<input class="input ml20" type="text" placeholder="搜索内容" />
|
||||
<input class="input ml20" v-model="list.search" type="text" placeholder="搜索内容" @confirm="refreshList" />
|
||||
</view>
|
||||
</template>
|
||||
</apex>
|
||||
|
@ -189,7 +193,7 @@
|
|||
<view class="shopHeaderBg bgColor"></view>
|
||||
|
||||
<view class="f1 pr">
|
||||
<JyShopNavigation :current="params.currentTab" :list="tabs" @tabItemClick="itemClick" marright="25px"
|
||||
<JyShopNavigation :current="list.status" :list="tabs" @tabItemClick="itemClick" marright="25px"
|
||||
activeWeight='600' activeColor="#333333" activeBarColor="initial" />
|
||||
</view>
|
||||
|
||||
|
@ -202,13 +206,14 @@
|
|||
<template #menu="scope">
|
||||
<view class="menu ptb20 df jcr" v-if="[0,1,4,5,6].includes(scope.item.status)">
|
||||
<template v-if="scope.item.status == 0">
|
||||
<view class="btn bar closeHollow plr30">取消订单</view>
|
||||
<view class="btn bar warmHollow plr30" @click.stop="handlePay(scope.item)">继续付款
|
||||
<view class="btn bar closeHollow plr30" @click.stop="handleCancel(scope.item)">
|
||||
取消订单</view>
|
||||
<view class="btn bar warmHollow plr30" @click.stop="order.orderPay(item)">继续付款
|
||||
</view>
|
||||
</template>
|
||||
<template v-if="scope.item.status == 1">
|
||||
<view class="btn bar closeHollow plr30">申请退款</view>
|
||||
<view class="btn bar warmHollow plr30">催发货</view>
|
||||
<!-- <view class="btn bar warmHollow plr30">催发货</view> -->
|
||||
</template>
|
||||
<template v-if="scope.item.status == 3">
|
||||
<view class="btn bar closeHollow plr30">申请退款</view>
|
||||
|
|
|
@ -3,10 +3,30 @@
|
|||
import {
|
||||
ref,
|
||||
reactive,
|
||||
computed
|
||||
computed,
|
||||
} from 'vue';
|
||||
// 产品列表
|
||||
import productList from '@/components/shop/productList/productList.vue';
|
||||
import {
|
||||
onLoad,
|
||||
onUnload,
|
||||
} from '@dcloudio/uni-app';
|
||||
|
||||
// 订单详情
|
||||
const detail = reactive({
|
||||
createTime: '',
|
||||
coutDownTime: '',
|
||||
// 订单商品列表信息
|
||||
orderDetailList: [],
|
||||
// 物流信息
|
||||
logistics: {
|
||||
info: [],
|
||||
},
|
||||
})
|
||||
// 物流信息
|
||||
const logistics = computed(() => detail.logistics.info ? detail.logistics.info[0] : {})
|
||||
// 订单id
|
||||
const orderId = ref('')
|
||||
|
||||
// 物流状态
|
||||
const flow = reactive([{
|
||||
|
@ -31,6 +51,40 @@
|
|||
if (!showMore.value) result.length = Math.min(flow.length, 2)
|
||||
return result
|
||||
})
|
||||
|
||||
onLoad((option) => {
|
||||
if (option.orderId) orderId.value = option.orderId
|
||||
// 获取订单详情
|
||||
getDetail()
|
||||
})
|
||||
|
||||
// 获取订单详情
|
||||
function getDetail() {
|
||||
api.shop.getOrderDetail({
|
||||
query: {
|
||||
id: orderId.value
|
||||
}
|
||||
}).then(res => {
|
||||
if (res.code == 200) {
|
||||
let result = res.data
|
||||
result.status = Number(result.status)
|
||||
Object.assign(detail, {}, result)
|
||||
return
|
||||
}
|
||||
util.alert({
|
||||
content: res.msg,
|
||||
showCancel: false,
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 文本复制
|
||||
* @param {Object} text
|
||||
*/
|
||||
function handleCopy(text) {
|
||||
util.copyText(text)
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
|
|
@ -387,5 +387,3 @@ likeType
|
|||
9:已取消
|
||||
|
||||
|
||||
1737292587952
|
||||
1737378810000
|
Binary file not shown.
After Width: | Height: | Size: 1.6 KiB |
Binary file not shown.
After Width: | Height: | Size: 1.7 KiB |
|
@ -5,7 +5,7 @@ import uni from '@dcloudio/vite-plugin-uni';
|
|||
|
||||
//
|
||||
// let target = 'http://101.35.80.139:8080'
|
||||
let target = 'http://2hs9aj.natappfree.cc'
|
||||
let target = 'http://2h34ni.natappfree.cc'
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [uni()],
|
||||
|
|
Loading…
Reference in New Issue