通告功能

This commit is contained in:
13405411873 2025-04-25 14:29:53 +08:00
parent cb254d4baa
commit 42933bd780
3 changed files with 13 additions and 3 deletions

View File

@ -12,6 +12,7 @@
</view>
<!-- 操作按钮 -->
<view class="opt-button-box">
<view class="opt-item" v-if="item.signStatus=='已通过'" @click="evaluate(item)">评价</view>
<view class="opt-item" @click="goDetail(item)">查看详情</view>
</view>
</view>
@ -86,6 +87,9 @@
}
},
methods: {
evaluate(item) {
this.$tab.navigateTo('/pages/mine/set/evaluate?userType=01&toUserId=' + item.userId)
},
/**
* 查看通告详情
* @param {Object} item
@ -175,4 +179,4 @@
}
}
}
</style>
</style>

View File

@ -213,4 +213,4 @@
}
}
}
</style>
</style>

View File

@ -75,6 +75,12 @@
onLoad(option) {
this.dataObj.toUserId = option.toUserId
this.dataObj.userType = option.userType
this.dataObj.userType = option.userType
if (option.userType == '01') {
option.toUserType = '02'
} else {
option.toUserType = '01'
}
this.initData("plfl", "tips")
},
methods: {
@ -278,4 +284,4 @@
.checklist-box {
margin-right: 10rpx !important;
}
</style>
</style>