Commit eb2321f7 authored by 胡's avatar

fix: 已读也标上图标, 参数错误调整

parent 024eb281
...@@ -325,7 +325,7 @@ export default { ...@@ -325,7 +325,7 @@ export default {
master: { master: {
content_id: item.content_id, content_id: item.content_id,
read_status: 'Y', read_status: 'Y',
bp_id: window.localStorage.bp_id bp_id: JSON.parse(window.localStorage.getItem('now_user_bp_bind_id')).bp_id
}, },
} }
hlsPopup.showLoading('请稍候') hlsPopup.showLoading('请稍候')
......
...@@ -438,7 +438,7 @@ export default { ...@@ -438,7 +438,7 @@ export default {
master: { master: {
content_id: item.content_id, content_id: item.content_id,
read_status: 'Y', read_status: 'Y',
bp_id: window.localStorage.bp_id bp_id:JSON.parse(window.localStorage.getItem('handleUser')).bp_id
}, },
} }
hlsPopup.showLoading('请稍候') hlsPopup.showLoading('请稍候')
...@@ -726,6 +726,7 @@ export default { ...@@ -726,6 +726,7 @@ export default {
master: { master: {
content_id: vm.content_id, content_id: vm.content_id,
read_status: 'Y', read_status: 'Y',
bp_id:JSON.parse(window.localStorage.getItem('now_user_bp_bind_id')).bp_id
}, },
} }
vm.hlsPopup.showLoading('请稍候') vm.hlsPopup.showLoading('请稍候')
......
...@@ -31,6 +31,7 @@ ...@@ -31,6 +31,7 @@
<span>{{ item.project_number }}</span> <span>{{ item.project_number }}</span>
</p> </p>
<img v-if="item.read_check === 'N'" src="@/assets/constractSigning/unread.png" alt class="unread" /> <img v-if="item.read_check === 'N'" src="@/assets/constractSigning/unread.png" alt class="unread" />
<img v-if="item.read_check === 'Y'" src="@/assets/constractSigning/read.png" alt class="unread" />
<img src="@/assets/constractSigning/righticon.png" alt class="arrow" /> <img src="@/assets/constractSigning/righticon.png" alt class="arrow" />
</div> </div>
<div class="box"> <div class="box">
......
...@@ -446,7 +446,7 @@ export default { ...@@ -446,7 +446,7 @@ export default {
master: { master: {
content_id: item.content_id, content_id: item.content_id,
read_status: 'Y', read_status: 'Y',
bp_id: window.localStorage.bp_id bp_id:JSON.parse(window.localStorage.getItem('now_user_bp_bind_id')).bp_id
}, },
} }
hlsPopup.showLoading('请稍候') hlsPopup.showLoading('请稍候')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment