|
@@ -710,13 +710,16 @@ export default {
|
|
|
{
|
|
|
style: 'cursor: pointer;text-align: left;',
|
|
|
on: {
|
|
|
- click: that.toDetail.bind(
|
|
|
- that,
|
|
|
- item.adminNoticeType,
|
|
|
- item.paidType,
|
|
|
- item.adminNoticeType == 'NOTICE' ? item.noticeId : item.orderId,
|
|
|
- item.id
|
|
|
- )
|
|
|
+ click: () => {
|
|
|
+ this.$router.push({
|
|
|
+ name: 'networkNotification',
|
|
|
+ params: {
|
|
|
+ pageName: item.id,
|
|
|
+ pageType: 'detail',
|
|
|
+ pageCode: item.id
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
[
|