-
-
+
-
@@ -70,9 +73,6 @@
-
-
-
1
-
+
@@ -61,7 +65,6 @@
>
2
第二步:选择轮对商品
@@ -123,7 +123,7 @@
import { ref, computed } from "vue";
const props = defineProps({
form: Object,
- selectedCarType: String
+ selectedCarType: String,
});
// 彻底双向绑定
const selectedCarTypeProxy = computed({
@@ -132,7 +132,7 @@ const selectedCarTypeProxy = computed({
},
set(val) {
if (props.form) props.form.selectedCarType = val;
- }
+ },
});
const planCount = ref("");
const modelInput = ref("");
diff --git a/src/views/order/intention/Step4.vue b/src/views/order/intention/Step4.vue
index 9806b58..2961dc8 100644
--- a/src/views/order/intention/Step4.vue
+++ b/src/views/order/intention/Step4.vue
@@ -14,7 +14,7 @@
/>
订单/意向生成,我们会尽快安排生产/研发
+ {{ selectedCarType === '其他' ? '意向单生成,我们会尽快安排研发' : '订单生成,我们会尽快安排生产' }}