Commit 49cab8db by LJM

bug

parent 4bd448f7
......@@ -16,8 +16,8 @@
</div>
</div>
<div class="user-box fr row verCenter">
<a class="msgh" href="javascript:history.go(0)">
<span class="el-icon-refresh icon" style="position:relative;top:3px;"></span>
<a class="msgh row verCenter" href="javascript:history.go(0)">
<span class="el-icon-refresh icon"></span>
</a>
<div class="line"></div>
<a href="/云芯操作手册.pdf" class="fl" target="_blank" title="操作手册"><span class="icon iconfont iconwendangguanli fl"></span></a>
......@@ -44,7 +44,7 @@
<el-menu class="el-menu-vertical-demo" @open="handleOpen" active-text-color="#1969F9" router :default-active="$route.path" :router="true" :unique-opened="true" @close="handleClose" @select="handleSelect">
<el-menu-item :index="'/'" :class="{'indextab':isIndexTab}">
<template slot="title">
<span class="icon iconfont"></span>
<span class="icon iconfont iconsy"></span>
<span>概况</span>
</template>
</el-menu-item>
......@@ -291,19 +291,21 @@ export default {
},
tabss(lk) {
if (lk == "/") {
this.tabSure = 1
this.tabSure = 1;
}
if (lk == "/inquire" || lk == "/quote" || lk == '/inquire/detail') {
this.tabSure = 2
this.tabSure = 2;
}
if (lk == "/list" || lk == "/enter" || lk == '/listDetail') {
this.tabSure = 3
this.tabSure = 3;
}
if (lk == "/goods" || lk == "/brand") {
this.tabSure = 4
this.tabSure = 4;
}
if (lk == "/message") {
this.tabSure = 5
this.tabSure = 5;
}
let tab_arr = sessionStorage.getItem('tabs')
if (tab_arr) {
......@@ -576,7 +578,6 @@ export default {
width: 1px;
height: 30px;
background: #E5EBF6;
float: left;
margin-left: 15px;
margin-right: 15px;
}
......@@ -821,7 +822,6 @@ export default {
}
.el-menu-item {
padding-left: 37px !important;
height: 46px;
line-height: 42px;
......
......@@ -4,7 +4,7 @@
<el-form :inline="true" :model="formParam" label-width="95px" :rules="rules" ref="ruleForm">
<el-form-item>
<el-button type="primary" @click="submit('ruleForm')">提交</el-button>
<el-button>取消</el-button>
<el-button @click="canel">取消</el-button>
</el-form-item>
<div class="tip-title" style="margin-top: 0">
<p>基本信息</p>
......@@ -60,7 +60,7 @@
</el-table>
</div>
</div>
<Menu/>
<Menu></Menu>
</section>
</template>
<script>
......@@ -161,7 +161,7 @@ export default {
this.$http('POST', "/api/purchase/addSupDelivery", this.formParam).then(res => {
if (res.code === 0) {
this.$router.push({
path: "/orderTrackGoods",
path: "/orderTrackGoods"
})
} else {
this.$message({
......@@ -175,8 +175,11 @@ export default {
return false;
}
});
},
canel(){
this.$router.push({
path: "/orderTrackInvoice"
})
}
},
components: {
......
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 sign in to comment