123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455 |
- <template>
- <view class="history-container">
- <view class="tabs">
- <template v-if="isAccount!==0">
- <view class="tab" :class="tabIdx===1?'active':''" @click="tabclick(1)">安全巡检</view>
- <view class="tab" :class="tabIdx===2?'active':''" @click="tabclick(2)">隐患记录</view>
- <!-- <view class="tab" :class="tabIdx===4?'active':''" @click="tabclick(4)">危险源</view> -->
- </template>
- <view class="tab" :class="tabIdx===5?'active':''" @click="tabclick(5)">问题反馈</view>
- <view class="tab" :class="tabIdx===3?'active':''" @click="tabclick(3)">满意度评价</view>
- </view>
- <view class="item-list-wrap" v-if="total>0">
- <view class="item-list basics" v-if="tabIdx===1||tabIdx===4">
- <view class="basics-item" v-for="(item,idx) in items" :key="idx" @click="showDetail(item)">
- <view class="basics-title">{{item.checklistTitle}}</view>
- <view class="basics-body">
- <view class="lf">
- <text class="time">{{item.recordTime}}</text>
- <text class="user">{{item.accountName||'微信用户'}}</text>
- </view>
- <view class="status">{{checklistStatus(item.status)}}</view>
- </view>
- </view>
- </view>
- <view class="item-list basics" v-if="tabIdx===5">
- <view class="basics-item" v-for="(item,idx) in items" :key="idx" @click="showDetail(item)">
- <view class="basics-title">{{item.snapshotContent}}</view>
- <view class="basics-body">
- <view class="lf">
- <text class="time">{{item.submitTime}}</text>
- <template>
- <text class="user" v-if="item.handleAccountId > 0">{{ item.handleAccountName }}</text>
- <text class="user" v-else>{{item.wxName||'--'}}</text>
- </template>
- </view>
- <view class="status">{{snapshotStatus(item.status)}}</view>
- </view>
- </view>
- </view>
- <view class="item-list basics danger" v-if="tabIdx===2">
- <view class="basics-item" v-for="(danger,dangerIdx) in items" :key="dangerIdx">
- <view class="basics-item-sceneIcon">
- <img @click="showImg([danger.scenePhoto])" class="icon" :src="danger.sceneIcon" v-if="danger.sceneIcon" />
- </view>
- <view class="basics-item-info" @click="linkTo(danger)">
- <view class="basics-title">{{danger.dangerTitle}}</view>
- <view class="basics-body">
- <view class="lf">
- <view class="user">{{danger.curAccountName}}</view>
- <view class="time">{{danger.dangerDeadLine}}</view>
- </view>
- <view class="status">{{dangerStatus(danger.status)}}</view>
- </view>
- </view>
- </view>
- </view>
- <view class="item-list satisfaction" v-if="tabIdx===3">
- <view class="uni-table">
- <view class="uni-table-tr">
- <view class="uni-table-th">姓名</view>
- <view class="uni-table-th" style="80px;text-align:right;">评分</view>
- </view>
- <view class="uni-table-tr" v-for="(item,index) in items" :key="index" @click="showDetail(item)">
- <view class="uni-table-td">{{item.accountName||'微信用户'}}</view>
- <view class="uni-table-td" style="80px;text-align:right;">{{item.score===null?'--':item.score}}</view>
- </view>
- </view>
- </view>
- </view>
- <template v-else>
- <view class="isEmpty" >
- <p class="word">没有数据 ^_^ </p>
- </view>
- </template>
- </view>
- </template>
- <script>
- import {getDangerByPage} from '@/api/aqpt/dangerApi.js'
- import { getchecklistByPage} from '@/api/aqpt/checklistPoint.js'
- import { getSnapshotByPage} from '@/api/aqpt/snapshotApi.js'
- export default {
- data() {
- return {
- conditions:{
- page:1,
- limit:15,
- },
- total:0,
- items:[],
- tabIdx:1,
- isAccount:undefined
- }
- },
- onShow() {
- this.init()
- },
- onLoad() {
- uni.$on('type',(tabIdx)=>{
- if(tabIdx){
- this.tabIdx=tabIdx
- // this.tabclick(tabIdx)
- }
- })
- },
- methods: {
- dangerStatus(i) {
- if (i >= 0) {
- const strs = ['待提交','待评审','待整改','待验收','已完成']
- return strs[i]
- } else {
- return '已撤销'
- }
- },
- checklistStatus(val){
- if(val===-1)return "巡检异常"
- const strs = ['未开始','未完成','完成']
- return strs[val]
- },
- dangerLevelFilter(val){
- let levels=['未知','一般隐患','重大隐患'];
- return levels[val]
- },
- snapshotStatus(val){
- if (val >= 0) {
- const strs = [
- '待处理',
- '已处理'
- ]
- return strs[val]
- } else {
- return '已撤销'
- }
- },
- init(){
- this.items=[]
- this.total=0
- this.conditions={
- limit:15,
- page:1
- }
- this.getData()
- this.clearDetail()
- this.isAccount=uni.getStorageSync('isAccount')
- },
- tabclick(tabIdx){
- this.tabIdx=tabIdx
- this.init()
- },
- getData(){
- let qrcode=uni.getStorageSync('qrcode')
- let targetType=qrcode.targetType
- let targetId=qrcode.targetId
- if(this.tabIdx===2){
- getDangerByPage({
- ...this.conditions,
- riskPointId:targetId
- }).then((res)=>{
- let items=JSON.parse(JSON.stringify(this.items))
- this.items=items.concat(res.data)
- this.total=res.total
- })
- }
- if(this.tabIdx===1||this.tabIdx===3||this.tabIdx===4){
- let checklistTypeId=undefined;
- let enums={1:2,3:3,4:1}
- let params={
- ...this.conditions,
- targetType,
- targetId,
- }
- if(this.tabIdx!==1){params.checklistTypeId=enums[this.tabIdx]}
- getchecklistByPage(params).then((res)=>{
- let items=JSON.parse(JSON.stringify(this.items))
- this.items=items.concat(res.data)
- this.total=res.total
- })
- }
- if(this.tabIdx===5){
- getSnapshotByPage({
- ...this.conditions,
- targetType,
- targetId
- }).then((res)=>{
- let items=JSON.parse(JSON.stringify(this.items))
- this.items=items.concat(res.data)
- this.total=res.total
- })
- }
- },
- changePageNumber({type,current}){
- this.conditions.page=current
- this.getData()
- },
- clearDetail(){
- if(uni.getStorageSync('detail-info')){
- uni.removeStorageSync('detail-info')
- }
- },
- linkTo(item){
- uni.setStorageSync('detail-info',item)
- uni.navigateTo({
- url:'/pages/history/detail/detail'
- })
- },
- showDetail(item){
- let pageUrl="";
- if(this.tabIdx===1){
- pageUrl="/pages/app_views/checkList/index/index"
- }
- if(this.tabIdx===3){
- pageUrl="/pages/app_views/satisfaction_evaluation/satisfaction_evaluation"
- }
- if(this.tabIdx===4){
- pageUrl="/pages/app_views/hazard/index/index"
- }
- if(this.tabIdx===5){
- pageUrl="/pages/app_views/problem_feedback/record/record"
- uni.navigateTo({
- url:`${pageUrl}?id=${item.snapshotId}`
- })
- return
- }
- uni.navigateTo({
- url:`${pageUrl}?type=history&id=${item.checklistId}&recordId=${item.recordId}`
- })
- },
- showImg(urls){
- uni.previewImage({
- urls
- })
- },
- isEmpty(val){
- if(val!=="undefined"&&val!==undefined&&val!==""&&val!==null){
- return false
- }
- return true
- }
- },
- onUnload() {
- uni.$off('type')
- },
- onPullDownRefresh() {
- this.init()
- uni.stopPullDownRefresh()
- },
- onReachBottom() {
- if(this.total>=this.conditions.page*this.conditions.limit){
- this.conditions.page++
- this.getData()
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .history-container{
- padding-bottom: 100rpx;
- min-height: 100vh;
- box-sizing: border-box;
- background-color: #F5F6F8;
- .tabs{
- overflow-x: auto;
- display: flex;
- background-color: #fff;
- border-radius: 16rpx;
- .tab{
- height: 88rpx;
- line-height: 88rpx;
- display: inline-block;
- padding: 0 32rpx;
- flex-shrink: 0;
- font-size: 28rpx;
- color: #35364F;
- &.active{
- font-size: 34rpx;
- color: #4D73FF;
- font-weight: 700;
- }
- }
- }
- }
- .isEmpty{
- width: 100%;
- height: 100vh;
- background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgNzkgODYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYSIgeDE9IjM4Ljg1JSIgeTE9IjAlIiB4Mj0iNjEuMTUlIiB5Mj0iMTAwJSI+PHN0b3Agc3RvcC1jb2xvcj0iI0ZDRkNGRCIgb2Zmc2V0PSIwJSIvPjxzdG9wIHN0b3AtY29sb3I9IiNFRUVGRjMiIG9mZnNldD0iMTAwJSIvPjwvbGluZWFyR3JhZGllbnQ+PGxpbmVhckdyYWRpZW50IGlkPSJiIiB4MT0iMCUiIHkxPSI5LjUlIiB5Mj0iOTAuNSUiPjxzdG9wIHN0b3AtY29sb3I9IiNGQ0ZDRkQiIG9mZnNldD0iMCUiLz48c3RvcCBzdG9wLWNvbG9yPSIjRTlFQkVGIiBvZmZzZXQ9IjEwMCUiLz48L2xpbmVhckdyYWRpZW50PjxwYXRoIGlkPSJjIiBkPSJNMCAwaDE3djM2SDB6Ii8+PC9kZWZzPjxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+PHBhdGggZD0iTTM5LjUgODZDNjEuMzE1IDg2IDc5IDgzLjkxIDc5IDgxLjMzM1M1Ny4zMTUgNzggMzUuNSA3OCAwIDc4Ljc1NiAwIDgxLjMzM0MwIDgzLjkxMSAxNy42ODUgODYgMzkuNSA4NnoiIGZpbGw9IiNGN0Y4RkMiLz48cGF0aCBmaWxsPSIjRTVFN0U5IiBkPSJNMTMgNDVoNDBMNDIgNThIMnpNNjUuNTUxIDI5Ljk4bC0xNi4zMTMtNy42MDctMi44NDEtNS43MzggMTYuMzEzIDcuNjA3eiIvPjxwYXRoIGZpbGw9IiNFREVFRjIiIGQ9Ik02NS41NTEgMjkuOThsLTM0LjQ0LTE2LjA1OS0xNS4yMTQgMzIuNjI3IDM0LjQ0IDE2LjA2eiIvPjxwYXRoIGZpbGw9InVybCgjYSkiIHRyYW5zZm9ybT0icm90YXRlKDI1IDI3LjQ0NiAtNDMuNDE2KSIgZD0iTTM4IDdoMTd2MzZIMzh6Ii8+PHBhdGggZmlsbD0iI0Y4RjlGQiIgZD0iTTE1LjcwNSA2LjczN2wxNS40MDcgNy4xODQgMTUuNjQ2LS40MjctMTUuNDA3LTcuMTg1eiIvPjxwYXRoIGZpbGw9InVybCgjYikiIGQ9Ik0xMyA0NWg0MHYzNkgxM3oiLz48ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg1MyA0NSkiPjxtYXNrIGlkPSJkIiBmaWxsPSIjZmZmIj48dXNlIHhsaW5rOmhyZWY9IiNjIi8+PC9tYXNrPjx1c2UgZmlsbD0iI0UwRTNFOSIgdHJhbnNmb3JtPSJtYXRyaXgoLTEgMCAwIDEgMTcgMCkiIHhsaW5rOmhyZWY9IiNjIi8+PHBhdGggZmlsbD0iI0Q1RDdERSIgbWFzaz0idXJsKCNkKSIgdHJhbnNmb3JtPSJtYXRyaXgoLTEgMCAwIDEgMjQgMCkiIGQ9Ik03IDBoMTdsLTQgMTgtMjAtMnoiLz48L2c+PHBhdGggZmlsbD0iI0Y4RjlGQiIgZD0iTTcwIDQ1SDUzbDkgMTNoMTd6Ii8+PC9nPjwvc3ZnPg==);
- background-size: contain;
- background-repeat: no-repeat;
- position: relative;
- background-color: #fff;
- /* #ifndef MP-WEIXIN */
- height: calc( 100vh - 100px);
- /* #endif */
- .word{
- width: 100%;
- text-align: center;
- position: absolute;
- top: 80vh;
- left: 0;
- color: #999;
- font-size: 28rpx;
- letter-spacing: 2rpx;
- }
- }
-
- .item-list-wrap{
- padding: 0 20rpx;
- background-color: #F5F6F8;
- margin-top: 18rpx;
- .item-list{
- background-color: #fff;
- border-radius: 16rpx;
- overflow: hidden;
- .chat-custom-right{
- .chat-custom-text{
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 400;
- line-height: 28rpx;
- color: #666666;
- }
- .bottom{
- text-align: right;
- padding-top: 10rpx;
- .status{
- font-size: 28rpx;
- line-height: 1;
- display: inline-block;
- border: 1px solid #13ce66;
- color: #13ce66;
- padding: 8rpx 10rpx;
- border-radius: 4rpx;
- }
- .level{
- line-height: 1;
- display: inline-block;
- font-size: 28rpx;
- color: #666666;
- margin-left: 10rpx;
- border: 1px solid transparent;
- padding: 8rpx 10rpx;
- border-radius: 4rpx;
- &-1{
- color:#13ce66 ;
- border-color: #13ce66;
- }
- &-2{
- color: red;
- border-color: red;
- }
- }
- }
-
- }
- &.basics{
- background-color: #F5F6F8;
- .basics-item{
- padding:30rpx 40rpx ;
- border-radius: 16rpx;
- margin-bottom: 20rpx;
- background-color: #fff;
- .basics-title{
- font-size: 32rpx;
- line-height: 48rpx;
- font-weight: 500;
- color: #212121;
- }
- .basics-body{
- display: flex;
- align-items: center;
- padding-top: 32rpx;
- .lf{
- flex: 1;
- .time{
- font-size: 24rpx;
- line-height: 48rpx;
- color: #999999;
- padding-left: 34rpx;
- background-position: center left;
- background-repeat: no-repeat;
- background-size: 24rpx 24rpx;
- background-image: url('/static/time.png');
- }
- .user{
- margin-left:24rpx ;
- font-size: 24rpx;
- line-height: 48rpx;
- color: #999999;
- padding-left: 34rpx;
- background-position: center left;
- background-repeat: no-repeat;
- background-size: 24rpx 24rpx;
- background-image: url('/static/user.png');
- }
- }
- .status{
- font-size: 28rpx;
- line-height: 48rpx;
- color: #4D73FF;
- }
- }
- }
- }
- &.satisfaction{
- padding: 10rpx 24rpx;
- &::v-deep{
- .uni-table-td,.uni-table-th{
- border: 0;
- }
- }
- }
- &.danger{
- .basics-item{
- display: flex;
- align-items: flex-start;
- .basics-item-sceneIcon{
- width:100rpx ;
- height: 100rpx;
- background-color: #f5f5f5;
- border-radius: 10rpx;
- overflow: hidden;
- .icon{
- display: block;
- width:100rpx ;
- height: 100rpx;
- }
- }
- .basics-item-info{
- flex: 1;
- padding-left: 16rpx;
- .basics-body{
- .lf{
- .user{
- margin-left: 0;
- }
- }
- }
- }
- }
- }
- }
- }
- .custom-item-footer{
- .name{
- font-size: 30rpx;
- color: #333;
- text-align: right;
- }
- .status{
- font-size: 26rpx;
- color: #666;
- text-align: right;
- padding-top: 10rpx;
- }
- }
- </style>
|