项目管理页面

This commit is contained in:
zhaoxiao
2021-08-30 08:54:06 +08:00
parent eaa55ca7ee
commit 41bb5e4aa7
7 changed files with 346 additions and 33 deletions
@@ -1,7 +1,11 @@
<template>
<a-card>
<a-button @click="backWorkingGroupProject">返回</a-button>
<span>{{ workingGroupProject }}</span>
<a-card :bordered="false">
<div class="title">
<a-icon type="left" :style="{ fontSize: '22px' }" @click="backWorkingGroupProject"></a-icon>
<span class="title-text">{{ workingGroupProject }}</span>
</div>
<div class="divider"></div>
<!-- 查询区域-->
<div class="table-page-search-wrapper">
<a-form layout="inline" @keyup.enter.native="searchQuery">
@@ -104,6 +108,11 @@ export default {
},
}
},
computed: {
importExcelUrl: function(){
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
},
},
created() {
this.workingGroupProject = this.$route.query.workingGroupProject
this.workingGroupProjectId = this.$route.query.workingGroupProjectId
@@ -120,4 +129,19 @@ export default {
<style scoped lang="less">
@import '~@assets/less/common.less';
.title {
&-text {
padding-left: 1rem;
font-size: 18px;
line-height: 22px;
}
}
.divider {
height: 1px;
background-color: #cccccc;
margin: 15px -24px;
}
</style>