Commit 49cab8db by LJM

bug

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