360 lines
9.4 KiB
Vue
360 lines
9.4 KiB
Vue
|
|
<template>
|
|||
|
|
<!-- background-color: #f6f6f6; -->
|
|||
|
|
<view style="height: 100%; background-color: #F3F5F7;">
|
|||
|
|
<view class="fixedheader" style="background-color: #F3F5F7; position: fixed; top: 0; left: 0; width: 100%; z-index: 2;">
|
|||
|
|
<headers :showBack="false">
|
|||
|
|
<view class="headerName">
|
|||
|
|
消息中心
|
|||
|
|
</view>
|
|||
|
|
</headers>
|
|||
|
|
<view class="tab flex2" style="background-color: #F3F5F7;">
|
|||
|
|
<view class="tabType" @click="changeTab(0)" :class="checkedTab==0?'checkedTab':'noCheckTab'">全部</view>
|
|||
|
|
<view class="tabType" @click="changeTab(2)" :class="checkedTab==2?'checkedTab':'noCheckTab'">质量</view>
|
|||
|
|
<view class="tabType" @click="changeTab(3)" :class="checkedTab==3?'checkedTab':'noCheckTab'">安全</view>
|
|||
|
|
<view class="tabType" @click="changeTab(4)" :class="checkedTab==4?'checkedTab':'noCheckTab'">AI</view>
|
|||
|
|
<view class="tabType" @click="changeTab(5)" :class="checkedTab==5?'checkedTab':'noCheckTab'">通知公告</view>
|
|||
|
|
<view class="tabType" @click="changeTab(6)" :class="checkedTab==6?'checkedTab':'noCheckTab'">安全履职预警</view>
|
|||
|
|
<view class="tabType" @click="changeTab(7)" :class="checkedTab==7?'checkedTab':'noCheckTab'">企业资质</view>
|
|||
|
|
<view class="tabType" @click="changeTab(8)" :class="checkedTab==8?'checkedTab':'noCheckTab'">人员资质</view>
|
|||
|
|
</view>
|
|||
|
|
<view class="uni-form-item" style="background-color: #ffffff;">
|
|||
|
|
<input class="uni-input" name="searchName" v-model="searchName"
|
|||
|
|
placeholder="请输入标题" />
|
|||
|
|
<!-- <uni-icons2 class="search-icon" type="search" @click="loadData"></uni-icons2> -->
|
|||
|
|
<button class="mini-btn" type="primary" size="mini" @click="loadData">搜索</button>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
<view class="centerContent" style="background-color: #F3F5F7;" :style="{paddingTop: (mobileTopHeight * 2) + 310 + 'rpx'}">
|
|||
|
|
<view v-if="centerContentList.length > 0" class="centerContentBox">
|
|||
|
|
<view v-for="(item,index) in centerContentList" :key="index" class="centerContent_item"
|
|||
|
|
@click="goList(item)">
|
|||
|
|
<!-- <view class="itemImgBox">
|
|||
|
|
<image v-if="item.imageUrl" @click.stop="previewImg(item.imageUrl)" :src="item.imageUrl"
|
|||
|
|
class="itemImg"></image>
|
|||
|
|
</view> -->
|
|||
|
|
<view class="itemBox">
|
|||
|
|
<view class="itemBox_title">
|
|||
|
|
<view class="title">{{ item.title }}</view>
|
|||
|
|
<view class="content">{{ item.msg }}</view>
|
|||
|
|
</view>
|
|||
|
|
<view class="time">{{item.sendTime}}</view>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
<view class="placeholderBox" v-else>
|
|||
|
|
<image src="/static/noData.png" class="noDataImg"></image>
|
|||
|
|
<view class="text">
|
|||
|
|
暂无数据
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
<!-- v-if="accountType == 5 || accountType == 6 || accountType == 10" -->
|
|||
|
|
<footers :activeTab="'mssage'" ></footers>
|
|||
|
|
<levitatedsphere :x="100" :y="80"></levitatedsphere>
|
|||
|
|
</view>
|
|||
|
|
</template>
|
|||
|
|
|
|||
|
|
<script>
|
|||
|
|
import levitatedsphere from "@/components/levitatedsphere/levitatedsphere.vue"
|
|||
|
|
import headers from '../../components/headers/headers.vue'
|
|||
|
|
import footers from '../../components/footers/footers.vue'
|
|||
|
|
export default {
|
|||
|
|
components: {
|
|||
|
|
headers
|
|||
|
|
},
|
|||
|
|
data() {
|
|||
|
|
return {
|
|||
|
|
mobileTopHeight: 0,
|
|||
|
|
checkedTab: 0,
|
|||
|
|
accountType: 1,
|
|||
|
|
searchName: '',
|
|||
|
|
centerContentList: ''
|
|||
|
|
}
|
|||
|
|
},
|
|||
|
|
mounted() {
|
|||
|
|
console.log(JSON.parse(uni.getStorageSync('userInfo')).userId)
|
|||
|
|
var that = this
|
|||
|
|
uni.getSystemInfo({
|
|||
|
|
success(res) {
|
|||
|
|
that.mobileTopHeight = res.statusBarHeight ? res.statusBarHeight : 0;
|
|||
|
|
uni.setStorageSync('systemInfo',res)
|
|||
|
|
console.log(res.statusBarHeight,111222)
|
|||
|
|
}
|
|||
|
|
})
|
|||
|
|
console.log('this.mobileTopHeight',this.mobileTopHeight)
|
|||
|
|
this.loadData()
|
|||
|
|
},
|
|||
|
|
onLoad() {
|
|||
|
|
var userInfo = JSON.parse(uni.getStorageSync('userInfo'))
|
|||
|
|
this.accountType = userInfo.accountType
|
|||
|
|
},
|
|||
|
|
methods: {
|
|||
|
|
//去指定页
|
|||
|
|
goList(obj) {
|
|||
|
|
let payLoadParams = eval("(" + obj.payload + ")")
|
|||
|
|
console.log(payLoadParams)
|
|||
|
|
if (obj.type == 2) { // 安全
|
|||
|
|
this.sendRequest({
|
|||
|
|
url: "xmgl/xzSecurityQualityInspectionRecord/selectQualityInspectionRecordById",
|
|||
|
|
data: {
|
|||
|
|
id: payLoadParams.data.id
|
|||
|
|
},
|
|||
|
|
method: "POST",
|
|||
|
|
success(res) {
|
|||
|
|
if (!res.result || res.result.status == 6) {
|
|||
|
|
uni.showToast({
|
|||
|
|
title: '检查单已撤回',
|
|||
|
|
icon: "none"
|
|||
|
|
})
|
|||
|
|
return;
|
|||
|
|
}
|
|||
|
|
uni.navigateTo({
|
|||
|
|
url: '/pages/projectEnd/safeSame/details?id=' + payLoadParams.data.id + '&type=' +
|
|||
|
|
payLoadParams.data.status
|
|||
|
|
})
|
|||
|
|
}
|
|||
|
|
})
|
|||
|
|
} else if (obj.type == 1) { // 质量
|
|||
|
|
this.sendRequest({
|
|||
|
|
url: "xmgl/qualityInspectionRecord/selectQualityInspectionRecordById",
|
|||
|
|
data: {
|
|||
|
|
id: payLoadParams.data.id
|
|||
|
|
},
|
|||
|
|
method: "POST",
|
|||
|
|
success(res) {
|
|||
|
|
console.log(res)
|
|||
|
|
if (!res.result || res.result.status == 6) {
|
|||
|
|
uni.showToast({
|
|||
|
|
title: '检查单已撤回',
|
|||
|
|
icon: "none"
|
|||
|
|
})
|
|||
|
|
return;
|
|||
|
|
}
|
|||
|
|
uni.navigateTo({
|
|||
|
|
url: '/pages/projectEnd/qualityManage/details?id=' + payLoadParams.data.id + '&type=' +
|
|||
|
|
payLoadParams.data.status
|
|||
|
|
})
|
|||
|
|
}
|
|||
|
|
})
|
|||
|
|
} else if (obj.type == 3) { // AI
|
|||
|
|
uni.navigateTo({
|
|||
|
|
url: "/pages/alarmPage/disposition/disposition?item=" + encodeURIComponent(JSON.stringify(
|
|||
|
|
payLoadParams.data))
|
|||
|
|
});
|
|||
|
|
}
|
|||
|
|
// if (obj.type == 11) {
|
|||
|
|
// uni.navigateTo({
|
|||
|
|
// url: '/pages/projectEnd/qualityManage/list?type=1'
|
|||
|
|
// })
|
|||
|
|
// } else if (obj.type == 10) {
|
|||
|
|
// uni.navigateTo({
|
|||
|
|
// url: '/pages/projectEnd/safeSame/list?type=1'
|
|||
|
|
// })
|
|||
|
|
// } else if (obj.type == 8) {
|
|||
|
|
// uni.navigateTo({
|
|||
|
|
// url: '/pages/alarmPage/indexTwo'
|
|||
|
|
// })
|
|||
|
|
|
|||
|
|
// }
|
|||
|
|
},
|
|||
|
|
//切换tab
|
|||
|
|
changeTab(type) {
|
|||
|
|
this.checkedTab = type;
|
|||
|
|
this.loadData()
|
|||
|
|
},
|
|||
|
|
previewImg(imgUrl) {
|
|||
|
|
console.log(imgUrl)
|
|||
|
|
//urls为数组,数据里有多少图片链接则显示多少张,若只想预览一张的话,直接传只有一个图片地址的数组即可
|
|||
|
|
let imgurl = imgUrl
|
|||
|
|
let imgArr = []
|
|||
|
|
imgArr[0] = imgurl
|
|||
|
|
uni.previewImage({
|
|||
|
|
current: 0,
|
|||
|
|
urls: imgArr
|
|||
|
|
})
|
|||
|
|
},
|
|||
|
|
searchFile(e) {
|
|||
|
|
this.searchName = e.detail.value
|
|||
|
|
},
|
|||
|
|
loadData() {
|
|||
|
|
var json = {
|
|||
|
|
accountId: JSON.parse(uni.getStorageSync('userInfo')).userId,
|
|||
|
|
pageNo: 1,
|
|||
|
|
title: this.searchName,
|
|||
|
|
pageSize: 100
|
|||
|
|
}
|
|||
|
|
if (this.checkedTab == 2) {
|
|||
|
|
json.type = 1
|
|||
|
|
} else if (this.checkedTab == 3) {
|
|||
|
|
json.type = 2
|
|||
|
|
} else if (this.checkedTab == 4) {
|
|||
|
|
json.type = 3
|
|||
|
|
} else if (this.checkedTab == 5) {
|
|||
|
|
json.notInType = 10
|
|||
|
|
} else if (this.checkedTab == 6) {
|
|||
|
|
json.type = 4
|
|||
|
|
} else if (this.checkedTab == 7) {
|
|||
|
|
json.type = 5
|
|||
|
|
} else if (this.checkedTab == 8) {
|
|||
|
|
json.type = 6
|
|||
|
|
}
|
|||
|
|
var that = this
|
|||
|
|
this.sendRequest({
|
|||
|
|
url: "xmgl/notice/list",
|
|||
|
|
data: json,
|
|||
|
|
method: "POST",
|
|||
|
|
success(res) {
|
|||
|
|
that.centerContentList = res.result.records
|
|||
|
|
console.log('res.result.records', res.result.records)
|
|||
|
|
}
|
|||
|
|
})
|
|||
|
|
},
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
</script>
|
|||
|
|
|
|||
|
|
<style lang="scss" scoped>
|
|||
|
|
:deep( .headerBox .backImg){
|
|||
|
|
color: #171717;
|
|||
|
|
}
|
|||
|
|
:deep( .headerName ){
|
|||
|
|
background-color: #F3F5F7;
|
|||
|
|
}
|
|||
|
|
.centerContent {
|
|||
|
|
padding-bottom: 110rpx;
|
|||
|
|
}
|
|||
|
|
.flex2 {
|
|||
|
|
display: flex;
|
|||
|
|
align-items: center;
|
|||
|
|
justify-content: space-between;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.tab {
|
|||
|
|
// width: 100%;
|
|||
|
|
overflow: auto;
|
|||
|
|
height: 90rpx;
|
|||
|
|
text-align: center;
|
|||
|
|
box-shadow: 0 0 20rpx rgba(194, 194, 194, 0.5);
|
|||
|
|
padding: 0 40rpx;
|
|||
|
|
|
|||
|
|
.tabType {
|
|||
|
|
// width: 33%;
|
|||
|
|
min-width: 180rpx;
|
|||
|
|
line-height: 86rpx;
|
|||
|
|
position: relative;
|
|||
|
|
// border-bottom: 2rpx solid rgba(194, 194, 194, 0.2);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.checkedTab::after {
|
|||
|
|
content: '';
|
|||
|
|
width: 120rpx;
|
|||
|
|
height: 4rpx;
|
|||
|
|
position: absolute;
|
|||
|
|
left: 50%;
|
|||
|
|
bottom: 0;
|
|||
|
|
transform: translateX(-50%);
|
|||
|
|
// color: #4181FE;
|
|||
|
|
// border-bottom: 4rpx solid;
|
|||
|
|
background: linear-gradient(to right, #2B8DF3, #ffffff);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.noCheckTab {
|
|||
|
|
padding-bottom: 4rpx;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
.fixedheader {
|
|||
|
|
border-bottom: 2rpx solid rgba(221, 221, 221, 0.8);
|
|||
|
|
}
|
|||
|
|
.centerContentBox {
|
|||
|
|
|
|||
|
|
padding: 0 40rpx;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.centerContent_item {
|
|||
|
|
// border-bottom: 2rpx solid rgba(221, 221, 221, 0.8);
|
|||
|
|
width: 100%;
|
|||
|
|
display: flex;
|
|||
|
|
align-items: center;
|
|||
|
|
min-height: 200rpx;
|
|||
|
|
padding: 20rpx 0;
|
|||
|
|
font-size: 30rpx;
|
|||
|
|
box-sizing: border-box;
|
|||
|
|
background-color: #FFFFFF;
|
|||
|
|
margin-bottom: 32rpx;
|
|||
|
|
border-radius: 24rpx;
|
|||
|
|
|
|||
|
|
.itemBox {
|
|||
|
|
width: 100%;
|
|||
|
|
.itemBox_title {
|
|||
|
|
padding: 0 24rpx 30rpx;
|
|||
|
|
border-bottom: 2rpx dashed #CCCCCC;
|
|||
|
|
}
|
|||
|
|
.content {
|
|||
|
|
margin-top: 20rpx;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.time {
|
|||
|
|
margin-top: 20rpx;
|
|||
|
|
color: #999999;
|
|||
|
|
font-size: 24rpx;
|
|||
|
|
text-align: right;
|
|||
|
|
padding: 0 34rpx;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.itemImgBox {
|
|||
|
|
margin-right: 20rpx;
|
|||
|
|
|
|||
|
|
.itemImg {
|
|||
|
|
width: 120rpx;
|
|||
|
|
height: 120rpx;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.uni-form-item {
|
|||
|
|
position: relative;
|
|||
|
|
// width: 100%;
|
|||
|
|
// padding: 0 20rpx;
|
|||
|
|
// height: 60rpx;
|
|||
|
|
display: flex;
|
|||
|
|
margin: 24rpx 40rpx;
|
|||
|
|
background-color: #FFFFFF;
|
|||
|
|
border-radius: 48rpx;
|
|||
|
|
justify-content: space-between;
|
|||
|
|
.search-icon {
|
|||
|
|
position: absolute;
|
|||
|
|
top: 50%;
|
|||
|
|
right: 50rpx;
|
|||
|
|
transform: translateY(-50%);
|
|||
|
|
}
|
|||
|
|
.mini-btn {
|
|||
|
|
width: 120rpx;
|
|||
|
|
font-size: 24rpx;
|
|||
|
|
border-radius: 100rpx;
|
|||
|
|
line-height: 58rpx;
|
|||
|
|
margin: 0;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.uni-input {
|
|||
|
|
flex: 1;
|
|||
|
|
border-radius: 30rpx;
|
|||
|
|
// margin: 20rpx 20rpx;
|
|||
|
|
background-color: #ffffff;
|
|||
|
|
height: 60rpx;
|
|||
|
|
line-height: 60rpx;
|
|||
|
|
padding: 0 40rpx;
|
|||
|
|
font-size: 28rpx;
|
|||
|
|
width: 65%;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// .mini-btn {
|
|||
|
|
// position: absolute;
|
|||
|
|
// // right: 12rpx;
|
|||
|
|
// border-radius: 30rpx
|
|||
|
|
|
|||
|
|
// // height: 60rpx;
|
|||
|
|
// // line-height: 60rpx;
|
|||
|
|
// }
|
|||
|
|
</style>
|