This commit is contained in:
xiaofajia 2024-12-16 16:11:30 +08:00
parent 4ebf74ce11
commit 6a8174bf64
11 changed files with 1137 additions and 670 deletions

View File

@ -1,8 +1,8 @@
// 应用全局配置
module.exports = {
// baseUrl: 'https://www.nuoyunr.com/admin-api',
baseUrl: 'http://127.0.0.1:48080/admin-api',
// baseUrl: 'http://zjcptv.natappfree.cc/admin-api',
// baseUrl: 'http://127.0.0.1:48080/admin-api',
baseUrl: 'http://i3472v.natappfree.cc/admin-api',
imagesUrl: 'http://www.nuoyunr.com/lananRsc',
baseImageUrl: 'https://www.nuoyunr.com/minio',
wsUrl: 'ws://127.0.0.1:48080',

View File

@ -387,6 +387,13 @@
"navigationBarTitleText": "当日订单",
"navigationStyle": "custom"
}
},
{
"path": "pages/index/UserInfo",
"style": {
"navigationBarTitleText": "个人信息",
"navigationStyle": "custom"
}
}
],
"globalStyle": {

213
pages/index/UserInfo.vue Normal file
View File

@ -0,0 +1,213 @@
<template>
<view class="content">
<view class="top-heder">
<view class="t-left" @click="handleBack">
<uni-icons type="left" size="18"></uni-icons>
</view>
<view class="c-title">个人信息</view>
<view style="width: 5%; height: 10px;"></view>
</view>
<view class="body">
<view class="formItem">
<image class="formIcon" mode="aspectFit" src="@/static/icons/userInfo_1.png"></image>
<text class="formLabel">头像</text>
<view class="formValue">
<image style="width: 64rpx;height: 64rpx;border-radius: 50%;"
v-if="customInfo && customInfo.avatar === null" :src="defaultAvatar" mode="scaleToFill" class="avatar"></image>
<image v-else :src="customInfo.avatar" class="avatar" mode="scaleToFill"
style="width: 64rpx;height: 64rpx;border-radius: 50%;"></image>
</view>
</view>
<view class="formItem">
<image class="formIcon" mode="aspectFit" src="@/static/icons/userInfo_2.png"></image>
<text class="formLabel">账号昵称</text>
<text class="formValue">{{ customInfo.nickname }}</text>
<!-- <u-icon color="#999" name="arrow-right" size="12"></u-icon>-->
</view>
<view class="formItem">
<image class="formIcon" mode="aspectFit" src="@/static/icons/userInfo_3.png"></image>
<text class="formLabel">绑定电话</text>
<text class="formValue">{{ customInfo.mobile }}</text>
<!-- <u-icon color="#999" name="arrow-right" size="12"></u-icon>-->
</view>
<!-- <view class="formItem" v-if="showUniCode">-->
<!-- <image class="formIcon" mode="aspectFit" src="@/static/icons/userInfo_3.png"></image>-->
<!-- <text class="formLabel">我的邀请码</text>-->
<!-- <text class="formValue"></text>-->
<!-- </view>-->
<!-- <view style="padding-bottom: 60rpx;border-bottom: 1px solid #ddd;" class="formItem" v-if="showUniCode">-->
<!-- <canvas id="qrcode" canvas-id="qrcode" style="width: 200px;height: 200px;margin: auto"></canvas>-->
<!-- &lt;!&ndash; <image style="width: 200px; height: 200px;margin: auto" class="formIcon" mode="scaleToFill" src="@/pages-home/static/yaoqingma.png"></image>&ndash;&gt;-->
<!-- </view>-->
<view class="btns">
<view class="btn" @click="logout">
退出登录
</view>
<view class="btn" @click="changePassword">
修改密码
</view>
</view>
</view>
<uni-popup ref="alertDialog" type="dialog">
<uni-popup-dialog :type="msgType" cancelText="关闭" confirmText="同意" title="通知" content="您确认要退出登录吗" @confirm="dialogConfirm"
@close="dialogClose"></uni-popup-dialog>
</uni-popup>
</view>
</template>
<script>
import {getStorageWithExpiry, setStorageWithExpiry} from "../../utils/auth";
import request from '../../utils/request';
import config from '@/config'
export default {
name: "UserInfo",
data(){
return{
customInfo: {},
defaultAvatar: require('@/static/icons/avatar.png'),
msgType: 'success',
}
},
mounted(){
this.getCustomInfo()
},
methods:{
changePassword(){
uni.navigateTo({
url:'/pages/Login/modify'
})
},
dialogConfirm() {
uni.clearStorageSync();
uni.reLaunch({
url:'/pages/Login/login'
})
},
dialogClose() {
},
logout(){
this.$refs.alertDialog.open()
},
getCustomInfo(){
let roleNames = getStorageWithExpiry("roleNames")
if (!roleNames){
request({
url: '/inspection/util/getRoleName',
method: 'get'
}).then(res => {
roleNames = res.data
setStorageWithExpiry("roleNames", roleNames)
})
}
const data = getStorageWithExpiry("userInfo")
if (!data) {
request({
url: '/system/user/profile/get',
method: 'get'
}).then(res => {
this.customInfo = res.data
if (this.customInfo.avatar) {
this.customInfo.avatar = config.baseImageUrl + this.customInfo.avatar
}
this.customInfo.roleNames = roleNames
setStorageWithExpiry("userInfo", this.customInfo)
})
} else {
this.customInfo = data
}
},
handleBack(){
uni.navigateBack()
}
}
}
</script>
<style scoped lang="scss">
.top-heder{
width: 100%;
height: 88px;
background: white;
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
padding: 5px 15px;
padding-top: 45px;
}
.t-left{
width: 10%;
}
.c-title{
font-weight: bold;
font-size: 18px;
}
.body {
border-top: 1px solid #ddd;
padding: 20rpx 32rpx;
}
.formItem {
box-sizing: border-box;
padding: 40rpx 0;
display: flex;
align-items: center;
justify-content: space-between;
column-gap: 20rpx;
}
.formIcon {
width: 44rpx;
height: 44rpx;
}
.formLabel {
font-size: 32rpx;
color: #333333;
}
.formValue {
flex: 1;
width: 0;
text-align: right;
font-size: 32rpx;
color: #999999;
}
.formBtn {
width: 24rpx;
height: 24rpx;
}
.avatar {
width: 108rpx;
height: 108rpx;
}
.btn {
width: 520rpx;
height: 80rpx;
border-radius: 40rpx 40rpx 40rpx 40rpx;
border: 1rpx solid #999999;
margin: 60rpx auto;
display: flex;
align-items: center;
justify-content: center;
font-size: 32rpx;
color: #999999;
}
.btns{
display: flex;
justify-content: space-between;
gap: 20px;
}
</style>

View File

@ -26,7 +26,7 @@
<!-- <view class="t-title">{{user.partnerName}} 欢迎您</view>-->
</view>
<view class="dix">
<view class="msg-box" @click="gotoMsg">
<view class="msg-box" @click="goWarn">
<image mode="aspectFita" class="white-image" src="@/static/imgs/msg.png"
style="width: 48rpx;height: 48rpx;"></image>
<view class="msg-num" v-if="noReadNum>0">{{ noReadNum }}</view>
@ -171,8 +171,14 @@ import request from '../../utils/request';
import tabBar from '../../components/tabBar/tabBar.vue'
import {getStorageWithExpiry, setStorageWithExpiry} from "../../utils/auth";
import config from '@/config'
import userInfo from "./UserInfo.vue";
export default {
computed: {
userInfo() {
return userInfo
}
},
data() {
return {
msg: '1',
@ -204,6 +210,7 @@ export default {
noReadNum: 1,
userInfo: {},
defaultAvatar: require('@/static/icons/avatar.png'),
}
},
onLoad() {
@ -217,11 +224,27 @@ export default {
// this.getwarnMsglist()
this.getbottom()
this.getUserInfo()
this.getWarnCount()
},
components: {
tabBar,
},
methods: {
getWarnCount(){
request({
url: '/warnMsg/warnMsg/getCount',
method: 'get',
}).then(res => {
if (res.data){
this.noReadNum = res.data
}
})
},
showUserDetail(){
uni.navigateTo({
url: '/pages/index/UserInfo'
})
},
avatarErr(err) {
console.log('err', err)
this.userInfo.avatar = this.defaultAvatar
@ -411,6 +434,11 @@ export default {
url: '/pages/xiaoxi/xiaoxi'
})
},
goWarn() {
uni.navigateTo({
url: '/pages/xiaoxi/xiaoxi?index=1'
})
},
gorwm() {
uni.navigateTo({
url: '/pages/my/rwm'

View File

@ -1,357 +1,409 @@
<template>
<view class="content">
<view class="c-top">
<view class="" @click="getback()">
<uni-icons type="left" size="18"></uni-icons>
</view>
<view class="c-title">{{obj.newsTitle}}</view>
<view class=""></view>
</view>
<!-- html -->
<view class="c-content">
<view class="cont-gongs">{{obj.publishUnit}}</view>
<view class="content">
<view class="c-top">
<view class="" @click="getback()">
<uni-icons type="left" size="18"></uni-icons>
</view>
<view class="c-title">{{ flag ? obj.newsTitle : obj.title }}</view>
<view class=""></view>
</view>
<!-- html -->
<view class="c-content" v-if="flag">
<view class="cont-gongs">{{ obj.publishUnit }}</view>
<u-parse :content="obj.newsContent" :tagStyle="style"></u-parse>
<view class="videobox" v-if="videoList != null ">
<video :src="baseUrl+ videoList" controls></video>
</view>
<view class="cont-time">{{createTime ? createTime.substring(0,createTime.length - 8) : ''}}</view>
</view>
<u-parse :content="obj.newsContent" :tagStyle="style"></u-parse>
<view class="videobox" v-if="videoList != null ">
<video :src="baseUrl+ videoList" controls></video>
</view>
<view class="cont-time">{{ getDate(createTime) || new Date() }}</view>
</view>
<view class="c-content" v-else>
<u-parse style="font-size: 18px;text-indent: 2rem" :content="obj.content" :tagStyle="style"></u-parse>
<view class="cont-time">{{ getDate(obj.createTime) || new Date() }}</view>
</view>
<uni-popup ref="alertDialog" type="dialog">
<uni-popup-dialog :type="msgType" cancelText="关闭" confirmText="同意" title="通知" content="您确认删除吗" @confirm="dialogConfirm()"
@close="dialogClose"></uni-popup-dialog>
</uni-popup>
</view>
<uni-popup ref="alertDialog" type="dialog">
<uni-popup-dialog :type="msgType" cancelText="关闭" confirmText="同意" title="通知" content="您确认删除吗"
@confirm="dialogConfirm()"
@close="dialogClose"></uni-popup-dialog>
</uni-popup>
</view>
</template>
<script>
import config from '@/config'
import request from '../../utils/request';
import config from '@/config'
import request from '../../utils/request';
import {formatDate} from "../../utils/utils";
export default{
data(){
return{
id:'',
obj:{},
style:{
image:'width: 100%;'
},
inputvalue:'',
createTime:'',
pinglun:false,
dianzan:false,
shoucang:false,
baseUrl:this.$baseUrl,
pinglunlist:[],
arrlist:[],
user:{},
videoList:null,
type: 'center',
msgType: 'success',
messageText: '这是一条成功提示',
export default {
data() {
return {
id: '',
obj: {},
style: {
image: 'width: 100%;'
},
inputvalue: '',
createTime: '',
pinglun: false,
dianzan: false,
shoucang: false,
baseUrl: config.baseImageUrl,
pinglunlist: [],
arrlist: [],
user: {},
videoList: null,
type: 'center',
msgType: 'success',
messageText: '这是一条成功提示',
flag: true
}
},
}
},
onLoad(option) {
this.id = option.id
if (option.index) {
this.flag = false
this.getWarnDetail()
} else {
this.getlistindex()
}
},
onLoad(option) {
this.id = option.id
this.getlistindex()
},
onShow() {
this.user = uni.getStorageSync('userinfo')
},
methods: {
getWarnDetail(){
request({
url: '/warnMsg/warnMsg/' + this.id,
method: 'get'
}).then(res => {
this.obj = res.data
})
},
getDate(value) {
return formatDate(value)
},
//dianzan
async getdianzan() {
onShow() {
this.user = uni.getStorageSync('userinfo')
},
methods:{
let data = {
newsId: this.id,
type: 'like',
}
let res = await request({
url: '/appInspection/news/likeOrCollect',
method: 'post',
params: data
//dianzan
async getdianzan(){
})
this.getlistindex()
let data = {
newsId:this.id,
type:'like',
}
let res = await request({
url:'/appInspection/news/likeOrCollect',
method: 'post',
params:data
},
})
this.getlistindex()
async getdelete(id) {
let data = {
commentId: id,
}
let res = await request({
url: '/appInspection/news/delNewsComment',
method: 'post',
params: data
})
this.getlistindex()
},
//
getpinglun() {
this.pinglun = !this.pinglun
},
getback() {
uni.navigateBack({
delta: 1,
})
},
async getnew() {
let data = {
newsId: this.id,
}
let res = await request({
url: '/appInspection/news/getDetail',
method: 'get',
params: data
})
},
async getlistindex() {
},
async getdelete(id){
let data ={
commentId :id,
}
let res = await request({
url:'/appInspection/news/delNewsComment',
method: 'post',
params:data
})
this.getlistindex()
},
//
getpinglun(){
this.pinglun =! this.pinglun
},
getback(){
uni.navigateBack({
delta:1,
})
},
async getnew(){
let data ={
newsId:this.id,
}
let res = await request({
url:'/appInspection/news/getDetail',
method: 'get',
params:data
})
},
async getlistindex(){
let res = await request({
url: '/appInspection/news/getDetail?newsId='+this.id,
method: 'get',
})
this.obj = res.data
this.videoList = res.data.videoUrl
if(res.data.isLike == '1'){
this.dianzan = true
}else{
this.dianzan = false
}
if(res.data.isCollect == '1'){
this.shoucang = true
}else{
this.shoucang = false
}
this.createTime = this.obj.createTime
let resx = await request({
url:'/appInspection/news/getCommentList?newsId='+this.id,
})
this.pinglunlist = resx.rows
let ress = await request({
url: '/appInspection/news/addReadNum?newsId='+this.id+'&objectId='+uni.getStorageSync('partnerId'),
method: 'post',
})
},
async getfasong(){
let data ={
newsId:this.id,
context:this.inputvalue,
}
let res = await request({
url: '/appInspection/news/addInspectionNewsComment',
method: 'post',
data:data
})
this.inputvalue =''
this.getlistindex()
},
dialogToggle(id) {
this.deleteid = id
this.$refs.alertDialog.open()
},
dialogClose() {
},
dialogConfirm() {
this.getdelete(this.deleteid)
},
let res = await request({
url: '/appInspection/news/getDetail?newsId=' + this.id,
method: 'get',
})
this.obj = res.data
this.videoList = res.data.videoUrl
if (res.data.isLike == '1') {
this.dianzan = true
} else {
this.dianzan = false
}
if (res.data.isCollect == '1') {
this.shoucang = true
} else {
this.shoucang = false
}
this.createTime = this.obj.createTime
let resx = await request({
url: '/appInspection/news/getCommentList?newsId=' + this.id,
})
this.pinglunlist = resx.rows
let ress = await request({
url: '/appInspection/news/addReadNum?newsId=' + this.id + '&objectId=' + uni.getStorageSync('partnerId'),
method: 'post',
})
},
async getfasong() {
let data = {
newsId: this.id,
context: this.inputvalue,
}
let res = await request({
url: '/appInspection/news/addInspectionNewsComment',
method: 'post',
data: data
})
this.inputvalue = ''
this.getlistindex()
},
dialogToggle(id) {
this.deleteid = id
this.$refs.alertDialog.open()
},
dialogClose() {
},
dialogConfirm() {
this.getdelete(this.deleteid)
},
}
}
}
}
</script>
<style scoped lang="scss">
.content{
width: 100%;
height: calc(100vh);
// background-color: #F6F6F6;
box-sizing: border-box;
// padding-top: 45px;
}
.cont-title{
width: 100%;
text-align: center;
font-size: 24px;
font-weight: bold;
color: #333333;
margin-bottom: 5px;
}
.cont-gongs{
text-align: right;
font-size: 14px;
font-weight: 400;
color: #666666;
margin-bottom: 25px;
}
.videobox{
width: 100%;
margin: 0 auto;
}
.cont-time{
font-size: 16px;
font-weight: 400;
color: #666666;
margin-bottom: 25px;
}
.top-icon{
margin-bottom: 45px;
}
.c-top{
width: 100%;
height: 88px;
box-sizing: border-box;
padding: 15px;
padding-top: 44px;
display: flex;
justify-content: space-between;
align-items: center;
background-color: white;
}
.c-title{
font-size: 18px;
font-weight: bold
}
.c-content{
width: 100%;
background-color: white;
box-sizing: border-box;
padding: 15px;
}
.pinglist{
width: 100%;
background-color: white;
margin-top: 15px;
box-sizing: border-box;
padding: 15px;
border-radius: 16px 16px 0px 0px;
}
.pinginput{
width: 100%;
height: 50px;
background-color: white;
display: flex;
position: fixed;
bottom: 0px;
z-index: 99;
box-sizing: border-box;
padding: 15px;
display: flex;
align-items: center;
justify-content: space-between;
}
.left-input{
width: 50%;
height: 35px;
border-radius: 50px;
background: #E7E7E7;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 20px;
font-size: 16px;
}
.t-right{
width: 60px;
border-left:1px solid #a6a6a6 ;
font-size: 16px;
color: #a6a6a6;
box-sizing: border-box;
padding-left: 5px;
}
.list-top{
.content {
width: 100%;
height: calc(100vh);
// background-color: #F6F6F6;
box-sizing: border-box;
// padding-top: 45px;
}
}
.gang{
width: 8%;
height: 4px;
background: #0D2E8D;
}
.view-box{
border-bottom: 1px solid #D8D8D8;
display: flex;
justify-content: space-between;
margin-top: 10px;
box-sizing: border-box;
padding-bottom: 9px;
}
.touxiang{
width: 40px;
height: 40px;
background: #D8D8D8;
border-radius: 50%;
overflow: hidden;
image{
width: 100%;
height: 100%;
}
}
.vb-right{
width: 85%;
}
.vb-nr{
.cont-title {
width: 100%;
text-align: center;
font-size: 24px;
font-weight: bold;
color: #333333;
margin-bottom: 5px;
}
}
.vb-bottom{
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 5px;
}
.vb-title{
font-size: 16px;
font-weight: 400;
color: #666666;
}
.right-xuan{
display: flex;
}
.sc-botm{
display: flex;
align-items: center;
margin-right: 5px;
}
.icon-sc{
width: 20px;
height: 20px;
margin-right: 5px;
image{
width: 100%;
height: 100%;
}
}
.s-botm{
display: flex;
align-items: center;
margin-right: 5px;
color: crimson;
}
.icon-s{
width: 18px;
height: 18px;
margin-right: 5px;
image{
width: 100%;
height: 100%;
}
}
.font-s{
font-size: 15px;
line-height: 16px;
}
.zuo-hui{
font-size: 15px;
font-weight: 400;
color: #B7B7B7;
}
.cont-gongs {
text-align: right;
font-size: 14px;
font-weight: 400;
color: #666666;
margin-bottom: 25px;
}
.videobox {
width: 100%;
margin: 0 auto;
}
.cont-time {
font-size: 16px;
font-weight: 400;
color: #666666;
margin-bottom: 25px;
float: right;
}
.top-icon {
margin-bottom: 45px;
}
.c-top {
width: 100%;
height: 88px;
box-sizing: border-box;
padding: 15px;
padding-top: 44px;
display: flex;
justify-content: space-between;
align-items: center;
background-color: white;
}
.c-title {
font-size: 18px;
font-weight: bold
}
.c-content {
width: 100%;
background-color: white;
box-sizing: border-box;
padding: 15px;
}
.pinglist {
width: 100%;
background-color: white;
margin-top: 15px;
box-sizing: border-box;
padding: 15px;
border-radius: 16px 16px 0px 0px;
}
.pinginput {
width: 100%;
height: 50px;
background-color: white;
display: flex;
position: fixed;
bottom: 0px;
z-index: 99;
box-sizing: border-box;
padding: 15px;
display: flex;
align-items: center;
justify-content: space-between;
}
.left-input {
width: 50%;
height: 35px;
border-radius: 50px;
background: #E7E7E7;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 20px;
font-size: 16px;
}
.t-right {
width: 60px;
border-left: 1px solid #a6a6a6;
font-size: 16px;
color: #a6a6a6;
box-sizing: border-box;
padding-left: 5px;
}
.list-top {
}
.gang {
width: 8%;
height: 4px;
background: #0D2E8D;
}
.view-box {
border-bottom: 1px solid #D8D8D8;
display: flex;
justify-content: space-between;
margin-top: 10px;
box-sizing: border-box;
padding-bottom: 9px;
}
.touxiang {
width: 40px;
height: 40px;
background: #D8D8D8;
border-radius: 50%;
overflow: hidden;
image {
width: 100%;
height: 100%;
}
}
.vb-right {
width: 85%;
}
.vb-nr {
}
.vb-bottom {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 5px;
}
.vb-title {
font-size: 16px;
font-weight: 400;
color: #666666;
}
.right-xuan {
display: flex;
}
.sc-botm {
display: flex;
align-items: center;
margin-right: 5px;
}
.icon-sc {
width: 20px;
height: 20px;
margin-right: 5px;
image {
width: 100%;
height: 100%;
}
}
.s-botm {
display: flex;
align-items: center;
margin-right: 5px;
color: crimson;
}
.icon-s {
width: 18px;
height: 18px;
margin-right: 5px;
image {
width: 100%;
height: 100%;
}
}
.font-s {
font-size: 15px;
line-height: 16px;
}
.zuo-hui {
font-size: 15px;
font-weight: 400;
color: #B7B7B7;
}
</style>

View File

@ -1,362 +1,518 @@
<!-- 默认复制 -->
<template>
<view class="content">
<view class="c-top">
<view class="">
<view class="content">
<view class="c-top">
<view class="">
</view>
<view class="c-title">官方通知</view>
<view class=""></view>
</view>
</view>
<view class="c-title">
<text>通知提醒</text>
<image @click="clearAll" v-if="tapindex === 1" src="@/static/imgs/clear.png" mode="" class="clear-icon"></image>
</view>
<view class=""></view>
</view>
<view class="cont">
<view class="cont">
<view class="tap">
<view class="tap-box" v-for="(item,index) in tab" :key="index" @click="tapqh(index)">
<view class="xhuihui" :class="{'xzhei':tapindex == index}">{{ item.text }}</view>
<view class="gang" v-if="tapindex == index"></view>
</view>
</view>
<view class="bjimg" v-if="arrlist && arrlist.length === 0">
<image src="http://www.nuoyunr.com/lananRsc/detection/qs.png" mode=""></image>
</view>
<view class="c-box" v-for="(item,index) in arrlist" :key="index" @click="getdetails(item.id)">
<view v-if="tapindex === 0">
<view class="c-b-top">
<view class="t-left">
<image :src="baseImageUrl+item.newsCover" mode="aspectFill"></image>
</view>
<view class="t-right">
<view class="t-tilte">{{ item.newsTitle }}</view>
<view class="tw-tilte">{{ item.publishUnit }}</view>
<view class="t-zi" v-html="item.newsContent"></view>
</view>
</view>
<view class="c-b-bom">
<view class="b-left"></view>
<view class="b-left">
{{ getDate(item.createTime || new Date()) }}
</view>
</view>
</view>
<view v-else>
<view class="c-b-top">
<view class="t-right">
<view class="t-tilte">{{ item.title }}</view>
<view class="t-zi" style="text-indent: 2rem" v-html="item.content"></view>
</view>
</view>
<view class="c-b-bom">
<view class="b-left"></view>
<view class="b-left">
{{ getDate(item.createTime || new Date()) }}
</view>
</view>
</view>
</view>
</view>
<view class="bjimg" v-if="arrlist == ''">
<image src="http://www.nuoyunr.com/lananRsc/detection/qs.png" mode=""></image>
</view>
<view class="c-box" v-for="(item,index) in arrlist" :key="index" @click="getdetails(item.id)">
<view class="hongdian" v-if="item.isRead == '0'"></view>
<view class="c-b-top">
<view class="t-left">
<image :src="baseImageUrl+item.newsCover" mode="aspectFill"></image>
</view>
<view class="t-right">
<view class="t-tilte">{{item.newsTitle}}</view>
<view class="tw-tilte">{{item.publishUnit}}</view>
<view class="t-zi" v-html="item.newsContent"></view>
</view>
</view>
<view class="c-b-bom">
<view class="b-left"></view>
<view class="b-left">
{{item.createTime ? item.createTime.substring(0,item.createTime.length - 3) : ''}}
</view>
</view>
</view>
</view>
<view style="width: 100%; height: 50px;"></view>
<tabBar ref="tarBar" :msg="msg"></tabBar>
</view>
<view style="width: 100%; height: 50px;"></view>
<tabBar ref="tarBar" :msg="msg"></tabBar>
</view>
</template>
<script>
import config from '@/config'
import request from '../../utils/request';
import tabBar from'../../components/tabBar/tabBar.vue'
export default{
data(){
return{
msg:'2',
chuan:'',
roles:[],
jcshopRole:false,
jcgfRole:false,
isOpen: false,
fab:false,
imgs:'',
type:'zflm',
animationData: {},
isRote: false,
animation: null,
actindex:0,
partnerId:'',
arrlist:[],
taplist:[],
pageNum: 1,//
pageSize: 20,//
totalPages: 0,//
baseImageUrl:this.$baseImageUrl
}
},
import config from '@/config'
import request from '../../utils/request';
import tabBar from '../../components/tabBar/tabBar.vue'
import {formatDate} from "../../utils/utils";
onReachBottom() {
if (this.pageSize > this.totalPages) {
uni.showToast({
title: '没有下一页数据',
icon: 'none'
})
export default {
data() {
return {
msg: '2',
chuan: '',
roles: [],
jcshopRole: false,
jcgfRole: false,
isOpen: false,
fab: false,
imgs: '',
type: 'zflm',
animationData: {},
isRote: false,
animation: null,
actindex: 0,
partnerId: '',
arrlist: [],
taplist: [],
pageNum: 1,//
pageSize: 20,//
totalPages: 0,//
baseImageUrl: this.$baseImageUrl,
tab: [
{
text: "通知",
value: "0"
},
} else {
this.pageNum++
this.getlistindex()
}
},
onLoad(){
this.partnerId = uni.getStorageSync('partnerId')
{
text: "提醒",
value: "1",
}
],
tapindex: 0,
}
},
this.interval = setInterval(() => {
this.getlistindex()
}, 3000);
},
onShow() {
this.getlistindex()
this.imgs = this.$baseUrl
onReachBottom() {
if (this.pageSize > this.totalPages) {
uni.showToast({
title: '没有下一页数据',
icon: 'none'
})
},
} else {
this.pageNum++
this.getlistindex()
}
},
onLoad(data) {
this.partnerId = uni.getStorageSync('partnerId')
if (data && data.index){
this.tapindex = parseInt(data.index)
this.getwarnMsglist()
}else {
this.getlistindex()
}
// this.interval = setInterval(() => {
// this.getlistindex()
// }, 3000);
},
onShow() {
if (this.tapindex === 1){
this.getwarnMsglist()
}else {
this.getlistindex()
}
// this.getlistindex()
// this.imgs = this.$baseUrl
},
components:{
tabBar,
},
methods:{
getdetails(id){
uni.navigateTo({
url:'/pages/xiaoxi/details?id='+id
})
},
getback(){
uni.navigateBack({
delta:1,
})
},
async getlistindex(){
let res = await request({
url: '/appInspection/news/msgList',
method: 'get',
data: {
partnerId:this.partnerId,
pageSize:this.pageSize,
pageNum:this.pageNum
}
})
// this.arrlist = res.rows
if (this.pageNum != 1){
this.arrlist = this.arrlist.concat(res.rows)
}else{
this.arrlist = res.rows
}
let total = res.total
this.totalPages = Math.ceil(total / this.pageSize);
components: {
tabBar,
},
methods: {
clearAll(){
let that = this
uni.showModal({
title: '确认',
content: '确认全部已读吗?',
success: function (res) {
if (res.confirm){
request({
url: '/warnMsg/warnMsg/readAll',
method: 'get'
}).then(res=>{
that.getwarnMsglist()
})
}
}
});
},
async getwarnMsglist() {
let res = await request({
url: '/warnMsg/warnMsg/list',
method: 'get',
})
this.arrlist = res.data
let total = res.total
this.totalPages = Math.ceil(total / this.pageSize);
},
getDate(value) {
return formatDate(value)
},
tapqh(index) {
this.tapindex = index
this.arrlist = []
if (index === 0) {
this.pageNum = 1
this.getlistindex()
} else {
this.pageNum = 1
this.getwarnMsglist()
}
},
getdetails(id) {
const url = this.tapindex === 0 ? '/pages/xiaoxi/details?id=' + id : '/pages/xiaoxi/details?id=' + id + "&index=1"
uni.navigateTo({
url: url
})
},
getback() {
uni.navigateBack({
delta: 1,
})
},
async getlistindex() {
let res = await request({
url: '/appInspection/news/msgList',
method: 'get',
data: {
partnerId: this.partnerId,
pageSize: this.pageSize,
pageNum: this.pageNum
}
})
// this.arrlist = res.rows
if (this.pageNum != 1) {
this.arrlist = this.arrlist.concat(res.data.records)
} else {
this.arrlist = res.data.records
}
let total = res.total
this.totalPages = Math.ceil(total / this.pageSize);
},
},
},
beforeDestroy() {
clearInterval(this.interval);
},
},
beforeDestroy() {
clearInterval(this.interval);
},
}
}
</script>
<style scoped lang="scss">
.content{
width: 100%;
height: calc(100vh);
background-color: #F6F6F6;
box-sizing: border-box;
// padding-top: 45px;
}
.top-icon{
margin-bottom: 45px;
}
.q-fab{
position: fixed;
bottom: 50px;
right: 15px;
width: 55px;
height: 55px;
border-radius: 50%;
overflow: hidden;
image{
width: 100%;
height: 100%;
}
}
.fab-z1{
position: fixed;
bottom: 115px;
right: 15px;
width: 50px;
height: 50px;
border-radius: 50%;
overflow: hidden;
image{
width: 100%;
height: 100%;
}
}
.fab-z2{
position: fixed;
bottom: 50px;
right: 80px;
width: 50px;
height: 50px;
border-radius: 50%;
overflow: hidden;
image{
width: 100%;
height: 100%;
}
}
.c-tap{
width: 100%;
height: 40px;
box-sizing: border-box;
padding: 15px;
display: flex;
background-color: white;
align-items: center;
}
.c-top{
width: 100%;
height: 88px;
box-sizing: border-box;
padding: 15px;
padding-top: 44px;
display: flex;
justify-content: space-between;
align-items: center;
background-color: white;
}
.c-title{
font-size: 18px;
font-weight: bold
}
.cont{
width: 100%;
padding: 15px;
padding-top: 0px ;
box-sizing: border-box;
background-color: #F6F6F6;
.content {
width: 100%;
height: calc(100vh);
background-color: #F6F6F6;
box-sizing: border-box;
// padding-top: 45px;
}
}
.hongdian{
width: 15px;
height: 15px;
background-color: crimson;
border-radius: 50%;
overflow: hidden;
position: absolute;
top: 5px;
right: 5px;
z-index: 9999;
}
.c-box{
width: 100%;
box-sizing: border-box;
padding: 7px;
background-color: white;
margin-top: 10px;
border-radius: 10px;
position: relative;
}
.c-b-top{
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
}
.t-left{
width: 40%;
height: 100px;
border-radius: 7px;
margin-right: 10px;
overflow: hidden;
image{
width: 100%;
height: 100%;
}
.top-icon {
margin-bottom: 45px;
}
}
.t-right{
width: 60%;
}
.t-tilte{
font-size: 20px;
font-weight: bold;
color: #333333;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
.q-fab {
position: fixed;
bottom: 50px;
right: 15px;
width: 55px;
height: 55px;
border-radius: 50%;
overflow: hidden;
}
.tw-tilte{
width: 100%;
text-align: right;
font-size: 16px;
font-weight: bold;
color: #5e5e5e;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
image {
width: 100%;
height: 100%;
}
}
}
.t-zi{
font-size: 14px;
font-weight: 400;
color: #666666;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
.fab-z1 {
position: fixed;
bottom: 115px;
right: 15px;
width: 50px;
height: 50px;
border-radius: 50%;
overflow: hidden;
}
.bjimg{
width: 255px;
height: 236px;
margin: 0px auto;
margin-top: 100px;
image{
width: 100%;
height: 100%;
}
}
.c-b-bom{
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 5px;
}
.b-left{
color: #0D2E8D;
font-size: 14px;
}
.b-right{
display: flex;
justify-content: space-between;
align-items: center;
}
.z-lv{
display: flex;
align-items: center;
color: #0D2E8D;
font-size: 15px;
margin-right: 10px;
}
.y-hong{
display: flex;
align-items: center;
color: #fa3534;
font-size: 15px;
margin-right: 15px;
}
.z-img{
width: 20px;
height: 15px;
image{
width: 100%;
height: 100%;
}
margin-right: 2px;
}
.tap-box{
width: 30%;
text-align: center;
}
.gang{
height: 4px;
background: #0D2E8D;
width: 80%;
margin: 0px auto;
}
.lan{
color: #0D2E8D;
}
image {
width: 100%;
height: 100%;
}
}
.fab-z2 {
position: fixed;
bottom: 50px;
right: 80px;
width: 50px;
height: 50px;
border-radius: 50%;
overflow: hidden;
image {
width: 100%;
height: 100%;
}
}
.c-tap {
width: 100%;
height: 40px;
box-sizing: border-box;
padding: 15px;
display: flex;
background-color: white;
align-items: center;
}
.c-top {
width: 100%;
height: 88px;
box-sizing: border-box;
padding: 15px;
padding-top: 44px;
display: flex;
justify-content: space-between;
align-items: center;
background-color: white;
}
.c-title {
font-size: 18px;
font-weight: bold;
display: flex;
align-items: center;
}
.cont {
width: 100%;
padding: 15px;
padding-top: 0px;
box-sizing: border-box;
background-color: #F6F6F6;
}
.hongdian {
width: 15px;
height: 15px;
background-color: crimson;
border-radius: 50%;
overflow: hidden;
position: absolute;
top: 5px;
right: 5px;
z-index: 9999;
}
.c-box {
width: 100%;
box-sizing: border-box;
padding: 7px;
background-color: white;
margin-top: 10px;
border-radius: 10px;
position: relative;
}
.c-b-top {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
}
.t-left {
width: 40%;
height: 100px;
border-radius: 7px;
margin-right: 10px;
overflow: hidden;
image {
width: 100%;
height: 100%;
}
}
.t-right {
width: 60%;
}
.t-tilte {
font-size: 20px;
font-weight: bold;
color: #333333;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.tw-tilte {
width: 100%;
text-align: right;
font-size: 16px;
font-weight: bold;
color: #5e5e5e;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.t-zi {
font-size: 14px;
font-weight: 400;
color: #666666;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
}
.bjimg {
width: 255px;
height: 236px;
margin: 0px auto;
margin-top: 100px;
image {
width: 100%;
height: 100%;
}
}
.c-b-bom {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 5px;
}
.b-left {
color: #0D2E8D;
font-size: 14px;
}
.b-right {
display: flex;
justify-content: space-between;
align-items: center;
}
.z-lv {
display: flex;
align-items: center;
color: #0D2E8D;
font-size: 15px;
margin-right: 10px;
}
.y-hong {
display: flex;
align-items: center;
color: #fa3534;
font-size: 15px;
margin-right: 15px;
}
.z-img {
width: 20px;
height: 15px;
image {
width: 100%;
height: 100%;
}
margin-right: 2px;
}
.tap-box {
width: 30%;
text-align: center;
}
.gang {
height: 4px;
background: #0D2E8D;
width: 80%;
margin: 0px auto;
}
.lan {
color: #0D2E8D;
}
.tap {
width: 100%;
height: 44px;
background: #FFFFFF;
display: flex;
align-items: center;
justify-content: space-between;
}
.tap-box {
width: 50%;
}
.xhuihui {
width: 100%;
text-align: center;
font-size: 16px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-weight: 400;
color: #666666;
}
.gang {
width: 24px;
height: 4px;
background: #0D2E8D;
border-radius: 4px;
margin: 2px auto;
}
.clear-icon{
width: 40rpx;
height: 40rpx;
border-radius: 50%;
}
</style>

BIN
static/icons/userInfo_1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

BIN
static/icons/userInfo_2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
static/icons/userInfo_3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 675 B

BIN
static/imgs/clear.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -21,3 +21,14 @@ export function getDictDataByType(type) {
return data
}
}
export function formatDate(timestamp) {
// 将时间戳转换为Date对象
const date = new Date(timestamp);
// 获取年月日时分秒
const year = date.getFullYear();
const month = (date.getMonth() + 1).toString().padStart(2, '0');
const day = date.getDate().toString().padStart(2, '0');
// 组合成日期时间字符串
return `${year}-${month}-${day}`;
}