This commit is contained in:
shijingjing
2022-02-14 15:02:14 +08:00
parent e8abec7eb9
commit e4f6d30b17
4 changed files with 154 additions and 3 deletions

View File

@@ -55,7 +55,6 @@
<div class="cardss">
<div class="cardss-left">
<span>
<!-- {{ item.systemExplain }} -->
<!-- {{ item.girdMemberName && item.girdMemberName.substring(item.girdMemberName.length, item.girdMemberName.length - 2) }} -->
<AiOpenData v-if="item.openId" type="userName" :openid="item.openId" style="display: inline-block;"/>
</span>
@@ -67,7 +66,7 @@
<div class="cardsss-right-left">
<div class="cardssss-right-left-top">
<!-- <span>{{ item.systemExplain }}</span> -->
<AiOpenData v-if="item.systemExplain" type="userName" :openid="item.systemExplain" />
<AiOpenData v-if="data.openId" type="userName" :openid="data.openId" style="display: inline-block;" />
<div style="color: #2ea222; font-size: 16px; margin-top: 5px">
{{ $dict.getLabel('clapDoStatus', item.doStatus) }}
</div>
@@ -92,7 +91,6 @@
<div class="fixedBtn">
<div class="status00" v-if="data.eventStatus == 0">
<div class="columns border-r" @click="toContent(4)">
<!-- <img src="./components/img/zhuanjiao.png" alt="" /> -->
<span class="hint">转交事件</span>
</div>
@@ -411,5 +409,8 @@ uni-page-body {
color: #ffffff;
}
}
::v-deep AiOpenData {
font-size: 24px;
}
}
</style>

View File

@@ -67,6 +67,7 @@ export default {
.then((res) => {
if (res.code == 0) {
this.datas = this.current > 1 ? [...this.datas, ...res.data.records] : res.data.records
console.log(this.datas);
this.pages = res.data.pages
this.$forceUpdate()
}