fix: BUG修改

This commit is contained in:
kun 2024-05-15 20:18:23 +08:00
parent ec0de14c4f
commit ffc4d63148
2 changed files with 16 additions and 1 deletions

View File

@ -62,6 +62,15 @@
</div> </div>
<!-- <el-menu-item :index="item.modulePath" v-for="(item,index) in menuList" :key="index">{{item.moduleName}}</el-menu-item> --> <!-- <el-menu-item :index="item.modulePath" v-for="(item,index) in menuList" :key="index">{{item.moduleName}}</el-menu-item> -->
</el-menu> </el-menu>
<el-button
class="backtoIndex"
type="primary"
plain
@click="backTo()"
size="mini"
style="margin-right: 30px;"
>返回</el-button
>
</div> </div>
<div class="pageContainer"> <div class="pageContainer">
<div class="pageDataContainer"> <div class="pageDataContainer">
@ -111,6 +120,9 @@ export default {
}, },
methods: { methods: {
backTo(){
this.$router.back();
},
hasSubMenu(list) { hasSubMenu(list) {
// //
let onoff = false; let onoff = false;
@ -227,6 +239,9 @@ export default {
// } // }
.menuBox{ .menuBox{
position: relative; position: relative;
display: flex;
align-items: center;
justify-content: space-between;
} }
.title { .title {
width: 100%; width: 100%;

View File

@ -773,7 +773,7 @@ export default {
// //
uploadPoint(item){ uploadPoint(item){
console.log('item',item) console.log('item',item)
if(item.uploadAttachments != null){ if(!item.uploadAttachments){
this.uploadaurl = this.$store.state.FILEURL + item.uploadAttachments this.uploadaurl = this.$store.state.FILEURL + item.uploadAttachments
}else{ }else{
this.$message({ this.$message({