123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433 |
- <template>
- <view>
- <u-navbar title="巡检记录" title-color="#101010" :customBack="customBack" ></u-navbar>
-
- <view class="top">
- <view class="search">
- <view class="searchBox">
- <u-search shape="square" placeholder="使用站点名称/编号搜索" maxlength="12" v-model="testName" :show-action="false"
- :animation="true"></u-search>
- <u-button type="primary" size="mini" @click="testBtn">搜素</u-button>
- </view>
- </view>
- </view>
-
- <view class="viewTop" >
- <u-tabs :list="tabslist"
- style=" width: 70%;"
- :current="current" @change="change"></u-tabs>
- <view class="select" @click="completionTimeShow=true">
- <view class="selectSpan">
- {{completionTimeN}}
- </view>
- <u-icon name="arrow-down" size="32" color="#AAAAAA"></u-icon>
- </view>
- </view>
-
- <view class="list" >
- <view class="item"
- v-for="(item,index) in list"
- @click="gotoTask(item)"
- :key="index">
-
- <view class="body">
- <view class="line1">
- <view class="title">
- {{item.stationNo}}<span style="margin: 0 8rpx;color:rgba(119, 119, 119, 1);" >|</span>{{item.stationName}}
-
- </view>
- <view class="status " :class="'status'+item.status">
- {{item.statusN}}
-
- </view>
- </view>
-
- <view class="line2" v-if="item.status==0" >
- <view class="value">
- 上次巡检 {{item.lastInspectionTime}}
-
- </view>
- <view class="value">
- 截止时间 {{item.inspectionEndTime}}
-
- </view>
-
-
- </view>
- <view class="line2" v-if="item.status==1" >
- <view class="value">
- 本次巡检 {{item.inspectionTime}}
-
- </view>
-
- <view class="value">
- 巡检人员 {{item.inspectionUserName}}
-
- </view>
-
- </view>
-
-
-
- </view>
-
- </view>
-
-
- </view>
- <u-divider :isnone="list.length==0" nonetext="没有找到相关内容" border-color="#CFD2D5">已经到底了</u-divider>
-
-
- </view>
- </template>
- <script>
- import * as API from '@/apis/pagejs/pagesInspection.js'
- import {
-
- currentTimeStamp,
- parseUnixTime,newDate,nextMonth
- } from '@/apis/utils'
- export default {
- data() {
- return {
- queryName: "",
- testName: "",
- list:[],
- listForm:{
- pageIndex: 1,
- pageSize: 20,
- recordsTotal: 1,
- status:0
- },
- completionTime: "",
- completionTimeShow: false,
- lockId:"",
- lockName:"",
- current:0,
- tabslist:[
- {
- name: '未完成',
- status:0
- }, {
- name: '已完成',
- status:1
- }, {
- name: '全部',
- status:''
- }
- ]
- };
- },
- onLoad(op) {
- if(op.status){
- if('geterrList0'==op.status){
- this.current=0
- this.listForm.status=0
- }
- if('geterrList1'==op.status){
- this.current=1
- this.listForm.status=1
- }
- }
-
- if(op.lockId){
- this.lockId=op.lockId
- this.lockName=op.lockName
- this.listForm.lockId=op.lockId;
- }
- this.completionTime = parseUnixTime(currentTimeStamp(),'{y}-{m}-1')
-
- this.getList()
-
- },
- computed:{
- completionTimeN(){
- return parseUnixTime(newDate(this.completionTime ),'{y}年{m}月')
- }
- },
- onReachBottom() {
- if (this.list.length < this.listForm.recordsTotal) {
- this.myLoadmore();
- }
- },
- methods: {
- testBtn() {
-
- this.queryName=this.testName
- this.listForm.queryContent=this.queryName
-
- this.getList(1)
- },
- completionTimeConfirm(e) {
- console.log(e)
-
- this.completionTime = e.year+"-"+e.month+"-1"
-
-
- this.getList(1)
- },
- gotoSelectLock(){
- uni.navigateTo({
- url: '/pages/task/selectStation?isAll=1',
- events: {
- // 为指定事件添加一个监听器,获取被打开页面传送到当前页面的数据
- acceptDataFromOpenerPage: (item)=>{
- console.log(item)
-
- this.lockName=item.item.name
- this.listForm.lockId=item.item.id
- this.getList(1)
- this.$forceUpdate()
-
- },
-
- }
-
- })
- },
- customBack(){
- if(this.lockId){
- uni.switchTab({
- url:"/pages/index/index"
- })
- }else{
- uni.navigateBack()
- }
- },
- gotoTask(k){
- if(k.status==0){
- uni.navigateTo({
- url: '/pages/inspection/add?back=1&stationId='+k.stationId,
- events: {
- // 为指定事件添加一个监听器,获取被打开页面传送到当前页面的数据
- acceptDataFromOpenerPage: (data)=>{
- console.log(data)
- this.getList(1)
- },
-
- }
-
- })
- }else{
- uni.navigateTo({
- url: '/pages/inspection/info?id='+k.id,
-
-
- })
- }
-
- },
- change(e){
- this.current=e
- this.listForm.pageIndex=1
- this.listForm.status=this.tabslist[e].status
- this.list =[]
- this.getList()
- },
-
- myLoadmore(){
- this.listForm.pageIndex += 1;
- this.getList()
- },
- getList(bl) {
- if(bl){
- this.listForm.pageIndex = 1
- }
- uni.showLoading({
- title: "加载中",
- mask: true,
- })
- if(this.completionTime){
-
- this.listForm.startTime=this.completionTime
- var sz=this.completionTime.split('-')
- this.listForm.endTime=nextMonth(sz[0],sz[1],sz[2])
- }
-
- API.recordList(this.listForm).then((res) => {
- var list=this.list
-
- if (this.listForm.pageIndex == 1) {
- list = res.data.data;
- } else {
- list = [
- ...list,
- ...res.data.data
- ];
- }
- this.list = list
- this.listForm.recordsTotal=res.data.recordsTotal
-
- uni.hideLoading();
-
- }).catch(error => {
-
- uni.hideLoading();
- uni.showToast({
- title: error,
- icon: "none"
- })
- })
- },
- }
-
- }
- </script>
- <style lang="scss" scoped>
- .list {
- padding: 24rpx 24rpx;
-
- .item {
- border-radius: 16rpx;
-
- display: flex;
- border-bottom: 2rpx solid rgba(232, 232, 232, 1);
- background-color: rgba(255,255,255,1);
- // padding: 12rpx 0;
- margin-bottom: 12rpx ;
- .img {
- width: 72rpx;
- height: 72rpx;
- }
- .body {
- //margin: 0 12rpx;
- width: 100%;
- .line1,.line2,.line3{
- padding: 24rpx;
- }
- .line3{
- text-align: end;
- }
- .line2 {
- color: rgba(119,119,119,1);
- font-size: 24rpx;
- //margin-top: 8rpx;
- border-bottom:2rpx solid rgba(232,232,232,1);
- .value:not(:last-child) {
- margin-bottom: 16rpx;
- }
- }
- .line1 {
-
- display: flex;
- justify-content: space-between;
- border-bottom:2rpx solid rgba(232,232,232,1);
- .title {
- color: rgba(51, 51, 51, 1);
- font-size: 28rpx;
- font-weight: bold;
- }
- .status {
- background-color: rgba(255, 61, 0, 1);
- font-size: 24rpx;
- color:#fff;
- padding: 2rpx 8rpx;
- //border-radius: 8rpx;
- }
-
- .status0 {
- background-color: #FF7B00;
-
- }
- .status1 {
- background-color: #007aff;
-
- }
- .status2 {
- background-color: #ff9900;
-
- }
- .status3 {
- background-color: #19be6b;
-
- }
- .status4 {
- border: 2rpx solid rgba(255, 61, 0, 1);
- color: rgba(255, 61, 0, 1);
- }
- }
-
-
- }
- }
- // .item:not(:last-child) {
- // border-bottom:2rpx solid rgba(232,232,232,1);
- // }
- }
-
- .viewTop{
- border-bottom: 2rpx solid #e8e8e8;
- background-color: #fff;
- display: flex;
- justify-content: space-between;
- align-items: center;
- .select{
- padding: 0px 30rpx;
- font-size: 30rpx;
- display: flex;
-
- .selectSpan{
- text-align: end;
- width: 200rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap; /* 禁止换行,强制单行 */
- }
- }
-
- }
-
- .search {
-
- padding: 16rpx 32rpx;
- background: #fff;
-
- .searchBox {
- display: flex;
- align-items: center;
- background: #F2F2F2;
- padding: 2rpx 16rpx;
- border-radius: 16rpx;
- justify-content: space-between;
- }
- }
-
-
- .floating-button {
- z-index: 999;
- position: fixed;
- bottom: 0;
- width: 100%;
- display: flex;
- height: 120rpx;
- justify-content: center;
- background-color: rgba(255,255,255,1);
- .button{
- margin-top: 24rpx;
- border-radius: 50px;
- height: 80rpx;
- width: 80%;
- display: flex;
- align-items: center;
- justify-content: center;
- padding:12rpx;
-
- background-color: rgba(22,119,255,1);
- color: rgba(255,255,255,1);
- font-size: 36rpx;
- }
- }
- </style>
|