Browse Source

修改导航栏显示

dev
caoyizhong 2 years ago
parent
commit
ba7285fcc4
  1. 1
      src/components/layouts/TabLayout.vue
  2. 36
      src/views/suppliesstronger/ProcessSuppliesStrongerList.vue

1
src/components/layouts/TabLayout.vue

@ -16,6 +16,7 @@
@edit="editPage">
<a-tab-pane :id="page.fullPath" :key="page.fullPath" v-for="page in pageList" :closable="!(page.meta.title=='首页')">
<span slot="tab" :pagekey="page.fullPath">{{ page.meta.title }}</span>
<span slot="tab" :pagekey="page.fullPath" v-if="page.params" >{{page.params.merchandiseName}}</span>
</a-tab-pane>
</a-tabs>
<div style="margin: 12px 12px 0;">

36
src/views/suppliesstronger/ProcessSuppliesStrongerList.vue

@ -160,12 +160,12 @@
{
title:'规格',
align:"center",
dataIndex: 'merchandiseName'
dataIndex: 'merchandiseName1'
},
{
title:'型号',
align:"center",
dataIndex: 'merchandiseName'
dataIndex: 'merchandiseName2'
},
{
@ -181,7 +181,7 @@
{
title:'项目部数量',
align:"center",
dataIndex: 'materialQuantity'
dataIndex: 'materialQuantity1'
},
{
title:'核算属性',
@ -221,19 +221,25 @@
handleDetaills(record){
console.log(record);
var temomen = {
name: 'src-views-suppliesstronger-ProcessSuppliesStrongerLists',
hidden: true,
meta: {
title: 'title',
keepAlive: true,
hiddenHeaderContent: true,
// var temomen = {
// name: 'src-views-suppliesstronger-ProcessSuppliesStrongerLists',
// hidden: true,
// meta: {
// title: 'title',
// keepAlive: true,
// hiddenHeaderContent: true,
// }
// }
// this.$router.push(temomen);
// console.log(record)
// console.log("",record.merchandiseName.substring(record.merchandiseName.lastIndexOf(" ")))
this.$router.push({
name:'src-views-suppliesstronger-ProcessSuppliesStrongerLists',
params:{
item: record.merchandiseNewsId,
merchandiseName : ' - '+record.merchandiseName.substring(0,record.merchandiseName.lastIndexOf(" "))
}
}
this.tabs
// this.$router.push({name:'src-views-suppliesstronger-ProcessSuppliesStrongerLists',params:{item: record.merchandiseNewsId}})
})
},
initDictConfig(){
},

Loading…
Cancel
Save