Browse Source

开放锦水档案模块;

master
ZhaoTongYao 5 years ago
parent
commit
66d266e57f
  1. 3
      app.json
  2. 2
      project.config.json
  3. 138
      subpages/understandJs/pages/archives/archives.js
  4. 58
      subpages/understandJs/pages/archives/archives.wxml
  5. 194
      subpages/understandJs/pages/index/index.js

3
app.json

@ -67,7 +67,8 @@
"pages/gOfficialsList/gOfficialsList", "pages/gOfficialsList/gOfficialsList",
"pages/talklist/talklist", "pages/talklist/talklist",
"pages/eventlist/eventlist", "pages/eventlist/eventlist",
"pages/addTopic/addTopic" "pages/addTopic/addTopic",
"pages/guideInfo/guideInfo"
] ]
}, },
{ {

2
project.config.json

@ -22,7 +22,7 @@
"disablePlugins": [], "disablePlugins": [],
"outputPath": "" "outputPath": ""
}, },
"useCompilerModule": false, "useCompilerModule": true,
"userConfirmedUseCompilerModuleSwitch": false, "userConfirmedUseCompilerModuleSwitch": false,
"useIsolateContext": true "useIsolateContext": true
}, },

138
subpages/understandJs/pages/archives/archives.js

@ -1,66 +1,74 @@
// subpages/understandJs/pages/archives/archives.js // subpages/understandJs/pages/archives/archives.js
Page({ Page({
/** /**
* 页面的初始数据 * 页面的初始数据
*/ */
data: { data: {
}, },
/** /**
* 生命周期函数--监听页面加载 * 生命周期函数--监听页面加载
*/ */
onLoad: function (options) { onLoad: function (options) {
}, },
/** /**
* 生命周期函数--监听页面初次渲染完成 * 生命周期函数--监听页面初次渲染完成
*/ */
onReady: function () { onReady: function () {
}, },
/** /**
* 生命周期函数--监听页面显示 * 生命周期函数--监听页面显示
*/ */
onShow: function () { onShow: function () {
}, },
/** /**
* 生命周期函数--监听页面隐藏 * 生命周期函数--监听页面隐藏
*/ */
onHide: function () { onHide: function () {
}, },
/** /**
* 生命周期函数--监听页面卸载 * 生命周期函数--监听页面卸载
*/ */
onUnload: function () { onUnload: function () {
}, },
/** /**
* 页面相关事件处理函数--监听用户下拉动作 * 页面相关事件处理函数--监听用户下拉动作
*/ */
onPullDownRefresh: function () { onPullDownRefresh: function () {
}, },
/** /**
* 页面上拉触底事件的处理函数 * 页面上拉触底事件的处理函数
*/ */
onReachBottom: function () { onReachBottom: function () {
}, },
/** /**
* 用户点击右上角分享 * 用户点击右上角分享
*/ */
onShareAppMessage: function () { onShareAppMessage: function () {
} },
searchFile () {
wx.showToast({
title: '未查询到相关档案',
icon: 'none',
duration: 2000
})
}
}) })

58
subpages/understandJs/pages/archives/archives.wxml

@ -1,29 +1,29 @@
<view class="mian"> <view class="mian">
<view class="search"> <view class="search">
<view class="item-all"> <view class="item-all">
<view class="item-left"> <view class="item-left">
<image src="../../images/search.png"></image> <image src="../../images/search.png"></image>
<input placeholder-class="placeholder-style" placeholder="输入档案关键字"></input> <input placeholder-class="placeholder-style" placeholder="输入档案关键字"></input>
</view> </view>
<button class="item-right">搜索</button> <button class="item-right" bindtap="searchFile">搜索</button>
</view> </view>
</view> </view>
</view> </view>
<view class="list-item"> <!-- <view class="list-item">
<view class="list-name">玫瑰街道医疗物质采购档案</view> <view class="list-name">玫瑰街道医疗物质采购档案</view>
<view class="list-position"> <view class="list-position">
<image src="../../images/wenjian.png"></image> <image src="../../images/wenjian.png"></image>
<view class="list-position-name">存放位置:玫瑰街道档案室</view> <view class="list-position-name">存放位置:玫瑰街道档案室</view>
</view> </view>
</view> </view>
<view class="list-item"> <view class="list-item">
<view class="list-name">玫瑰街道医疗物质采购档案</view> <view class="list-name">玫瑰街道医疗物质采购档案</view>
<view class="list-position"> <view class="list-position">
<image src="../../images/wenjian.png"></image> <image src="../../images/wenjian.png"></image>
<view class="list-position-name">存放位置:玫瑰街道档案室</view> <view class="list-position-name">存放位置:玫瑰街道档案室</view>
</view> </view>
</view> </view> -->

