Commit 2a38679b by yangzhi

fix:开始按钮

parent 9102337f
...@@ -697,7 +697,8 @@ export default { ...@@ -697,7 +697,8 @@ export default {
render: item => ( render: item => (
<span> <span>
{item.orderStatus === 'PRE_HANDLING' && {item.orderStatus === 'PRE_HANDLING' &&
item.fromUser === this.userInfo.id && ( Number(item.fromUser) ===
this.userInfo.id && (
<span title="修改" class="icon-view"> <span title="修改" class="icon-view">
<img <img
width="24" width="24"
...@@ -749,7 +750,8 @@ export default { ...@@ -749,7 +750,8 @@ export default {
</span> </span>
)} )}
{item.orderStatus === 'TO_BE_CONFIRMED' && {item.orderStatus === 'TO_BE_CONFIRMED' &&
item.leaders === this.userInfo.id && ( Number(item.leaders) ===
this.userInfo.id && (
<span title="开始" class="icon-view"> <span title="开始" class="icon-view">
<img <img
width="24" width="24"
......
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