|
|
@@ -28,7 +28,7 @@
|
|
|
审核拒绝,重新入驻
|
|
|
</el-button>
|
|
|
<el-button type="primary" size="large" class="register-btn" v-else-if="storeApplicationStatus == 0"> 等待审核 </el-button>
|
|
|
- <el-button type="primary" size="large" class="register-btn" @click="handleRegister" v-else> 去入驻 </el-button>
|
|
|
+ <el-button type="primary" size="large" class="register-btn" @click="handleGoEnter" v-else> 去入驻 </el-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
@@ -72,10 +72,13 @@ const props = defineProps({
|
|
|
const emit = defineEmits(["update:currentStep"]);
|
|
|
|
|
|
// 处理入驻按钮
|
|
|
-// 点击后跳转到 go-flow 组件(步骤1:个人实名)
|
|
|
+// 点击后跳转到 go-flow 组件(步骤1:填写信息)
|
|
|
const handleRegister = () => {
|
|
|
emit("update:currentStep", 2);
|
|
|
};
|
|
|
+const handleGoEnter = () => {
|
|
|
+ emit("update:currentStep", 1);
|
|
|
+};
|
|
|
</script>
|
|
|
|
|
|
<style scoped lang="scss">
|