Commit f9346a00 authored by 黄媛媛's avatar 黄媛媛
parents 9846cf15 e3b04df6
...@@ -306,8 +306,8 @@ ...@@ -306,8 +306,8 @@
</div> </div>
<div class="audit-box" v-if="StepIndex==3"> <div class="audit-box" v-if="StepIndex==3">
<img src="../assets/img/submit.png" alt="" /> <img src="../assets/img/submit.png" alt="" />
<div>您的注册申请已提交</div> <div>您的注册申请已提交,请等待审核信息!</div>
<button class="el-button el-button--primary is-round" style="margin-top:15px;"> <button class="el-button el-button--primary is-round" style="margin-top:15px;" @click="goLogin">
<span>我知道了</span> <span>我知道了</span>
</button> </button>
</div> </div>
...@@ -605,7 +605,6 @@ ...@@ -605,7 +605,6 @@
LastStep() { LastStep() {
this.apipost("/api/Tenant/SetTenantSecond", this.msg2, res => { this.apipost("/api/Tenant/SetTenantSecond", this.msg2, res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.StepIndex = 3; this.StepIndex = 3;
} else { } else {
this.Info(res.data.message); this.Info(res.data.message);
......
...@@ -324,7 +324,7 @@ ...@@ -324,7 +324,7 @@
<span>店铺设计</span> <span>店铺设计</span>
</template> </template>
<el-menu-item-group> <el-menu-item-group>
<el-menu-item index="1-1" @click="changeMenu()"> <el-menu-item index="1-1">
<div class="isaa" :class="defaultActive=='1-1'?'isActive':''">轮播图</div> <div class="isaa" :class="defaultActive=='1-1'?'isActive':''">轮播图</div>
</el-menu-item> </el-menu-item>
<el-menu-item index="1-2"> <el-menu-item index="1-2">
...@@ -406,9 +406,9 @@ ...@@ -406,9 +406,9 @@
//获取菜单列表 //获取菜单列表
getMenuList() { getMenuList() {
this.apipost("/api/Tenant/GetMenuList", {}, res => { this.apipost("/api/Tenant/GetMenuList", {}, res => {
console.log(res);
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.MenuList = res.data.data; this.MenuList = res.data.data;
console.log("this.MenuList",this.MenuList);
} else { } else {
this.Info(res.data.message); this.Info(res.data.message);
} }
...@@ -424,7 +424,8 @@ ...@@ -424,7 +424,8 @@
this.showTwo = true; this.showTwo = true;
this.isShowOne = false; this.isShowOne = false;
}, },
changeMenu: function () { //菜单点击
clickMenu(item){
this.$router.push({ this.$router.push({
path: 'Register' path: 'Register'
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment