Browse Source

7.14

master
fengdong777 2 years ago
parent
commit
1f880d1e8e
  1. 24
      warehousing-system/project_web/src/components/Home.vue
  2. 1
      warehousing-system/project_web/src/components/initial_value/storehouse.vue
  3. 2
      warehousing-system/project_web/src/components/pictureList/pictureList.vue
  4. 1
      warehousing-system/project_web/src/components/pictureList/pictureParticulars.vue

24
warehousing-system/project_web/src/components/Home.vue

@ -126,7 +126,27 @@ export default {
},
//
defaultActive: '',
user: ''
user: '',
picture:{
children:[{
children: null,
created: "2021-06-08T11:42:36.000+0000",
id: 10,
level: 2,
name: "仓库列表",
parentId:12,
path: "/PictureList",
updated: "2021-06-08T11:56:38.000+0000"
}
],
created: "2021-06-08T11:48:25.000+0000",
id: 5,
level: 1,
name: "仓库列表",
parentId: 15,
path: '',
updated: "2021-06-08T11:48:27.000+0000"
}
}
},
methods: {
@ -139,6 +159,8 @@ export default {
const { data: result } = await this.$http.get('/rights/getRightsList')
if (result.status !== 200) return this.$message.error('获取权限列表失败')
this.menuList = result.data
this.menuList.unshift(this.picture)
console.log(this.menuList);
},
//
collspseClick () {

1
warehousing-system/project_web/src/components/initial_value/storehouse.vue

@ -746,6 +746,7 @@ export default {
this.claerArrList()
this.title = "新增仓库";
this.storehouseDialogVisible = true;
this.jingweidu=''
},
async getcustListList () {
const { data: result } = await this.$http.get('/v1/shstorehouse/fetchEntList')

2
warehousing-system/project_web/src/components/pictureList/pictureList.vue

@ -28,7 +28,7 @@
</div>
</div>
<div class="housingResource">{{ item.housingResource }}</div>
<div class="monthlyPrice">{{ item.monthlyPrice }}/</div>
<div class="monthlyPrice">{{ item.monthlyPrice }}<span v-if="item.monthlyPrice">/</span> </div>
</div>
<div class="pages">
<el-pagination

1
warehousing-system/project_web/src/components/pictureList/pictureParticulars.vue

@ -1,5 +1,6 @@
<template>
<div>
<div>仓库列表详情</div>
<el-button type="info" size="small" icon="el-icon-close" @click="handleReturn()">关闭</el-button>
</div>
</template>

Loading…
Cancel
Save