通告功能
This commit is contained in:
parent
cb254d4baa
commit
42933bd780
@ -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
|
||||
|
||||
@ -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: {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user