Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
jgdl
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2025-07-15 13:15:22 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
45fe8c1df9dd3a070ad45adc45ef64acf720ebbd
45fe8c1d
1 parent
5c6d4468
fix: 修正表单默认值和反馈分类选项
将销售表单的默认里程值从1200改为100 将反馈页面的默认分类选项从null改为'feature'
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
src/pages/feedBack/index.vue
src/pages/sell/index.vue
src/pages/feedBack/index.vue
View file @
45fe8c1
<!--
* @Date: 2022-09-19 14:11:06
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-07-1
4 15:46:39
* @LastEditTime: 2025-07-1
5 13:14:50
* @FilePath: /jgdl/src/pages/feedBack/index.vue
* @Description: 意见反馈页面
-->
...
...
@@ -138,7 +138,7 @@ const categories = ref([
])
// 表单数据
const selectedCategory = ref(
null
)
const selectedCategory = ref(
'feature'
)
const feedbackText = ref('')
const contactInfo = ref('')
const uploadedImages = ref([])
...
...
src/pages/sell/index.vue
View file @
45fe8c1
...
...
@@ -374,7 +374,7 @@ const formData = reactive({
brandModel: '', // 品牌型号组合字段,用于表单验证
manufacture_year: '',
new_level: '',
total_mileage_km: '1
2
00',
total_mileage_km: '100',
range_km: '60',
max_speed_kmh: '25',
battery_capacity_ah: '20',
...
...
Please
register
or
login
to post a comment