From 66d266e57f1b71ffe0e836d925746b3e6f9b29d6 Mon Sep 17 00:00:00 2001 From: ZhaoTongYao <531131322@qq.com> Date: Sun, 28 Jun 2020 17:04:50 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BC=80=E6=94=BE=E9=94=A6=E6=B0=B4=E6=A1=A3?= =?UTF-8?q?=E6=A1=88=E6=A8=A1=E5=9D=97=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app.json | 3 +- project.config.json | 2 +- .../understandJs/pages/archives/archives.js | 138 +++++++------ .../understandJs/pages/archives/archives.wxml | 58 +++--- subpages/understandJs/pages/index/index.js | 194 +++++++++--------- 5 files changed, 202 insertions(+), 193 deletions(-) diff --git a/app.json b/app.json index 13eb7a9..a93418f 100644 --- a/app.json +++ b/app.json @@ -67,7 +67,8 @@ "pages/gOfficialsList/gOfficialsList", "pages/talklist/talklist", "pages/eventlist/eventlist", - "pages/addTopic/addTopic" + "pages/addTopic/addTopic", + "pages/guideInfo/guideInfo" ] }, { diff --git a/project.config.json b/project.config.json index de6daae..663d584 100644 --- a/project.config.json +++ b/project.config.json @@ -22,7 +22,7 @@ "disablePlugins": [], "outputPath": "" }, - "useCompilerModule": false, + "useCompilerModule": true, "userConfirmedUseCompilerModuleSwitch": false, "useIsolateContext": true }, diff --git a/subpages/understandJs/pages/archives/archives.js b/subpages/understandJs/pages/archives/archives.js index dc52274..8da410a 100644 --- a/subpages/understandJs/pages/archives/archives.js +++ b/subpages/understandJs/pages/archives/archives.js @@ -1,66 +1,74 @@ -// subpages/understandJs/pages/archives/archives.js -Page({ - - /** - * 页面的初始数据 - */ - data: { - - }, - - /** - * 生命周期函数--监听页面加载 - */ - onLoad: function (options) { - - }, - - /** - * 生命周期函数--监听页面初次渲染完成 - */ - onReady: function () { - - }, - - /** - * 生命周期函数--监听页面显示 - */ - onShow: function () { - - }, - - /** - * 生命周期函数--监听页面隐藏 - */ - onHide: function () { - - }, - - /** - * 生命周期函数--监听页面卸载 - */ - onUnload: function () { - - }, - - /** - * 页面相关事件处理函数--监听用户下拉动作 - */ - onPullDownRefresh: function () { - - }, - - /** - * 页面上拉触底事件的处理函数 - */ - onReachBottom: function () { - - }, - - /** - * 用户点击右上角分享 - */ - onShareAppMessage: function () { - - } +// subpages/understandJs/pages/archives/archives.js +Page({ + + /** + * 页面的初始数据 + */ + data: { + + }, + + /** + * 生命周期函数--监听页面加载 + */ + onLoad: function (options) { + + }, + + /** + * 生命周期函数--监听页面初次渲染完成 + */ + onReady: function () { + + }, + + /** + * 生命周期函数--监听页面显示 + */ + onShow: function () { + + }, + + /** + * 生命周期函数--监听页面隐藏 + */ + onHide: function () { + + }, + + /** + * 生命周期函数--监听页面卸载 + */ + onUnload: function () { + + }, + + /** + * 页面相关事件处理函数--监听用户下拉动作 + */ + onPullDownRefresh: function () { + + }, + + /** + * 页面上拉触底事件的处理函数 + */ + onReachBottom: function () { + + }, + + /** + * 用户点击右上角分享 + */ + onShareAppMessage: function () { + + }, + + searchFile () { + wx.showToast({ + title: '未查询到相关档案', + icon: 'none', + duration: 2000 + }) + } }) \ No newline at end of file diff --git a/subpages/understandJs/pages/archives/archives.wxml b/subpages/understandJs/pages/archives/archives.wxml index 7cc817e..7a7bb79 100644 --- a/subpages/understandJs/pages/archives/archives.wxml +++ b/subpages/understandJs/pages/archives/archives.wxml @@ -1,29 +1,29 @@ - - - - - - - - - - - - - - - - - 玫瑰街道医疗物质采购档案 - - - 存放位置:玫瑰街道档案室 - - - - 玫瑰街道医疗物质采购档案 - - - 存放位置:玫瑰街道档案室 - - \ No newline at end of file + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/subpages/understandJs/pages/index/index.js b/subpages/understandJs/pages/index/index.js index 220df51..0e32a61 100644 --- a/subpages/understandJs/pages/index/index.js +++ b/subpages/understandJs/pages/index/index.js @@ -1,98 +1,98 @@ -const api = require('../../../../utils/understandJs') -Page({ - - /** - * 页面的初始数据 - */ - data: { - modulelist: [] - }, - - /** - * 生命周期函数--监听页面加载 - */ - onLoad: function (options) { - this.modulelist() - }, - modulelist() { - let that = this; - api.modulelist().then(function (res) { //了解锦水-模块管理接口 - that.setData({ - modulelist: res.data, - }) - }) - }, - /** - * 生命周期函数--监听页面初次渲染完成 - */ - onReady: function () { - - }, - - /** - * 生命周期函数--监听页面显示 - */ - onShow: function () { - - }, - - /** - * 生命周期函数--监听页面隐藏 - */ - onHide: function () { - - }, - - /** - * 生命周期函数--监听页面卸载 - */ - onUnload: function () { - - }, - - /** - * 页面相关事件处理函数--监听用户下拉动作 - */ - onPullDownRefresh: function () { - - }, - - /** - * 页面上拉触底事件的处理函数 - */ - onReachBottom: function () { - - }, - - /** - * 用户点击右上角分享 - */ - onShareAppMessage: function () { - - }, - goDetails(e) {//模块编码(0-政策导航,1-印象,2-味道,3-硬核,4-档案) - console.log(JSON.stringify(e.currentTarget.dataset) + e.currentTarget.dataset.modulecode) - if (e.currentTarget.dataset.modulecode == 'notice_warning') { //警事 - wx.navigateTo({ - url: `../impression/impression?modulecode=${e.currentTarget.dataset.modulecode}` - }) - } else if (e.currentTarget.dataset.modulecode == 'notice_impression' || e.currentTarget.dataset.modulecode == 'notice_taste') {//印象//味道 - wx.navigateTo({ - url: `../noticeDetail/noticeDetail?modulecode=${e.currentTarget.dataset.modulecode}` - }) - } else if (e.currentTarget.dataset.modulecode == 'module_hardcore') {//硬核 - wx.navigateTo({ - url: `../sclerotia/sclerotia?modulecode=${e.currentTarget.dataset.modulecode}` - }) - } else if (e.currentTarget.dataset.modulecode == 'module_file') {//档案 - wx.showToast({ - title: '敬请期待', - icon: 'none', - duration: 1000 - }) - // wx.navigateTo({ - // url: '../archives/archives' - // }) - } - } +const api = require('../../../../utils/understandJs') +Page({ + + /** + * 页面的初始数据 + */ + data: { + modulelist: [] + }, + + /** + * 生命周期函数--监听页面加载 + */ + onLoad: function (options) { + this.modulelist() + }, + modulelist() { + let that = this; + api.modulelist().then(function (res) { //了解锦水-模块管理接口 + that.setData({ + modulelist: res.data, + }) + }) + }, + /** + * 生命周期函数--监听页面初次渲染完成 + */ + onReady: function () { + + }, + + /** + * 生命周期函数--监听页面显示 + */ + onShow: function () { + + }, + + /** + * 生命周期函数--监听页面隐藏 + */ + onHide: function () { + + }, + + /** + * 生命周期函数--监听页面卸载 + */ + onUnload: function () { + + }, + + /** + * 页面相关事件处理函数--监听用户下拉动作 + */ + onPullDownRefresh: function () { + + }, + + /** + * 页面上拉触底事件的处理函数 + */ + onReachBottom: function () { + + }, + + /** + * 用户点击右上角分享 + */ + onShareAppMessage: function () { + + }, + goDetails(e) {//模块编码(0-政策导航,1-印象,2-味道,3-硬核,4-档案) + console.log(JSON.stringify(e.currentTarget.dataset) + e.currentTarget.dataset.modulecode) + if (e.currentTarget.dataset.modulecode == 'notice_warning') { //警事 + wx.navigateTo({ + url: `../impression/impression?modulecode=${e.currentTarget.dataset.modulecode}` + }) + } else if (e.currentTarget.dataset.modulecode == 'notice_impression' || e.currentTarget.dataset.modulecode == 'notice_taste') {//印象//味道 + wx.navigateTo({ + url: `../noticeDetail/noticeDetail?modulecode=${e.currentTarget.dataset.modulecode}` + }) + } else if (e.currentTarget.dataset.modulecode == 'module_hardcore') {//硬核 + wx.navigateTo({ + url: `../sclerotia/sclerotia?modulecode=${e.currentTarget.dataset.modulecode}` + }) + } else if (e.currentTarget.dataset.modulecode == 'module_file') {//档案 + // wx.showToast({ + // title: '敬请期待', + // icon: 'none', + // duration: 1000 + // }) + wx.navigateTo({ + url: '../archives/archives' + }) + } + } }) \ No newline at end of file