Commit 952c1bb1 by LJM

css

parent 7f4b1d78
......@@ -11,7 +11,7 @@
</a>
<a class="item row rowCenter verCenter" :class="{'scrollsg':rpcg,'act':(JSON.stringify(item)==JSON.stringify({path: $route.path,title: $route.meta.title,query:$route.query}))}" @click="tabUrl(item)" v-for="item in tabs">
<font class="fl">{{ item.title }}</font>
<span class="icon iconfont fl" @click.stop="closetab(item.path,item.query)"></span>
<span class="icon iconfont fl" @click.stop="closetab(item.path)"></span>
</a>
</div>
</div>
......@@ -315,7 +315,7 @@ export default {
if (path == this.$route.path) {
if (i == 0) {
this.$router.push({
path: "/",
path: "/"
})
} else {
if (tab_arr[i - 1].query) {
......
......@@ -30,9 +30,9 @@
</div>
<div class="data-box">
<el-table :data="tableData" border max-height="600" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="40" align="center" :show-overflow-tooltip="true"></el-table-column>
<el-table-column prop="inquiry_sn" label="询价单号" min-width="10%" :show-overflow-tooltip="true"></el-table-column>
<el-table-column prop="goods_name" label="型号" min-width="10%" :show-overflow-tooltip="true">
<el-table-column type="selection" width="40" align="center"></el-table-column>
<el-table-column prop="inquiry_sn" label="询价单号" width="160" :show-overflow-tooltip="true"></el-table-column>
<el-table-column prop="goods_name" label="型号" width="160" :show-overflow-tooltip="true">
<template slot-scope="scope">
<div class="p-copy">
<p style="padding-right:25px;">{{ scope.row.goods_name }}</p>
......@@ -40,10 +40,10 @@
</div>
</template>
</el-table-column>
<el-table-column prop="brand_name" label="品牌" min-width="10%" :show-overflow-tooltip="true"></el-table-column>
<el-table-column prop="inquiry_number" label="数量" min-width="10%" :show-overflow-tooltip="true"></el-table-column>
<el-table-column prop="batch" label="批次" min-width="10%" :show-overflow-tooltip="true"></el-table-column>
<el-table-column prop="delivery_time" label="交货日期" min-width="10%" :show-overflow-tooltip="true"></el-table-column>
<el-table-column prop="brand_name" label="品牌" width="150" :show-overflow-tooltip="true"></el-table-column>
<el-table-column prop="inquiry_number" label="数量" width="80" :show-overflow-tooltip="true"></el-table-column>
<el-table-column prop="batch" label="批次" :show-overflow-tooltip="true"></el-table-column>
<el-table-column prop="delivery_time" label="交货日期" :show-overflow-tooltip="true"></el-table-column>
<el-table-column prop="i_status" label="状态" width="100" :show-overflow-tooltip="true">
<template slot-scope="scope">
<span v-if="scope.row.i_status==2" class="f-green">已报价</span>
......
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