@ -1,31 +0,0 @@
|
|||||||
/*
|
|
||||||
* Eslint config file
|
|
||||||
* Documentation: https://eslint.org/docs/user-guide/configuring/
|
|
||||||
* Install the Eslint extension before using this feature.
|
|
||||||
*/
|
|
||||||
module.exports = {
|
|
||||||
env: {
|
|
||||||
es6: true,
|
|
||||||
browser: true,
|
|
||||||
node: true,
|
|
||||||
},
|
|
||||||
ecmaFeatures: {
|
|
||||||
modules: true,
|
|
||||||
},
|
|
||||||
parserOptions: {
|
|
||||||
ecmaVersion: 2018,
|
|
||||||
sourceType: 'module',
|
|
||||||
},
|
|
||||||
globals: {
|
|
||||||
wx: true,
|
|
||||||
App: true,
|
|
||||||
Page: true,
|
|
||||||
getCurrentPages: true,
|
|
||||||
getApp: true,
|
|
||||||
Component: true,
|
|
||||||
requirePlugin: true,
|
|
||||||
requireMiniProgram: true,
|
|
||||||
},
|
|
||||||
// extends: 'eslint:recommended',
|
|
||||||
rules: {},
|
|
||||||
}
|
|
@ -1,14 +0,0 @@
|
|||||||
# Windows
|
|
||||||
[Dd]esktop.ini
|
|
||||||
Thumbs.db
|
|
||||||
$RECYCLE.BIN/
|
|
||||||
|
|
||||||
# macOS
|
|
||||||
.DS_Store
|
|
||||||
.fseventsd
|
|
||||||
.Spotlight-V100
|
|
||||||
.TemporaryItems
|
|
||||||
.Trashes
|
|
||||||
|
|
||||||
# Node.js
|
|
||||||
node_modules/
|
|
@ -1,19 +0,0 @@
|
|||||||
// app.js
|
|
||||||
App({
|
|
||||||
onLaunch() {
|
|
||||||
// 展示本地存储能力
|
|
||||||
const logs = wx.getStorageSync('logs') || []
|
|
||||||
logs.unshift(Date.now())
|
|
||||||
wx.setStorageSync('logs', logs)
|
|
||||||
|
|
||||||
// 登录
|
|
||||||
wx.login({
|
|
||||||
success: res => {
|
|
||||||
// 发送 res.code 到后台换取 openId, sessionKey, unionId
|
|
||||||
}
|
|
||||||
})
|
|
||||||
},
|
|
||||||
globalData: {
|
|
||||||
userInfo: null
|
|
||||||
}
|
|
||||||
})
|
|
@ -1,41 +0,0 @@
|
|||||||
{
|
|
||||||
"pages": [
|
|
||||||
"pages/index/index",
|
|
||||||
"pages/logs/logs",
|
|
||||||
"pages/commemorate/commemorate",
|
|
||||||
"pages/recommend/recommend",
|
|
||||||
"pages/wc/wc"
|
|
||||||
],
|
|
||||||
"window": {
|
|
||||||
"backgroundTextStyle": "light",
|
|
||||||
"navigationBarBackgroundColor": "#ddd",
|
|
||||||
"navigationBarTitleText": "银幕之旅",
|
|
||||||
"navigationBarTextStyle": "black",
|
|
||||||
"enablePullDownRefresh": true
|
|
||||||
},
|
|
||||||
"tabBar": {
|
|
||||||
"selectedColor": "#CD5C5C",
|
|
||||||
"list": [
|
|
||||||
{
|
|
||||||
"pagePath": "pages/index/index",
|
|
||||||
"text": "首页",
|
|
||||||
"iconPath": "static/tabbar/home.png",
|
|
||||||
"selectedIconPath": "static/tabbar/home_selected.png"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"pagePath": "pages/recommend/recommend",
|
|
||||||
"text": "推荐",
|
|
||||||
"iconPath": "static/tabbar/recommend.png",
|
|
||||||
"selectedIconPath": "static/tabbar/recommend_selected.png"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"pagePath": "pages/commemorate/commemorate",
|
|
||||||
"text": "纪念",
|
|
||||||
"iconPath": "static/tabbar/commemorate.png",
|
|
||||||
"selectedIconPath": "static/tabbar/commemorate_selected.png"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"style": "v2",
|
|
||||||
"sitemapLocation": "sitemap.json"
|
|
||||||
}
|
|
@ -1,11 +0,0 @@
|
|||||||
/**app.wxss**/
|
|
||||||
.container {
|
|
||||||
height: 100%;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: space-between;
|
|
||||||
padding: 200rpx 0;
|
|
||||||
/**满屏幕是750rpx**/
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
@ -1,79 +0,0 @@
|
|||||||
// pages/commemorate/commemorate.js
|
|
||||||
Page({
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面的初始数据
|
|
||||||
*/
|
|
||||||
data: {
|
|
||||||
currentPage: '' // 初始值为空
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面加载
|
|
||||||
*/
|
|
||||||
onLoad(options) {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面初次渲染完成
|
|
||||||
*/
|
|
||||||
onReady() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面显示
|
|
||||||
*/
|
|
||||||
onShow() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面隐藏
|
|
||||||
*/
|
|
||||||
onHide() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面卸载
|
|
||||||
*/
|
|
||||||
onUnload() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面相关事件处理函数--监听用户下拉动作
|
|
||||||
*/
|
|
||||||
onPullDownRefresh() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面上拉触底事件的处理函数
|
|
||||||
*/
|
|
||||||
onReachBottom() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 用户点击右上角分享
|
|
||||||
*/
|
|
||||||
onShareAppMessage() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
showPage1: function() {
|
|
||||||
this.setData({
|
|
||||||
currentPage: 'page1',// 显示页面1
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
showPage2: function() {
|
|
||||||
this.setData({
|
|
||||||
currentPage: 'page2', // 显示页面2
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
})
|
|
@ -1,3 +0,0 @@
|
|||||||
{
|
|
||||||
"usingComponents": {}
|
|
||||||
}
|
|
@ -1,12 +0,0 @@
|
|||||||
<view class="button-container">
|
|
||||||
<button bindtap="showPage1" class="b1">纪念票</button>
|
|
||||||
<button bindtap="showPage2" class="b2">纪念册</button>
|
|
||||||
</view>
|
|
||||||
|
|
||||||
<view wx:if="{{currentPage === 'page1'}}" class="v1" style="width:max-width; height:1000rpx;">
|
|
||||||
<text>1</text>>
|
|
||||||
</view>
|
|
||||||
|
|
||||||
<view wx:if="{{currentPage === 'page2'}}" class="v2" style="width:max-width; height:1000rpx;">
|
|
||||||
<text>2</text>>
|
|
||||||
</view>
|
|
@ -1,23 +0,0 @@
|
|||||||
/* pages/commemorate/commemorate.wxss */
|
|
||||||
.button-container {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
justify-content: space-between;
|
|
||||||
background-color:rgb(99, 195, 240)
|
|
||||||
}
|
|
||||||
|
|
||||||
.b1 {
|
|
||||||
background-color: rgb(171, 238, 16);
|
|
||||||
}
|
|
||||||
|
|
||||||
.b2 {
|
|
||||||
background-color: rgb(221, 218, 55);
|
|
||||||
}
|
|
||||||
|
|
||||||
.v1 {
|
|
||||||
background-color: rgb(99, 195, 240);
|
|
||||||
}
|
|
||||||
|
|
||||||
.v2 {
|
|
||||||
background-color: rgb(99, 195, 240);
|
|
||||||
}
|
|
@ -1,66 +0,0 @@
|
|||||||
// index.js
|
|
||||||
Page({
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面的初始数据
|
|
||||||
*/
|
|
||||||
data: {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面加载
|
|
||||||
*/
|
|
||||||
onLoad(options) {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面初次渲染完成
|
|
||||||
*/
|
|
||||||
onReady() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面显示
|
|
||||||
*/
|
|
||||||
onShow() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面隐藏
|
|
||||||
*/
|
|
||||||
onHide() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面卸载
|
|
||||||
*/
|
|
||||||
onUnload() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面相关事件处理函数--监听用户下拉动作
|
|
||||||
*/
|
|
||||||
onPullDownRefresh() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面上拉触底事件的处理函数
|
|
||||||
*/
|
|
||||||
onReachBottom() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 用户点击右上角分享
|
|
||||||
*/
|
|
||||||
onShareAppMessage() {
|
|
||||||
|
|
||||||
}
|
|
||||||
})
|
|
@ -1,3 +0,0 @@
|
|||||||
{
|
|
||||||
"usingComponents": {}
|
|
||||||
}
|
|
@ -1,40 +0,0 @@
|
|||||||
<!--index.wxml-->
|
|
||||||
<text>当季热映🔥</text>
|
|
||||||
<view class="menu">
|
|
||||||
<view class="item">
|
|
||||||
<image src="/static/tabbar/movie.png"></image>
|
|
||||||
<text>阿斌</text>
|
|
||||||
</view>
|
|
||||||
<view class="item">
|
|
||||||
<image src="/static/tabbar/movie.png"></image>
|
|
||||||
<text>阿斌</text>
|
|
||||||
</view>
|
|
||||||
<view class="item">
|
|
||||||
<image src="/static/tabbar/movie.png"></image>
|
|
||||||
<text>阿斌</text>
|
|
||||||
</view>
|
|
||||||
<view class="item">
|
|
||||||
<image src="/static/tabbar/movie.png"></image>
|
|
||||||
<text>阿斌</text>
|
|
||||||
</view>
|
|
||||||
<view class="item">
|
|
||||||
<image src="/static/tabbar/movie.png"></image>
|
|
||||||
<text>阿斌</text>
|
|
||||||
</view>
|
|
||||||
<view class="item">
|
|
||||||
<image src="/static/tabbar/movie.png"></image>
|
|
||||||
<text>阿斌</text>
|
|
||||||
</view>
|
|
||||||
<view class="item">
|
|
||||||
<image src="/static/tabbar/movie.png"></image>
|
|
||||||
<text>阿斌</text>
|
|
||||||
</view>
|
|
||||||
<view class="item">
|
|
||||||
<image src="/static/tabbar/movie.png"></image>
|
|
||||||
<text>阿斌</text>
|
|
||||||
</view>
|
|
||||||
<view class="item">
|
|
||||||
<image src="/static/tabbar/movie.png"></image>
|
|
||||||
<text>阿斌</text>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
@ -1,18 +0,0 @@
|
|||||||
// logs.js
|
|
||||||
const util = require('../../utils/util.js')
|
|
||||||
|
|
||||||
Page({
|
|
||||||
data: {
|
|
||||||
logs: []
|
|
||||||
},
|
|
||||||
onLoad() {
|
|
||||||
this.setData({
|
|
||||||
logs: (wx.getStorageSync('logs') || []).map(log => {
|
|
||||||
return {
|
|
||||||
date: util.formatTime(new Date(log)),
|
|
||||||
timeStamp: log
|
|
||||||
}
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
|
||||||
})
|
|
@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"navigationBarTitleText": "查看启动日志",
|
|
||||||
"usingComponents": {}
|
|
||||||
}
|
|
@ -1,6 +0,0 @@
|
|||||||
<!--logs.wxml-->
|
|
||||||
<view class="container log-list">
|
|
||||||
<block wx:for="{{logs}}" wx:key="timeStamp" wx:for-item="log">
|
|
||||||
<text class="log-item">{{index + 1}}. {{log.date}}</text>
|
|
||||||
</block>
|
|
||||||
</view>
|
|
@ -1,8 +0,0 @@
|
|||||||
.log-list {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
padding: 40rpx;
|
|
||||||
}
|
|
||||||
.log-item {
|
|
||||||
margin: 10rpx;
|
|
||||||
}
|
|
@ -1,68 +0,0 @@
|
|||||||
// pages/recommend/recommend.js
|
|
||||||
Page({
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面的初始数据
|
|
||||||
*/
|
|
||||||
data: {
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面加载
|
|
||||||
*/
|
|
||||||
onLoad(options) {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面初次渲染完成
|
|
||||||
*/
|
|
||||||
onReady() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面显示
|
|
||||||
*/
|
|
||||||
onShow() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面隐藏
|
|
||||||
*/
|
|
||||||
onHide() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面卸载
|
|
||||||
*/
|
|
||||||
onUnload() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面相关事件处理函数--监听用户下拉动作
|
|
||||||
*/
|
|
||||||
onPullDownRefresh() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面上拉触底事件的处理函数
|
|
||||||
*/
|
|
||||||
onReachBottom() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 用户点击右上角分享
|
|
||||||
*/
|
|
||||||
onShareAppMessage() {
|
|
||||||
|
|
||||||
}
|
|
||||||
})
|
|
@ -1,3 +0,0 @@
|
|||||||
{
|
|
||||||
"usingComponents": {}
|
|
||||||
}
|
|
@ -1,34 +0,0 @@
|
|||||||
<view>可能喜欢(๑•̀ㅂ•́)و✧</view>
|
|
||||||
<view class="zhu">
|
|
||||||
<view class="zhiyin">
|
|
||||||
<navigator url="/pages/wc/wc">
|
|
||||||
<image src="/static/tabbar/home.png"></image>
|
|
||||||
</navigator>
|
|
||||||
</view>
|
|
||||||
<view class="zhiyin">
|
|
||||||
<navigator url="/pages/wc/wc">
|
|
||||||
<image src="/static/tabbar/home.png"></image>
|
|
||||||
</navigator>
|
|
||||||
</view>
|
|
||||||
<view class="zhiyin">
|
|
||||||
<navigator url="/pages/wc/wc">
|
|
||||||
<image src="/static/tabbar/home.png"></image>
|
|
||||||
</navigator>
|
|
||||||
</view>
|
|
||||||
|
|
||||||
<view class="meme">
|
|
||||||
<navigator url="/pages/wc/wc">
|
|
||||||
<image src="/static/tabbar/commemorate.png"></image>
|
|
||||||
</navigator>
|
|
||||||
</view>
|
|
||||||
<view class="meme">
|
|
||||||
<navigator url="/pages/wc/wc">
|
|
||||||
<image src="/static/tabbar/commemorate.png"></image>
|
|
||||||
</navigator>
|
|
||||||
</view>
|
|
||||||
<view class="meme">
|
|
||||||
<navigator url="/pages/wc/wc">
|
|
||||||
<image src="/static/tabbar/commemorate.png"></image>
|
|
||||||
</navigator>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
@ -1,66 +0,0 @@
|
|||||||
// pages/wc/wc.js
|
|
||||||
Page({
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面的初始数据
|
|
||||||
*/
|
|
||||||
data: {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面加载
|
|
||||||
*/
|
|
||||||
onLoad(options) {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面初次渲染完成
|
|
||||||
*/
|
|
||||||
onReady() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面显示
|
|
||||||
*/
|
|
||||||
onShow() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面隐藏
|
|
||||||
*/
|
|
||||||
onHide() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面卸载
|
|
||||||
*/
|
|
||||||
onUnload() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面相关事件处理函数--监听用户下拉动作
|
|
||||||
*/
|
|
||||||
onPullDownRefresh() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面上拉触底事件的处理函数
|
|
||||||
*/
|
|
||||||
onReachBottom() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 用户点击右上角分享
|
|
||||||
*/
|
|
||||||
onShareAppMessage() {
|
|
||||||
|
|
||||||
}
|
|
||||||
})
|
|
@ -1,3 +0,0 @@
|
|||||||
{
|
|
||||||
"usingComponents": {}
|
|
||||||
}
|
|
@ -1,3 +0,0 @@
|
|||||||
<!--pages/wc/wc.wxml-->
|
|
||||||
<text>pages/wc/wc.wxml</text>
|
|
||||||
<view>dshdhsi</view>
|
|
@ -1 +0,0 @@
|
|||||||
/* pages/wc/wc.wxss */
|
|
@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html",
|
|
||||||
"rules": [{
|
|
||||||
"action": "allow",
|
|
||||||
"page": "*"
|
|
||||||
}]
|
|
||||||
}
|
|
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 6.1 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.2 KiB |
@ -1,19 +0,0 @@
|
|||||||
const formatTime = date => {
|
|
||||||
const year = date.getFullYear()
|
|
||||||
const month = date.getMonth() + 1
|
|
||||||
const day = date.getDate()
|
|
||||||
const hour = date.getHours()
|
|
||||||
const minute = date.getMinutes()
|
|
||||||
const second = date.getSeconds()
|
|
||||||
|
|
||||||
return `${[year, month, day].map(formatNumber).join('/')} ${[hour, minute, second].map(formatNumber).join(':')}`
|
|
||||||
}
|
|
||||||
|
|
||||||
const formatNumber = n => {
|
|
||||||
n = n.toString()
|
|
||||||
return n[1] ? n : `0${n}`
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
formatTime
|
|
||||||
}
|
|