This commit is contained in:
花有清香月有阴
2022-02-11 17:25:55 +08:00
parent e93aec9f7d
commit f20839083e
2 changed files with 175 additions and 11 deletions

View File

@@ -41,7 +41,13 @@
</div>
</template>
</AiCard>
<div class="addbtn" @click="addEvent">新增事件</div>
<div class="addbtn">
<div class="myreport" @click="linkTo('./myReply')">我的上报</div>
<div class="add" @click="addEvent">新增事件</div>
</div>
<AiEmpty v-if="!datas.length"></AiEmpty>
</template>
@@ -140,7 +146,6 @@ export default {
searchType: this.currentTabs == 1 ? '1' : '0',
eventStatus: this.eventStatus,
girdId: this.girdId,
openId: this.eventStatus == 4 ? this.user.openId : '',
},
})
.then((res) => {
@@ -407,9 +412,21 @@ uni-page-body {
height: 120px;
line-height: 120px;
text-align: center;
background-color: #3975c6;
font-size: 32px;
color: #ffffff;
display: flex;
align-items: center;
box-shadow: inset 0px 1px 0px 0px #dddddd;
z-index: 999;
.myreport {
background-color: #ffffff;
width: 40%;
color: #333;
}
.add {
background-color: #3975c6;
width: 60%;
color: #ffffff;
}
}
.pad-b120 {