message.vue
7.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
<template>
<view class="page">
<view style="position: absolute; top: 0; width: 100%;">
<image :src="$imgUrl('/bg.png')" style="width: 100%; height: 490rpx;border-radius: 0 0 40rpx 40rpx;"></image></view>
<view class="my-top">
<view class="head" :style="'background-color: rgba(38,197,112,'+(scrollTop/50)+');'">
<view class="logo-title">
<image :src="$imgUrl('/logo.png')" ></image>
</view>
<view class="title">
</view>
<view class="setting-mess"></view>
</view>
</view>
<view class="main">
<view class="message-list">
<view class="list" @click="toMsgList">
<view class="icon-data">
<view class="icon">
<image :src="$imgUrl('/msg1.png')" mode=""></image>
</view>
<view class="data">
<view class="title">
<text>通知消息</text>
</view>
<view class="describe">
<text>{{tableList[0].content}}</text>
</view>
</view>
</view>
<view class="more">
<!-- <view class="more-num">{{tableList.length}}</view> -->
<view class="icon-more">{{formatTime(tableList[0].createdAt)}}</view>
</view>
</view>
<!-- <view class="list">
<view class="icon-data">
<view class="icon">
<image :src="$imgUrl('/msg2.png')" mode=""></image>
</view>
<view class="data">
<view class="title">
<text>新订单提醒</text>
</view>
<view class="describe">
<text>这里有最新消息这里有最新消息这里有最新消息这里有最新消息</text>
</view>
</view>
</view>
<view class="more">
<view class="more-num">2</view>
<view class="icon-more">11:28</view>
</view>
</view>
<view class="list">
<view class="icon-data">
<view class="icon">
<image :src="$imgUrl('/msg3.png')" mode=""></image>
</view>
<view class="data">
<view class="title">
<text>发货提醒</text>
</view>
<view class="describe">
<text>这里有最新消息这里有最新消息这里有最新消息这里有最新消息</text>
</view>
</view>
</view>
<view class="more">
<view class="more-num">2</view>
<view class="icon-more">11:28</view>
</view>
</view>
<view class="list">
<view class="icon-data">
<view class="icon">
<image :src="$imgUrl('/msg4.png')" mode=""></image>
</view>
<view class="data">
<view class="title">
<text>退款/售后提醒</text>
</view>
<view class="describe">
<text>这里有最新消息这里有最新消息这里有最新消息这里有最新消息</text>
</view>
</view>
</view>
<view class="more">
<view class="more-num">2</view>
<view class="icon-more">11:28</view>
</view>
</view>
<view class="list">
<view class="icon-data">
<view class="icon">
<image :src="$imgUrl('/msg5.png')" mode=""></image>
</view>
<view class="data">
<view class="title">
<text>库存提醒</text>
</view>
<view class="describe">
<text>这里有最新消息这里有最新消息这里有最新消息这里有最新消息</text>
</view>
</view>
</view>
<view class="more">
<view class="more-num">2</view>
<view class="icon-more">11:28</view>
</view>
</view>
<view class="list">
<view class="icon-data">
<view class="icon">
<image :src="$imgUrl('/msg6.png')" mode=""></image>
</view>
<view class="data">
<view class="title">
<text>活动通知</text>
</view>
<view class="describe">
<text>这里有最新消息这里有最新消息这里有最新消息这里有最新消息</text>
</view>
</view>
</view>
<view class="more">
<view class="more-num">2</view>
<view class="icon-more">11:28</view>
</view>
</view>
<view class="list">
<view class="icon-data">
<view class="icon">
<image :src="$imgUrl('/msg7.png')" mode=""></image>
</view>
<view class="data">
<view class="title">
<text>临时铺位申请</text>
</view>
<view class="describe">
<text>这里有最新消息这里有最新消息这里有最新消息这里有最新消息</text>
</view>
</view>
</view>
<view class="more">
<view class="more-num">2</view>
<view class="icon-more">11:28</view>
</view>
</view> -->
<!-- <view class="list">
<view class="icon-data">
<view class="icon">
<image :src="$imgUrl('/msg7.png')" mode=""></image>
</view>
<view class="data">
<view class="title">
<text>缴费通知</text>
</view>
<view class="describe">
<text>这里有最新消息这里有最新消息这里有最新消息这里有最新消息</text>
</view>
</view>
</view>
<view class="more">
<view class="more-num">2</view>
<view class="icon-more">11:28</view>
</view>
</view> -->
</view>
<!-- <view class="message-list">
<view class="bidding-title"><view class="bidding-title-line"></view>消息<text>(5)</text></view>
<view class="message-list" style="padding: 0;">
<view class="list" v-for="(item,index) in 4" :key="index" @click="toDialogue">
<view class="icon-data">
<view class="icon">
</view>
<view class="data">
<view class="title">
<text>李雷有四</text>
</view>
<view class="describe">
<text>这里有最新消息这里有最新消息这里有最新消息这里有最新消息</text>
</view>
</view>
</view>
<view class="more">
<view class="more-num">2</view>
<view class="icon-more">11:28</view>
</view>
</view>
</view>
</view> -->
</view>
<!-- tabbar -->
<tabbar :tabBarShow="2"></tabbar>
</view>
</template>
<script>
import tabbar from '../../components/tabbar/tabbar.vue';
export default {
components: {
tabbar,
},
data() {
return {
scrollTop: 0,
tableList:[],
pagesize :{
pageNumber: 1,
pageSize: 2
}
}
},
onLoad() {
},
onShow() {
let shopId = {
shopId:uni.getStorageSync('shopId') || ''
}
const isLogin = uni.getStorageSync('token');
if (isLogin =='') {
// 如果未登录,跳转到登录页面
uni.navigateTo({
url: '/pages/login/login'
})
}else{
let page={
condition:2
}
this.$http.sendRequest('/shop/getById', 'POST',shopId).then(res => {
if(res.data.code !="20004"){
this.shopMsg = res.data.data
this.Islogin= false
this.$http.sendRequest('/index/index', 'POST',page).then(res => {
//成功回调
this.tongji = res.data.data
})
}else{
uni.navigateTo({
url: '/pages/login/login'
})
}
})
}
},
onReady() {
uni.hideTabBar();
},
onPageScroll(e) {
this.scrollTop = e.scrollTop;
},
mounted() {
this.getALL()
},
methods:{
getALL(){
this.$http.sendRequest('/cereMessageNotification/queryByPage','POST',this.pagesize,1).then(res => {
this.tableList =res.data.data.content
})
},
toDialogue(){
uni.navigateTo({
url:'/pages/dialogue/dialogue'
})
},
toMsgList(){
uni.navigateTo({
url:'/pages/procedureDetail/procedureDetail'
})
},
formatTime(dateTimeString) {
let date = new Date(dateTimeString);
let hours = date.getHours();
let minutes = date.getMinutes();
let seconds = date.getSeconds();
hours = hours < 10 ? '0' + hours : hours;
minutes = minutes < 10 ? '0' + minutes : minutes;
seconds = seconds < 10 ? '0' + seconds : seconds;
return hours + ':' + minutes + ':' + seconds;
},
}
}
</script>
<style scoped lang="scss">
@import 'message.scss';
</style>