This commit is contained in:
Your Name
2026-04-17 09:47:17 +08:00
parent fd44feaf09
commit 398f91bc55
280 changed files with 2536 additions and 808 deletions
@@ -951,7 +951,7 @@
</div>
<!-- 物流信息 -->
<div class="form-section">
<!-- <div class="form-section">
<div class="section-title">
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20 7l-8-4-8 4m16 0l-8 4m8-4v10l-8 4m0-10L4 7m8 4v10M4 7v10l8 4" />
@@ -977,7 +977,7 @@
</el-col>
</el-row>
</div>
</div>
</div> -->
<!-- 关联收款 -->
<div class="form-section">
@@ -1072,7 +1072,7 @@
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="订单金额" prop="amount">
<el-form-item label="订单金额" prop="amount">
<el-input-number
v-model="createOrderForm.amount"
:min="createOrderAmountInputMin"
@@ -1309,8 +1309,12 @@ const transformRegionData = (data: any[]) => {
const loadRegionData = async () => {
try {
console.log('开始加载省市区数据...')
// 使用代理路径,需要在vite.config.ts中配置代理
const response = await fetch('/api-proxy/area/ChinaCitys.json')
// 开发环境使用代理,生产环境使用环境变量中的基础URL
const apiUrl = import.meta.env.DEV
? '/api-proxy/area/ChinaCitys.json'
: `https://cos.zhenyangtang.com.cn/area/ChinaCitys.json`
const response = await fetch(apiUrl)
console.log('响应状态:', response.status)
if (!response.ok) {