| | |
| | | @click="navTo(i.name,i.id,i.reportType)"> |
| | | <view class="item-title flex a-i-c j-c-s-b mb-20"> |
| | | <text class="f-32 fw">{{i.name}}</text> |
| | | <u-tag v-if="i.status == 4" text="待接收" type="warning" plain plainFill></u-tag> |
| | | <u-tag v-if="i.status == 1" text="待审批" type="warning" plain plainFill></u-tag> |
| | | <u-tag v-if="i.status == 2" text="审核通过" type="success" plain plainFill></u-tag> |
| | | <u-tag v-if="i.status == 3" text="审核拒绝" type="error" plain plainFill></u-tag> |
| | |
| | | status: "", |
| | | }, |
| | | { |
| | | name: "待接收", |
| | | status: 4, |
| | | }, |
| | | { |
| | | name: "待审核", |
| | | status: 1 |
| | | }, |
| | |
| | | { |
| | | name: "已拒绝", |
| | | status: 3 |
| | | }, |
| | | } |
| | | ], |
| | | tabIndex: 0, |
| | | currentStatus: "", |
| | |
| | | |
| | | |
| | | .tab { |
| | | width: 100%; |
| | | // width: 100%; |
| | | |
| | | } |
| | | |