Browse Source

修改导航栏显示

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

1
src/components/layouts/TabLayout.vue

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

38
src/views/suppliesstronger/ProcessSuppliesStrongerList.vue

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

Loading…
Cancel
Save