| | |
| | | <template> |
| | | <view class="page-box"> |
| | | <u-sticky bgColor="white"> |
| | | <u-sticky bgColor="white" :offsetTop="0"> |
| | | <view class="set-search"> |
| | | <u-search placeholder="请输入执法主题 " v-model="value" @clear="value = '';search()" @search="search" @blur="search" shape="square" :showAction="false"></u-search> |
| | | </view> |
| | |
| | | <u-tabs :list="list1" @click="click" :current="current" :scrollable="false" bgColor="white"></u-tabs> |
| | | </u-sticky> |
| | | <view class="list"> |
| | | <view class="list-item" @click="goReport" v-for="(item,index) in list" :key="index"> |
| | | <view class="list-item" @click="goReport(item.orderId)" v-for="(item,index) in list" :key="index"> |
| | | <view class="top-title"> |
| | | <text>{{item.enforceReason}}</text> |
| | | <text class="status status2" v-if="item.checkStatus == 2">通过</text> |
| | | <text class="status status4" v-else>拒绝</text> |
| | | <text class="status status2" v-if="item.checkStatus == 2 || item.checkStatus == 1">通过</text> |
| | | <!-- <text class="status " v-if="item.checkStatus == 1">审批中</text> --> |
| | | <text class="status status4" v-if="item.checkStatus == -1">拒绝</text> |
| | | </view> |
| | | <view class="user-info"> |
| | | <text>{{item.applyUser}}</text> |
| | |
| | | current: 0, |
| | | queryParams: { |
| | | pageNum: 1, |
| | | pageSize: 10 |
| | | pageSize: 10, |
| | | isAsc: "desc", |
| | | orderByColumn: "apply_time" |
| | | }, |
| | | list1: [{ |
| | | name: '全部', |
| | |
| | | this.queryParams.pageNum = 1 |
| | | this.enforceLogList() |
| | | }, |
| | | goReport() { |
| | | |
| | | goReport(order) { |
| | | uni.navigateTo({ |
| | | url: `/policy/judgeApply/judgeApply?id=${order}&title=setTitle` |
| | | }) |
| | | }, |
| | | click(e) { |
| | | this.list = [] |
| | |
| | | </style> |
| | | <style lang="scss" scoped> |
| | | @import "./translateRecord.scss"; |
| | | /deep/ .u-sticky{ |
| | | position: -webkit-sticky; |
| | | } |
| | | </style> |