194
subpages/understandJs/pages/index/index.js

@ -1,98 +1,98 @@
const api = require('../../../../utils/understandJs') const api = require('../../../../utils/understandJs')
Page({ Page({
/** /**
* 页面的初始数据 * 页面的初始数据
*/ */
data: { data: {
modulelist: [] modulelist: []
}, },
/** /**
* 生命周期函数--监听页面加载 * 生命周期函数--监听页面加载
*/ */
onLoad: function (options) { onLoad: function (options) {
this.modulelist() this.modulelist()
}, },
modulelist() { modulelist() {
let that = this; let that = this;
api.modulelist().then(function (res) { //了解锦水-模块管理接口 api.modulelist().then(function (res) { //了解锦水-模块管理接口
that.setData({ that.setData({
modulelist: res.data, modulelist: res.data,
}) })
}) })
}, },
/** /**
* 生命周期函数--监听页面初次渲染完成 * 生命周期函数--监听页面初次渲染完成
*/ */
onReady: function () { onReady: function () {
}, },
/** /**
* 生命周期函数--监听页面显示 * 生命周期函数--监听页面显示
*/ */
onShow: function () { onShow: function () {
}, },
/** /**
* 生命周期函数--监听页面隐藏 * 生命周期函数--监听页面隐藏
*/ */
onHide: function () { onHide: function () {
}, },
/** /**
* 生命周期函数--监听页面卸载 * 生命周期函数--监听页面卸载
*/ */
onUnload: function () { onUnload: function () {
}, },
/** /**
* 页面相关事件处理函数--监听用户下拉动作 * 页面相关事件处理函数--监听用户下拉动作
*/ */
onPullDownRefresh: function () { onPullDownRefresh: function () {
}, },
/** /**
* 页面上拉触底事件的处理函数 * 页面上拉触底事件的处理函数
*/ */
onReachBottom: function () { onReachBottom: function () {
}, },
/** /**
* 用户点击右上角分享 * 用户点击右上角分享
*/ */
onShareAppMessage: function () { onShareAppMessage: function () {
}, },
goDetails(e) {//模块编码(0-政策导航,1-印象,2-味道,3-硬核,4-档案) goDetails(e) {//模块编码(0-政策导航,1-印象,2-味道,3-硬核,4-档案)
console.log(JSON.stringify(e.currentTarget.dataset) + e.currentTarget.dataset.modulecode) console.log(JSON.stringify(e.currentTarget.dataset) + e.currentTarget.dataset.modulecode)
if (e.currentTarget.dataset.modulecode == 'notice_warning') { //警事 if (e.currentTarget.dataset.modulecode == 'notice_warning') { //警事
wx.navigateTo({ wx.navigateTo({
url: `../impression/impression?modulecode=${e.currentTarget.dataset.modulecode}` url: `../impression/impression?modulecode=${e.currentTarget.dataset.modulecode}`
}) })
} else if (e.currentTarget.dataset.modulecode == 'notice_impression' || e.currentTarget.dataset.modulecode == 'notice_taste') {//印象//味道 } else if (e.currentTarget.dataset.modulecode == 'notice_impression' || e.currentTarget.dataset.modulecode == 'notice_taste') {//印象//味道
wx.navigateTo({ wx.navigateTo({
url: `../noticeDetail/noticeDetail?modulecode=${e.currentTarget.dataset.modulecode}` url: `../noticeDetail/noticeDetail?modulecode=${e.currentTarget.dataset.modulecode}`
}) })
} else if (e.currentTarget.dataset.modulecode == 'module_hardcore') {//硬核 } else if (e.currentTarget.dataset.modulecode == 'module_hardcore') {//硬核
wx.navigateTo({ wx.navigateTo({
url: `../sclerotia/sclerotia?modulecode=${e.currentTarget.dataset.modulecode}` url: `../sclerotia/sclerotia?modulecode=${e.currentTarget.dataset.modulecode}`
}) })
} else if (e.currentTarget.dataset.modulecode == 'module_file') {//档案 } else if (e.currentTarget.dataset.modulecode == 'module_file') {//档案
wx.showToast({ // wx.showToast({
title: '敬请期待', // title: '敬请期待',
icon: 'none', // icon: 'none',
duration: 1000 // duration: 1000
}) // })
// wx.navigateTo({ wx.navigateTo({
// url: '../archives/archives' url: '../archives/archives'
// }) })
} }
} }
}) })
Loading…
Cancel
Save