|
|
|
@ -1,5 +1,14 @@
|
|
|
|
|
<template>
|
|
|
|
|
<div class>
|
|
|
|
|
<Row class="search-row">
|
|
|
|
|
<i-col span="24" class="search-col">
|
|
|
|
|
<Row class="row-style">
|
|
|
|
|
<i-col span="12" style="text-align: left;padding-right: 20px;">
|
|
|
|
|
<Button type="primary" @click="back()">返回</Button>
|
|
|
|
|
</i-col>
|
|
|
|
|
</Row>
|
|
|
|
|
</i-col>
|
|
|
|
|
</Row>
|
|
|
|
|
<Row>
|
|
|
|
|
<i-col :span="12">
|
|
|
|
|
<Form ref="welcomeForm" :model="welcome" :rules="welcomeRules">
|
|
|
|
@ -265,6 +274,9 @@ export default {
|
|
|
|
|
selectStoreStep
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
back: function() {
|
|
|
|
|
this.$router.back();
|
|
|
|
|
},
|
|
|
|
|
paramFilter() {
|
|
|
|
|
return this.welcome.params.length < 1;
|
|
|
|
|
},
|
|
|
|
|