hookehuyr

fix 新旧程度文字修改

...@@ -463,7 +463,7 @@ const modelOptions = ref([]) ...@@ -463,7 +463,7 @@ const modelOptions = ref([])
463 463
464 464
465 const conditionOptions = ref([ 465 const conditionOptions = ref([
466 - { text: '全新', value: '全新' }, 466 + { text: '9成新', value: '9成新' },
467 { text: '8成新', value: '8成新' }, 467 { text: '8成新', value: '8成新' },
468 { text: '7成新', value: '7成新' }, 468 { text: '7成新', value: '7成新' },
469 { text: '6成新', value: '6成新' }, 469 { text: '6成新', value: '6成新' },
...@@ -845,7 +845,7 @@ const onBrandModelCancel = () => { ...@@ -845,7 +845,7 @@ const onBrandModelCancel = () => {
845 const convertTextToScore = (text, type) => { 845 const convertTextToScore = (text, type) => {
846 if (type === 'condition') { 846 if (type === 'condition') {
847 const conditionMap = { 847 const conditionMap = {
848 - '新': 5, 848 + '9成新': 5,
849 '8成新': 4, 849 '8成新': 4,
850 '7成新': 3, 850 '7成新': 3,
851 '6成新': 2, 851 '6成新': 2,
...@@ -871,7 +871,7 @@ const convertTextToScore = (text, type) => { ...@@ -871,7 +871,7 @@ const convertTextToScore = (text, type) => {
871 const convertScoreToText = (score, type) => { 871 const convertScoreToText = (score, type) => {
872 if (type === 'condition') { 872 if (type === 'condition') {
873 const scoreMap = { 873 const scoreMap = {
874 - 5: '新', 874 + 5: '9成新',
875 4: '8成新', 875 4: '8成新',
876 3: '7成新', 876 3: '7成新',
877 2: '6成新', 877 2: '6成新',
......