diff --git a/pages/home/my.vue b/pages/home/my.vue
index 364bcbd..4ca009e 100644
--- a/pages/home/my.vue
+++ b/pages/home/my.vue
@@ -100,6 +100,10 @@ import {host} from '@/common/request'
// uni.setTabBarBadge({ index:2, text:'' })//底部标签显示数字
uni.hideTabBarRedDot({index:2})
},
+ onHide(){
+ console.log('------my-----onHide---------------')
+
+ },
methods:{
}
diff --git a/pages/home/news.vue b/pages/home/news.vue
index 6125399..96858a2 100644
--- a/pages/home/news.vue
+++ b/pages/home/news.vue
@@ -49,15 +49,17 @@
border-radius: 50%;
position:relative;
margin-right:16rpx;
- &:after{
- content:"";
- position:absolute;
- background:red;
- width:12rpx;
- height:12rpx;
- border-radius: 50%;
- top:9rpx;
- right:9rpx;
+ &.noRead{
+ &:after{
+ content:"";
+ position:absolute;
+ background:red;
+ width:12rpx;
+ height:12rpx;
+ border-radius: 50%;
+ top:9rpx;
+ right:9rpx;
+ }
}
}
&>view{
@@ -129,7 +131,6 @@
align-items: center;
margin-top:10rpx;
.fruit,.food{
- margin-right:16rpx;
border-radius: 8rpx;
flex-shrink: 0;
height:44rpx;
@@ -173,6 +174,7 @@
.cause,.date{
color:#999;
font-size:24rpx;
+ margin-left:16rpx;
}
}
}
@@ -181,47 +183,112 @@
-
-
-
- 害虫
- 害虫
-
+
+
+
+ 病害
+ 虫害
+
+
+ 水果
+ 蔬菜
-
-
+
+
-
+
- 阳光玫瑰
- 病害
+ {{v.cropName}}
+ {{v.messageType}}
- 发芽
- 根、茎
- 变色
+ {{v.growthProcess_dictText}}
+ {{v.pestSite_dictText}}
+ {{v.symptom_dictText}}
-
-
- 由于叶子部位病变需要使用水溶肥部位病变需要使用水溶肥
- 2023/2/27
+
+
+ {{v.content}}
+ {{new Date(v.sendTime).format('yyyy/MM/dd')}}
\ No newline at end of file
diff --git a/pages/home/newsDetail.vue b/pages/home/newsDetail.vue
index adaea01..3565cb6 100644
--- a/pages/home/newsDetail.vue
+++ b/pages/home/newsDetail.vue
@@ -27,6 +27,7 @@
border-radius: 24rpx;
color:#999;
background: #F7F7F7;
+ width:calc(100% - 60rpx);
}
}
}
@@ -45,28 +46,28 @@
- 基本信息 推送时间:2023-02-28 10:23:56
+ 基本信息 推送时间:{{detail.sendTime}}
- 品种名称 阳光玫瑰
+ 品种名称 {{detail.cropName}}
- 作物类型 葡萄
+ 作物类型 {{detail.cropType}}
- 生长过程 发芽
+ 生长过程 {{detail.growthProcess}}
- 病虫害部位 根、茎
+ 病虫害部位 {{detail.pestSite}}
- 显著症状 变色
+ 显著症状 {{detail.symptom}}
- 推荐农资 水溶肥、复合肥、氮肥
+ 推荐农资 {{detail.agrMaterialsName}}
- 推荐理由 由于叶子部位病变需要使用水溶肥内容这里是产品介绍内容这里是产品介绍内容这里是产品介绍内容这里是产品介绍内容这里是产品介绍内容
+ 推荐理由 {{detail.content}}
@@ -74,12 +75,13 @@
export default {
data(){
return{
-
+ detail:{},
eventChannel:null,
}
},
onLoad(options){
this.eventChannel=this.getOpenerEventChannel()
+ this.eventChannel.on("detail",e=>this.detail=e)
uni.setNavigationBarTitle({
title:({farming:"农事记录",news:"消息详情"})[options.intoPage]
})
diff --git a/store/index.js b/store/index.js
index 7de52c5..027fc32 100644
--- a/store/index.js
+++ b/store/index.js
@@ -1,12 +1,14 @@
import Vue from 'vue'
import Vuex from 'vuex'
+import request from '@/common/request'
Vue.use(Vuex)
+var timer=null
export default new Vuex.Store({
state:{
userInfo:{},
token:"",
- baseInfo:{
+ baseInfo:{//地块信息
id:"",
name:"",
},
@@ -22,6 +24,7 @@ export default new Vuex.Store({
companyName:val.departs[0].departName
}
state.token=val.token
+ this.dispatch('getSysMsg')
},
outLogin(state){
state.userInfo={}
@@ -38,6 +41,8 @@ export default new Vuex.Store({
},
},
actions:{
-
+ async getSysMsg(a,b,c){
+ console.log(a,b,c,'-------ddd---')
+ },
}
-})
\ No newline at end of file
+})