|
|
@@ -2,6 +2,7 @@ import {
|
|
|
ApiModel
|
|
|
} from "../../utils/api";
|
|
|
const _Http = new ApiModel();
|
|
|
+const processingData = require('../../utils/processingData');
|
|
|
Page({
|
|
|
|
|
|
/**
|
|
|
@@ -19,25 +20,35 @@ Page({
|
|
|
*/
|
|
|
onLoad: function (options) {
|
|
|
if (options.id) {
|
|
|
- _Http.basic({
|
|
|
- "accesstoken": wx.getStorageSync('userData').token,
|
|
|
- "classname": "customer.noticemag.noticemag",
|
|
|
- "method": "havereaduserlist",
|
|
|
- "content": {
|
|
|
- "tnoticeid": options.id
|
|
|
- }
|
|
|
- }).then(res => {
|
|
|
-
|
|
|
- if (res.msg != '成功') return wx.showToast({
|
|
|
- title: res.data,
|
|
|
- icon: "none"
|
|
|
- });
|
|
|
- this.setData({
|
|
|
- history: res.data
|
|
|
- })
|
|
|
+ this.setData({
|
|
|
+ tnoticeid: options.id
|
|
|
})
|
|
|
+ this.getList()
|
|
|
}
|
|
|
},
|
|
|
+ getList() {
|
|
|
+ _Http.basic({
|
|
|
+ "accesstoken": wx.getStorageSync('userData').token,
|
|
|
+ "classname": "customer.noticemag.noticemag",
|
|
|
+ "method": "havereaduserlist",
|
|
|
+ "content": {
|
|
|
+ "tnoticeid": this.data.tnoticeid
|
|
|
+ }
|
|
|
+ }).then(res => {
|
|
|
+ if (res.msg != '成功') return wx.showToast({
|
|
|
+ title: res.data,
|
|
|
+ icon: "none"
|
|
|
+ });
|
|
|
+ let data = res.data;
|
|
|
+ for (let i = 0; i < data.length; i++) {
|
|
|
+ let ffirstreadtime = data[i].ffirstreadtime;
|
|
|
+ if (ffirstreadtime != null && ffirstreadtime != undefined) data[i].ffirstreadtime = ffirstreadtime.slice(0, ffirstreadtime.lastIndexOf('.'));
|
|
|
+ }
|
|
|
+ this.setData({
|
|
|
+ history: data
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
viewRow(e) {
|
|
|
const {
|
|
|
index
|
|
|
@@ -46,6 +57,29 @@ Page({
|
|
|
viewRowIndex: index
|
|
|
})
|
|
|
},
|
|
|
+ /* 下一页 */
|
|
|
+ buttonRightClick() {
|
|
|
+ if (this.data.pageNumber == this.data.pageTotal) return wx.showToast({
|
|
|
+ title: '已经到达最后一页',
|
|
|
+ icon: "none"
|
|
|
+ });
|
|
|
+ this.setData({
|
|
|
+ pageNumber: this.data.pageNumber + 1
|
|
|
+ })
|
|
|
+ this.getList()
|
|
|
+
|
|
|
+ },
|
|
|
+ /* 上一页 */
|
|
|
+ buttonLifeClick() {
|
|
|
+ if (this.data.pageNumber == 1) return wx.showToast({
|
|
|
+ title: '已经在第一页了哦',
|
|
|
+ icon: "none"
|
|
|
+ });
|
|
|
+ this.setData({
|
|
|
+ pageNumber: this.data.pageNumber - 1
|
|
|
+ })
|
|
|
+ this.getList()
|
|
|
+ },
|
|
|
/**
|
|
|
* 生命周期函数--监听页面初次渲染完成
|
|
|
*/
|