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/talklist/talklist",
"pages/eventlist/eventlist",
"pages/addTopic/addTopic"
"pages/addTopic/addTopic",
"pages/guideInfo/guideInfo"
]
},
{

2
project.config.json

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

138
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
})
}
})

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

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

194
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'
})
}
}
})
Loading…
Cancel
Save