Showing
2 changed files
with
3 additions
and
3 deletions
| ... | @@ -104,7 +104,7 @@ | ... | @@ -104,7 +104,7 @@ |
| 104 | 上架 | 104 | 上架 |
| 105 | </nut-button> | 105 | </nut-button> |
| 106 | <nut-button | 106 | <nut-button |
| 107 | - v-if="car.verification_status === 1 || car.verification_status === 7" | 107 | + v-if="car.verification_status === 1 || car.verification_status === 7 || car.verification_status === 2" |
| 108 | @click.stop="authCar(car.id)" | 108 | @click.stop="authCar(car.id)" |
| 109 | size="small" | 109 | size="small" |
| 110 | type="primary" | 110 | type="primary" | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Date: 2022-09-19 14:11:06 | 2 | * @Date: 2022-09-19 14:11:06 |
| 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com | 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com |
| 4 | - * @LastEditTime: 2025-08-01 14:19:54 | 4 | + * @LastEditTime: 2025-08-01 15:16:04 |
| 5 | * @FilePath: /jgdl/src/pages/setAuthCar/index.vue | 5 | * @FilePath: /jgdl/src/pages/setAuthCar/index.vue |
| 6 | * @Description: 申请认证 | 6 | * @Description: 申请认证 |
| 7 | --> | 7 | --> |
| ... | @@ -548,7 +548,7 @@ const onSubmit = async () => { | ... | @@ -548,7 +548,7 @@ const onSubmit = async () => { |
| 548 | // 调用真实API | 548 | // 调用真实API |
| 549 | if (isEditMode.value) { | 549 | if (isEditMode.value) { |
| 550 | // 编辑车辆,且认证时,op=verification,表示申请认证 | 550 | // 编辑车辆,且认证时,op=verification,表示申请认证 |
| 551 | - const { code } = await editVehicleAPI({ id: carId.value, ...formData, op: 'verification' }) | 551 | + const { code, data } = await editVehicleAPI({ id: carId.value, ...formData, op: 'verification' }) |
| 552 | if (code) { | 552 | if (code) { |
| 553 | onPay({ | 553 | onPay({ |
| 554 | id: data.id, | 554 | id: data.id, | ... | ... |
-
Please register or login to post a comment