├── OneSideProgram ├── .eslintignore ├── config │ ├── prod.env.js │ ├── dev.env.js │ └── index.js ├── static │ ├── images │ │ ├── add.png │ │ ├── job.png │ │ ├── my.png │ │ ├── logo.png │ │ └── location.png │ └── libs │ │ └── qqmap-wx-jssdk.js ├── src │ ├── pages │ │ ├── my │ │ │ ├── main.js │ │ │ └── index.vue │ │ ├── search │ │ │ ├── main.js │ │ │ └── index.vue │ │ ├── add │ │ │ ├── main.js │ │ │ └── index.vue │ │ └── index │ │ │ ├── main.js │ │ │ └── index.vue │ ├── api │ │ └── index.js │ ├── components │ │ └── card.vue │ ├── app.json │ ├── store │ │ ├── modules │ │ │ └── index.js │ │ └── index.js │ ├── main.js │ ├── utils │ │ ├── request.js │ │ └── index.js │ └── App.vue ├── .postcssrc.js ├── .editorconfig ├── project.swan.json ├── package.swan.json ├── .gitignore ├── index.html ├── build │ ├── dev-client.js │ ├── vue-loader.conf.js │ ├── build.js │ ├── check-versions.js │ ├── webpack.dev.conf.js │ ├── utils.js │ ├── dev-server.js │ ├── webpack.prod.conf.js │ └── webpack.base.conf.js ├── .babelrc ├── README.md ├── .eslintrc.js ├── project.config.json └── package.json ├── README.md └── .gitignore /OneSideProgram/.eslintignore: -------------------------------------------------------------------------------- 1 | build/*.js 2 | config/*.js 3 | -------------------------------------------------------------------------------- /OneSideProgram/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /OneSideProgram/static/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guhuilin/MiniProgram/HEAD/OneSideProgram/static/images/add.png -------------------------------------------------------------------------------- /OneSideProgram/static/images/job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guhuilin/MiniProgram/HEAD/OneSideProgram/static/images/job.png -------------------------------------------------------------------------------- /OneSideProgram/static/images/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guhuilin/MiniProgram/HEAD/OneSideProgram/static/images/my.png -------------------------------------------------------------------------------- /OneSideProgram/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guhuilin/MiniProgram/HEAD/OneSideProgram/static/images/logo.png -------------------------------------------------------------------------------- /OneSideProgram/static/images/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guhuilin/MiniProgram/HEAD/OneSideProgram/static/images/location.png -------------------------------------------------------------------------------- /OneSideProgram/src/pages/my/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './index' 3 | 4 | 5 | const app = new Vue(App) 6 | app.$mount() 7 | -------------------------------------------------------------------------------- /OneSideProgram/src/pages/search/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './index' 3 | 4 | const app = new Vue(App) 5 | app.$mount() 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 微信小程序MiniProgram 2 | >> 旨在熟悉小程序的操作以及一些方法的使用 3 | > - 框架构建以mpvue+elementUI做的 4 | > - map地图的使用,定位,导航,测算距离 5 | > - vuex + localStorage管理数据 6 | > - 走了一遍审核, 发布, 上线的流程 7 | -------------------------------------------------------------------------------- /OneSideProgram/.postcssrc.js: -------------------------------------------------------------------------------- 1 | // https://github.com/michael-ciniawsky/postcss-load-config 2 | 3 | module.exports = { 4 | "plugins": { 5 | "postcss-mpvue-wxss": {} 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /OneSideProgram/config/dev.env.js: -------------------------------------------------------------------------------- 1 | var merge = require('webpack-merge') 2 | var prodEnv = require('./prod.env') 3 | 4 | module.exports = merge(prodEnv, { 5 | NODE_ENV: '"development"' 6 | }) 7 | -------------------------------------------------------------------------------- /OneSideProgram/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | -------------------------------------------------------------------------------- /OneSideProgram/src/api/index.js: -------------------------------------------------------------------------------- 1 | import request from '@/utils/request'; 2 | 3 | // 登陆接口 4 | export let login = code=>{ 5 | return request.post('http://169.254.12.68:7001/user/code2session', { 6 | code 7 | }) 8 | } 9 | -------------------------------------------------------------------------------- /OneSideProgram/project.swan.json: -------------------------------------------------------------------------------- 1 | { 2 | "appid": "testappid", 3 | "setting": { 4 | "urlCheck": false 5 | }, 6 | "condition": { 7 | "swan": { 8 | "current": -1, 9 | "list": [] 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /OneSideProgram/package.swan.json: -------------------------------------------------------------------------------- 1 | { 2 | "appid": "wx3375420e2c184d34", 3 | "setting": { 4 | "urlCheck": false 5 | }, 6 | "condition": { 7 | "swan": { 8 | "current": -1, 9 | "list": [] 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /OneSideProgram/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ 4 | server/ 5 | npm-debug.log* 6 | yarn-debug.log* 7 | yarn-error.log* 8 | 9 | # Editor directories and files 10 | .idea 11 | *.suo 12 | *.ntvs* 13 | *.njsproj 14 | *.sln 15 | -------------------------------------------------------------------------------- /OneSideProgram/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | sign 6 | 7 | 8 |
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /OneSideProgram/src/components/card.vue: -------------------------------------------------------------------------------- 1 | 8 | 9 | 14 | 15 | 20 | -------------------------------------------------------------------------------- /OneSideProgram/src/pages/add/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './index' 3 | 4 | // add this to handle exception 5 | Vue.config.errorHandler = function (err) { 6 | if (console && console.error) { 7 | console.error(err) 8 | } 9 | } 10 | 11 | const app = new Vue(App) 12 | app.$mount() 13 | -------------------------------------------------------------------------------- /OneSideProgram/build/dev-client.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | require('eventsource-polyfill') 3 | var hotClient = require('webpack-hot-middleware/client?noInfo=true&reload=true') 4 | 5 | hotClient.subscribe(function (event) { 6 | if (event.action === 'reload') { 7 | window.location.reload() 8 | } 9 | }) 10 | -------------------------------------------------------------------------------- /OneSideProgram/src/pages/index/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './index' 3 | 4 | // add this to handle exception 5 | Vue.config.errorHandler = function (err) { 6 | if (console && console.error) { 7 | console.error(err) 8 | } 9 | } 10 | 11 | const app = new Vue(App) 12 | app.$mount() 13 | -------------------------------------------------------------------------------- /OneSideProgram/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | ["env", { 4 | "modules": false, 5 | "targets": { 6 | "browsers": ["> 1%", "last 2 versions", "not ie <= 8"] 7 | } 8 | }], 9 | "stage-2" 10 | ], 11 | "plugins": ["transform-runtime"], 12 | "env": { 13 | "test": { 14 | "presets": ["env", "stage-2"], 15 | "plugins": ["istanbul"] 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /OneSideProgram/src/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages": [ 3 | "pages/index/main", 4 | "pages/search/main", 5 | "pages/my/main", 6 | "pages/add/main" 7 | ], 8 | "permission": { 9 | "scope.userLocation": { 10 | "desc": "你的位置信息将用于小程序地图定位" 11 | } 12 | }, 13 | "window": { 14 | "backgroundTextStyle": "light", 15 | "navigationBarBackgroundColor": "#fff", 16 | "navigationBarTitleText": "一面而就", 17 | "navigationBarTextStyle": "black" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /OneSideProgram/src/store/modules/index.js: -------------------------------------------------------------------------------- 1 | const state = { 2 | count: 1 3 | }; 4 | 5 | const getters = { 6 | 7 | }; 8 | 9 | // 同步改变 10 | const mutations = { 11 | changeCount(state, payload){ 12 | console.log('state...', state, payload); 13 | payload === '+'?state.count++: state.count--; 14 | } 15 | }; 16 | 17 | // 异步改变 18 | const actions = { 19 | 20 | }; 21 | 22 | export default { 23 | // 命名空间 24 | namespaced: true, 25 | state, 26 | getters, 27 | mutations, 28 | actions 29 | } 30 | -------------------------------------------------------------------------------- /OneSideProgram/src/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './App' 3 | // 引入store 4 | import store from '@/store/index' 5 | // 引入QQMap 6 | import QQMapWx from '../static/libs/qqmap-wx-jssdk.js' 7 | 8 | Vue.config.productionTip = false 9 | App.mpType = 'app' 10 | 11 | // 挂载store到原型链上 12 | Vue.prototype.$store = store; 13 | // 挂载QQMap到原型上 14 | var $map = new QQMapWx({ 15 | key: 'X7RBZ-MMOKR-UQEWJ-WSCXC-IVXVK-IFFLL' 16 | }) 17 | Vue.prototype.$map = $map; 18 | 19 | const app = new Vue(App) 20 | app.$mount() 21 | -------------------------------------------------------------------------------- /OneSideProgram/src/store/index.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue'; 2 | import Vuex from 'vuex'; 3 | import createLogger from 'vuex/dist/logger'; 4 | 5 | // 挂载modules 6 | import index from './modules/index' 7 | 8 | Vue.use(Vuex); 9 | 10 | export default new Vuex.Store({ 11 | modules: { 12 | index 13 | }, 14 | state: { 15 | info: {} // 用户信息 16 | }, 17 | mutations: { 18 | // 更新全局的state 19 | updateState(state, payload){ 20 | state.info = payload; 21 | } 22 | }, 23 | plugins: [createLogger()] 24 | }) 25 | -------------------------------------------------------------------------------- /OneSideProgram/build/vue-loader.conf.js: -------------------------------------------------------------------------------- 1 | var utils = require('./utils') 2 | var config = require('../config') 3 | // var isProduction = process.env.NODE_ENV === 'production' 4 | // for mp 5 | var isProduction = true 6 | 7 | module.exports = { 8 | loaders: utils.cssLoaders({ 9 | sourceMap: isProduction 10 | ? config.build.productionSourceMap 11 | : config.dev.cssSourceMap, 12 | extract: isProduction 13 | }), 14 | transformToRequire: { 15 | video: 'src', 16 | source: 'src', 17 | img: 'src', 18 | image: 'xlink:href' 19 | }, 20 | fileExt: config.build.fileExt 21 | } 22 | -------------------------------------------------------------------------------- /OneSideProgram/README.md: -------------------------------------------------------------------------------- 1 | # sign 2 | 3 | > 面试管理软件 4 | 5 | ## Build Setup 6 | 7 | ``` bash 8 | # 初始化项目 9 | vue init mpvue/mpvue-quickstart myproject 10 | cd myproject 11 | 12 | # 安装依赖 13 | yarn 14 | 15 | # 开发时构建 16 | npm dev 17 | 18 | # 打包构建 19 | npm build 20 | 21 | # 指定平台的开发时构建(微信、百度、头条、支付宝) 22 | npm dev:wx 23 | npm dev:swan 24 | npm dev:tt 25 | npm dev:my 26 | 27 | # 指定平台的打包构建 28 | npm build:wx 29 | npm build:swan 30 | npm build:tt 31 | npm build:my 32 | 33 | # 生成 bundle 分析报告 34 | npm run build --report 35 | ``` 36 | 37 | For detailed explanation on how things work, checkout the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader). 38 | -------------------------------------------------------------------------------- /OneSideProgram/.eslintrc.js: -------------------------------------------------------------------------------- 1 | // http://eslint.org/docs/user-guide/configuring 2 | 3 | module.exports = { 4 | root: true, 5 | parser: 'babel-eslint', 6 | parserOptions: { 7 | sourceType: 'module' 8 | }, 9 | env: { 10 | browser: false, 11 | node: true, 12 | es6: true 13 | }, 14 | // https://github.com/standard/standard/blob/master/docs/RULES-en.md 15 | extends: 'standard', 16 | // required to lint *.vue files 17 | plugins: [ 18 | 'html' 19 | ], 20 | // add your custom rules here 21 | 'rules': { 22 | // allow paren-less arrow functions 23 | 'arrow-parens': 0, 24 | // allow async-await 25 | 'generator-star-spacing': 0, 26 | // allow debugger during development 27 | 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0 28 | }, 29 | globals: { 30 | App: true, 31 | Page: true, 32 | wx: true, 33 | swan: true, 34 | tt: true, 35 | my: true, 36 | getApp: true, 37 | getPage: true, 38 | requirePlugin: true, 39 | mpvue: true, 40 | mpvuePlatform: true 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (https://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # TypeScript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | 60 | # next.js build output 61 | .next 62 | -------------------------------------------------------------------------------- /OneSideProgram/project.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "项目配置文件。", 3 | "setting": { 4 | "urlCheck": false, 5 | "es6": true, 6 | "postcss": true, 7 | "minified": true, 8 | "newFeature": true, 9 | "autoAudits": false 10 | }, 11 | "miniprogramRoot": "dist/wx/", 12 | "compileType": "miniprogram", 13 | "appid": "wx6c85dc0083b1569f", 14 | "projectname": "sign", 15 | "condition": { 16 | "search": { 17 | "current": -1, 18 | "list": [] 19 | }, 20 | "conversation": { 21 | "current": -1, 22 | "list": [] 23 | }, 24 | "plugin": { 25 | "current": -1, 26 | "list": [] 27 | }, 28 | "game": { 29 | "currentL": -1, 30 | "list": [] 31 | }, 32 | "miniprogram": { 33 | "current": 2, 34 | "list": [ 35 | { 36 | "id": -1, 37 | "name": "匹配地址", 38 | "pathName": "pages/search/main", 39 | "query": "", 40 | "scene": null 41 | }, 42 | { 43 | "id": -1, 44 | "name": "添加面试", 45 | "pathName": "pages/add/main", 46 | "query": "", 47 | "scene": null 48 | }, 49 | { 50 | "id": -1, 51 | "name": "我的页面", 52 | "pathName": "pages/my/main", 53 | "scene": null 54 | } 55 | ] 56 | } 57 | } 58 | } -------------------------------------------------------------------------------- /OneSideProgram/src/utils/request.js: -------------------------------------------------------------------------------- 1 | import Fly from "flyio/dist/npm/wx" 2 | 3 | export let fly = new Fly 4 | 5 | let cookies = {} 6 | const HOST = 'https://127.0.0.1' // 更改 7 | //添加请求拦截器 8 | fly.interceptors.request.use((request) => { 9 | // 把openid放在请求头部 10 | let openid = wx.getStorageSync('openid'); 11 | if (openid){ 12 | request.headers['openid'] = openid; 13 | } 14 | //给所有请求添加自定义header 15 | // request.headers["Cookie"] = map(cookies, (v, k) => k + '=' + v).join(';') 16 | //打印出请求体 17 | // console.log(request.body) 18 | //终止请求 19 | //var err=new Error("xxx") 20 | //err.request=request 21 | //return Promise.reject(new Error("")) 22 | 23 | //可以显式返回request, 也可以不返回,没有返回值时拦截器中默认返回request 24 | return request; 25 | }) 26 | 27 | //添加响应拦截器,响应拦截器会在then/catch处理之前执行 28 | fly.interceptors.response.use( 29 | (response) => { 30 | if (response.request.url.indexOf(HOST) == 0) { 31 | let hcks = response.headers['set-cookie'] || response.headers['Set-Cookie'] 32 | if (hcks != null) { 33 | hcks.forEach(v => { 34 | let ck = v.split(';')[0].split('=') 35 | cookies[ck[0]] = ck[1] 36 | }) 37 | } 38 | } 39 | //只将请求结果的data字段返回 40 | return response.data 41 | }, 42 | (err) => { 43 | //发生网络错误后会走到这里 44 | //return Promise.resolve("ssss") 45 | } 46 | ) 47 | 48 | export default fly 49 | 50 | -------------------------------------------------------------------------------- /OneSideProgram/build/build.js: -------------------------------------------------------------------------------- 1 | require('./check-versions')() 2 | 3 | process.env.NODE_ENV = 'production' 4 | process.env.PLATFORM = process.argv[process.argv.length - 1] || 'wx' 5 | 6 | var ora = require('ora') 7 | var rm = require('rimraf') 8 | var path = require('path') 9 | var chalk = require('chalk') 10 | var webpack = require('webpack') 11 | var config = require('../config') 12 | var webpackConfig = require('./webpack.prod.conf') 13 | var utils = require('./utils') 14 | 15 | var spinner = ora('building for production...') 16 | spinner.start() 17 | 18 | rm(path.join(config.build.assetsRoot, '*'), err => { 19 | if (err) throw err 20 | webpack(webpackConfig, function (err, stats) { 21 | spinner.stop() 22 | if (err) throw err 23 | if (process.env.PLATFORM === 'swan') { 24 | utils.writeFrameworkinfo() 25 | } 26 | process.stdout.write(stats.toString({ 27 | colors: true, 28 | modules: false, 29 | children: false, 30 | chunks: false, 31 | chunkModules: false 32 | }) + '\n\n') 33 | 34 | if (stats.hasErrors()) { 35 | console.log(chalk.red(' Build failed with errors.\n')) 36 | process.exit(1) 37 | } 38 | 39 | console.log(chalk.cyan(' Build complete.\n')) 40 | console.log(chalk.yellow( 41 | ' Tip: built files are meant to be served over an HTTP server.\n' + 42 | ' Opening index.html over file:// won\'t work.\n' 43 | )) 44 | }) 45 | }) 46 | -------------------------------------------------------------------------------- /OneSideProgram/build/check-versions.js: -------------------------------------------------------------------------------- 1 | var chalk = require('chalk') 2 | var semver = require('semver') 3 | var packageConfig = require('../package.json') 4 | var shell = require('shelljs') 5 | function exec (cmd) { 6 | return require('child_process').execSync(cmd).toString().trim() 7 | } 8 | 9 | var versionRequirements = [ 10 | { 11 | name: 'node', 12 | currentVersion: semver.clean(process.version), 13 | versionRequirement: packageConfig.engines.node 14 | } 15 | ] 16 | 17 | if (shell.which('npm')) { 18 | versionRequirements.push({ 19 | name: 'npm', 20 | currentVersion: exec('npm --version'), 21 | versionRequirement: packageConfig.engines.npm 22 | }) 23 | } 24 | 25 | module.exports = function () { 26 | var warnings = [] 27 | for (var i = 0; i < versionRequirements.length; i++) { 28 | var mod = versionRequirements[i] 29 | if (!semver.satisfies(mod.currentVersion, mod.versionRequirement)) { 30 | warnings.push(mod.name + ': ' + 31 | chalk.red(mod.currentVersion) + ' should be ' + 32 | chalk.green(mod.versionRequirement) 33 | ) 34 | } 35 | } 36 | 37 | if (warnings.length) { 38 | console.log('') 39 | console.log(chalk.yellow('To use this template, you must update following to modules:')) 40 | console.log() 41 | for (var i = 0; i < warnings.length; i++) { 42 | var warning = warnings[i] 43 | console.log(' ' + warning) 44 | } 45 | console.log() 46 | process.exit(1) 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /OneSideProgram/src/App.vue: -------------------------------------------------------------------------------- 1 | 34 | 35 | 59 | -------------------------------------------------------------------------------- /OneSideProgram/src/pages/my/index.vue: -------------------------------------------------------------------------------- 1 | 22 | 23 | 53 | 54 | 88 | -------------------------------------------------------------------------------- /OneSideProgram/src/utils/index.js: -------------------------------------------------------------------------------- 1 | function formatNumber(n) { 2 | const str = n.toString() 3 | return str[1] ? str : `0${str}` 4 | } 5 | 6 | export function formatTime(date) { 7 | const year = date.getFullYear() 8 | const month = date.getMonth() + 1 9 | const day = date.getDate() 10 | 11 | const hour = date.getHours() 12 | const minute = date.getMinutes() 13 | const second = date.getSeconds() 14 | 15 | const t1 = [year, month, day].map(formatNumber).join('/') 16 | const t2 = [hour, minute, second].map(formatNumber).join(':') 17 | 18 | return `${t1} ${t2}` 19 | } 20 | 21 | // 获取用户定位 22 | export function getLocation() { 23 | return new Promise((resolve, reject) => { 24 | wx.getLocation({ 25 | type: 'gcj02', 26 | success(res) { 27 | resolve(res); 28 | } 29 | }) 30 | }) 31 | } 32 | 33 | /** 34 | * 通用授权逻辑 35 | * @export 36 | * @param {*} scope 权限信息 37 | * @param {*} callback 授权成功回调 38 | */ 39 | export function getAuth(scope, callback) { 40 | wx.getSetting({ 41 | success: res => { 42 | // 如果已授权 43 | if (res.authSetting[scope]) { 44 | callback(); 45 | } else { 46 | wx.authorize({ 47 | scope, 48 | success: callback, 49 | fail: () => { 50 | wx.showModal({ 51 | title: '亲爱的用户', //提示的标题, 52 | content: '同意我们的授权,让我们为你提供更加优质的服务', //提示的内容, 53 | showCancel: false, //是否显示取消按钮, 54 | confirmText: '去设置', //确定按钮的文字,默认为取消,最多 4 个字符, 55 | confirmColor: '#3CC51F', //确定按钮的文字颜色 56 | success: res => { 57 | wx.openSetting() 58 | } 59 | }) 60 | } 61 | }) 62 | } 63 | } 64 | }) 65 | } 66 | 67 | // 函数去抖 68 | export function debounce(func, delay){ 69 | var timer=null; 70 | return function(){ 71 | var context=this, args=arguments; 72 | clearTimeout(timer); 73 | timer=setTimeout(function(){ 74 | func.apply(context,args); 75 | }, delay); 76 | } 77 | } 78 | 79 | export default { 80 | formatNumber, 81 | formatTime, 82 | getLocation, 83 | getAuth, 84 | debounce 85 | } 86 | -------------------------------------------------------------------------------- /OneSideProgram/src/pages/search/index.vue: -------------------------------------------------------------------------------- 1 | 15 | 16 | 62 | 63 | 97 | -------------------------------------------------------------------------------- /OneSideProgram/config/index.js: -------------------------------------------------------------------------------- 1 | // see http://vuejs-templates.github.io/webpack for documentation. 2 | var path = require('path') 3 | var fileExtConfig = { 4 | swan: { 5 | template: 'swan', 6 | script: 'js', 7 | style: 'css', 8 | platform: 'swan' 9 | }, 10 | tt: { 11 | template: 'ttml', 12 | script: 'js', 13 | style: 'ttss', 14 | platform: 'tt' 15 | }, 16 | wx: { 17 | template: 'wxml', 18 | script: 'js', 19 | style: 'wxss', 20 | platform: 'wx' 21 | }, 22 | my: { 23 | template: 'axml', 24 | script: 'js', 25 | style: 'acss', 26 | platform: 'my' 27 | } 28 | } 29 | var fileExt = fileExtConfig[process.env.PLATFORM] 30 | 31 | module.exports = { 32 | build: { 33 | env: require('./prod.env'), 34 | index: path.resolve(__dirname, `../dist/${fileExt.platform}/index.html`), 35 | assetsRoot: path.resolve(__dirname, `../dist/${fileExt.platform}`), 36 | assetsSubDirectory: '', 37 | assetsPublicPath: '/', 38 | productionSourceMap: false, 39 | // Gzip off by default as many popular static hosts such as 40 | // Surge or Netlify already gzip all static assets for you. 41 | // Before setting to `true`, make sure to: 42 | // npm install --save-dev compression-webpack-plugin 43 | productionGzip: false, 44 | productionGzipExtensions: ['js', 'css'], 45 | // Run the build command with an extra argument to 46 | // View the bundle analyzer report after build finishes: 47 | // `npm run build --report` 48 | // Set to `true` or `false` to always turn it on or off 49 | bundleAnalyzerReport: process.env.npm_config_report, 50 | fileExt: fileExt 51 | }, 52 | dev: { 53 | env: require('./dev.env'), 54 | port: 8080, 55 | // 在小程序开发者工具中不需要自动打开浏览器 56 | autoOpenBrowser: false, 57 | assetsSubDirectory: '', 58 | assetsPublicPath: '/', 59 | proxyTable: {}, 60 | // CSS Sourcemaps off by default because relative paths are "buggy" 61 | // with this option, according to the CSS-Loader README 62 | // (https://github.com/webpack/css-loader#sourcemaps) 63 | // In our experience, they generally work as expected, 64 | // just be aware of this issue when enabling this option. 65 | cssSourceMap: false, 66 | fileExt: fileExt 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /OneSideProgram/build/webpack.dev.conf.js: -------------------------------------------------------------------------------- 1 | var utils = require('./utils') 2 | var webpack = require('webpack') 3 | var config = require('../config') 4 | var merge = require('webpack-merge') 5 | var baseWebpackConfig = require('./webpack.base.conf') 6 | // var HtmlWebpackPlugin = require('html-webpack-plugin') 7 | var FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin') 8 | var MpvueVendorPlugin = require('webpack-mpvue-vendor-plugin') 9 | 10 | // copy from ./webpack.prod.conf.js 11 | var path = require('path') 12 | var ExtractTextPlugin = require('extract-text-webpack-plugin') 13 | var CopyWebpackPlugin = require('copy-webpack-plugin') 14 | var OptimizeCSSPlugin = require('optimize-css-assets-webpack-plugin') 15 | 16 | // add hot-reload related code to entry chunks 17 | // Object.keys(baseWebpackConfig.entry).forEach(function (name) { 18 | // baseWebpackConfig.entry[name] = ['./build/dev-client'].concat(baseWebpackConfig.entry[name]) 19 | // }) 20 | 21 | module.exports = merge(baseWebpackConfig, { 22 | module: { 23 | rules: utils.styleLoaders({ 24 | sourceMap: config.dev.cssSourceMap, 25 | extract: true 26 | }) 27 | }, 28 | // cheap-module-eval-source-map is faster for development 29 | // devtool: '#cheap-module-eval-source-map', 30 | // devtool: '#source-map', 31 | output: { 32 | path: config.build.assetsRoot, 33 | // filename: utils.assetsPath('[name].[chunkhash].js'), 34 | // chunkFilename: utils.assetsPath('[id].[chunkhash].js') 35 | filename: utils.assetsPath('[name].js'), 36 | chunkFilename: utils.assetsPath('[id].js') 37 | }, 38 | plugins: [ 39 | new webpack.DefinePlugin({ 40 | 'process.env': config.dev.env 41 | }), 42 | 43 | // copy from ./webpack.prod.conf.js 44 | // extract css into its own file 45 | new ExtractTextPlugin({ 46 | // filename: utils.assetsPath('[name].[contenthash].css') 47 | filename: utils.assetsPath(`[name].${config.dev.fileExt.style}`) 48 | }), 49 | // Compress extracted CSS. We are using this plugin so that possible 50 | // duplicated CSS from different components can be deduped. 51 | new OptimizeCSSPlugin({ 52 | cssProcessorOptions: { 53 | safe: true 54 | } 55 | }), 56 | new webpack.optimize.CommonsChunkPlugin({ 57 | name: 'common/vendor', 58 | minChunks: function (module, count) { 59 | // any required modules inside node_modules are extracted to vendor 60 | return ( 61 | module.resource && 62 | /\.js$/.test(module.resource) && 63 | module.resource.indexOf('node_modules') >= 0 64 | ) || count > 1 65 | } 66 | }), 67 | new webpack.optimize.CommonsChunkPlugin({ 68 | name: 'common/manifest', 69 | chunks: ['common/vendor'] 70 | }), 71 | new MpvueVendorPlugin({ 72 | platform: process.env.PLATFORM 73 | }), 74 | // https://github.com/glenjamin/webpack-hot-middleware#installation--usage 75 | // new webpack.HotModuleReplacementPlugin(), 76 | new webpack.NoEmitOnErrorsPlugin(), 77 | // https://github.com/ampedandwired/html-webpack-plugin 78 | // new HtmlWebpackPlugin({ 79 | // filename: 'index.html', 80 | // template: 'index.html', 81 | // inject: true 82 | // }), 83 | new FriendlyErrorsPlugin() 84 | ] 85 | }) 86 | -------------------------------------------------------------------------------- /OneSideProgram/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sign", 3 | "version": "1.0.0", 4 | "mpvueTemplateProjectVersion": "0.1.0", 5 | "description": "面试管理软件", 6 | "author": "jason <342690199@qq.com>", 7 | "private": true, 8 | "scripts": { 9 | "dev:wx": "node build/dev-server.js wx", 10 | "start:wx": "npm run dev:wx", 11 | "build:wx": "node build/build.js wx", 12 | "dev:swan": "node build/dev-server.js swan", 13 | "start:swan": "npm run dev:swan", 14 | "build:swan": "node build/build.js swan", 15 | "dev:tt": "node build/dev-server.js tt", 16 | "start:tt": "npm run dev:tt", 17 | "build:tt": "node build/build.js tt", 18 | "dev:my": "node build/dev-server.js my", 19 | "start:my": "npm run dev:my", 20 | "build:my": "node build/build.js my", 21 | "dev": "node build/dev-server.js wx", 22 | "start": "npm run dev", 23 | "build": "node build/build.js wx", 24 | "lint": "eslint --ext .js,.vue src" 25 | }, 26 | "dependencies": { 27 | "flyio": "^0.6.14", 28 | "moment": "^2.24.0", 29 | "mpvue": "^2.0.0", 30 | "vuex": "^3.0.1" 31 | }, 32 | "devDependencies": { 33 | "babel-core": "^6.22.1", 34 | "babel-eslint": "^8.2.3", 35 | "babel-loader": "^7.1.1", 36 | "babel-plugin-transform-runtime": "^6.22.0", 37 | "babel-preset-env": "^1.3.2", 38 | "babel-preset-stage-2": "^6.22.0", 39 | "babel-register": "^6.22.0", 40 | "chalk": "^2.4.0", 41 | "connect-history-api-fallback": "^1.3.0", 42 | "copy-webpack-plugin": "^4.5.1", 43 | "css-loader": "^0.28.11", 44 | "cssnano": "^3.10.0", 45 | "eslint": "^4.19.1", 46 | "eslint-config-standard": "^11.0.0", 47 | "eslint-friendly-formatter": "^4.0.1", 48 | "eslint-loader": "^2.0.0", 49 | "eslint-plugin-html": "^4.0.3", 50 | "eslint-plugin-import": "^2.11.0", 51 | "eslint-plugin-node": "^6.0.1", 52 | "eslint-plugin-promise": "^3.4.0", 53 | "eslint-plugin-standard": "^3.0.1", 54 | "eventsource-polyfill": "^0.9.6", 55 | "express": "^4.16.3", 56 | "extract-text-webpack-plugin": "^3.0.2", 57 | "file-loader": "^1.1.11", 58 | "friendly-errors-webpack-plugin": "^1.7.0", 59 | "glob": "^7.1.2", 60 | "html-webpack-plugin": "^3.2.0", 61 | "http-proxy-middleware": "^0.18.0", 62 | "mkdirp": "^0.5.1", 63 | "mpvue-loader": "^2.0.0", 64 | "mpvue-template-compiler": "^2.0.0", 65 | "mpvue-webpack-target": "^1.0.3", 66 | "node-sass": "^4.11.0", 67 | "optimize-css-assets-webpack-plugin": "^3.2.0", 68 | "ora": "^2.0.0", 69 | "portfinder": "^1.0.13", 70 | "postcss-loader": "^2.1.4", 71 | "postcss-mpvue-wxss": "^1.0.0", 72 | "prettier": "~1.12.1", 73 | "px2rpx-loader": "^0.1.10", 74 | "relative": "^3.0.2", 75 | "rimraf": "^2.6.0", 76 | "sass-loader": "^7.1.0", 77 | "semver": "^5.3.0", 78 | "shelljs": "^0.8.1", 79 | "uglifyjs-webpack-plugin": "^1.2.5", 80 | "url-loader": "^1.0.1", 81 | "vue-style-loader": "^4.1.0", 82 | "webpack": "^3.11.0", 83 | "webpack-bundle-analyzer": "^2.2.1", 84 | "webpack-dev-middleware-hard-disk": "^1.12.0", 85 | "webpack-merge": "^4.1.0", 86 | "webpack-mpvue-asset-plugin": "^2.0.0", 87 | "webpack-mpvue-vendor-plugin": "^2.0.0" 88 | }, 89 | "engines": { 90 | "node": ">= 4.0.0", 91 | "npm": ">= 3.0.0" 92 | }, 93 | "browserslist": [ 94 | "> 1%", 95 | "last 2 versions", 96 | "not ie <= 8" 97 | ] 98 | } 99 | -------------------------------------------------------------------------------- /OneSideProgram/build/utils.js: -------------------------------------------------------------------------------- 1 | var path = require('path') 2 | var fs = require('fs') 3 | var config = require('../config') 4 | var ExtractTextPlugin = require('extract-text-webpack-plugin') 5 | var mpvueInfo = require('../node_modules/mpvue/package.json') 6 | var packageInfo = require('../package.json') 7 | var mkdirp = require('mkdirp') 8 | 9 | exports.assetsPath = function (_path) { 10 | var assetsSubDirectory = process.env.NODE_ENV === 'production' 11 | ? config.build.assetsSubDirectory 12 | : config.dev.assetsSubDirectory 13 | return path.posix.join(assetsSubDirectory, _path) 14 | } 15 | 16 | exports.cssLoaders = function (options) { 17 | options = options || {} 18 | 19 | var cssLoader = { 20 | loader: 'css-loader', 21 | options: { 22 | minimize: process.env.NODE_ENV === 'production', 23 | sourceMap: options.sourceMap 24 | } 25 | } 26 | 27 | var postcssLoader = { 28 | loader: 'postcss-loader', 29 | options: { 30 | sourceMap: true 31 | } 32 | } 33 | 34 | var px2rpxLoader = { 35 | loader: 'px2rpx-loader', 36 | options: { 37 | baseDpr: 1, 38 | rpxUnit: 0.5 39 | } 40 | } 41 | 42 | // generate loader string to be used with extract text plugin 43 | function generateLoaders (loader, loaderOptions) { 44 | var loaders = [cssLoader, px2rpxLoader, postcssLoader] 45 | if (loader) { 46 | loaders.push({ 47 | loader: loader + '-loader', 48 | options: Object.assign({}, loaderOptions, { 49 | sourceMap: options.sourceMap 50 | }) 51 | }) 52 | } 53 | 54 | // Extract CSS when that option is specified 55 | // (which is the case during production build) 56 | if (options.extract) { 57 | return ExtractTextPlugin.extract({ 58 | use: loaders, 59 | fallback: 'vue-style-loader' 60 | }) 61 | } else { 62 | return ['vue-style-loader'].concat(loaders) 63 | } 64 | } 65 | 66 | // https://vue-loader.vuejs.org/en/configurations/extract-css.html 67 | return { 68 | css: generateLoaders(), 69 | wxss: generateLoaders(), 70 | postcss: generateLoaders(), 71 | less: generateLoaders('less'), 72 | sass: generateLoaders('sass', { indentedSyntax: true }), 73 | scss: generateLoaders('sass'), 74 | stylus: generateLoaders('stylus'), 75 | styl: generateLoaders('stylus') 76 | } 77 | } 78 | 79 | // Generate loaders for standalone style files (outside of .vue) 80 | exports.styleLoaders = function (options) { 81 | var output = [] 82 | var loaders = exports.cssLoaders(options) 83 | for (var extension in loaders) { 84 | var loader = loaders[extension] 85 | output.push({ 86 | test: new RegExp('\\.' + extension + '$'), 87 | use: loader 88 | }) 89 | } 90 | return output 91 | } 92 | 93 | const writeFile = async (filePath, content) => { 94 | let dir = path.dirname(filePath) 95 | let exist = fs.existsSync(dir) 96 | if (!exist) { 97 | await mkdirp(dir) 98 | } 99 | await fs.writeFileSync(filePath, content, 'utf8') 100 | } 101 | 102 | exports.writeFrameworkinfo = function () { 103 | var buildInfo = { 104 | 'toolName': mpvueInfo.name, 105 | 'toolFrameWorkVersion': mpvueInfo.version, 106 | 'toolCliVersion': packageInfo.mpvueTemplateProjectVersion || '', 107 | 'createTime': Date.now() 108 | } 109 | 110 | var content = JSON.stringify(buildInfo) 111 | var fileName = '.frameworkinfo' 112 | var rootDir = path.resolve(__dirname, `../${fileName}`) 113 | var distDir = path.resolve(config.build.assetsRoot, `./${fileName}`) 114 | 115 | writeFile(rootDir, content) 116 | writeFile(distDir, content) 117 | } 118 | -------------------------------------------------------------------------------- /OneSideProgram/src/pages/index/index.vue: -------------------------------------------------------------------------------- 1 | 32 | 33 | 106 | 107 | 154 | -------------------------------------------------------------------------------- /OneSideProgram/build/dev-server.js: -------------------------------------------------------------------------------- 1 | require('./check-versions')() 2 | 3 | process.env.PLATFORM = process.argv[process.argv.length - 1] || 'wx' 4 | var config = require('../config') 5 | if (!process.env.NODE_ENV) { 6 | process.env.NODE_ENV = JSON.parse(config.dev.env.NODE_ENV) 7 | } 8 | 9 | // var opn = require('opn') 10 | var path = require('path') 11 | var express = require('express') 12 | var webpack = require('webpack') 13 | var proxyMiddleware = require('http-proxy-middleware') 14 | var portfinder = require('portfinder') 15 | var webpackConfig = require('./webpack.dev.conf') 16 | var utils = require('./utils') 17 | 18 | // default port where dev server listens for incoming traffic 19 | var port = process.env.PORT || config.dev.port 20 | // automatically open browser, if not set will be false 21 | var autoOpenBrowser = !!config.dev.autoOpenBrowser 22 | // Define HTTP proxies to your custom API backend 23 | // https://github.com/chimurai/http-proxy-middleware 24 | var proxyTable = config.dev.proxyTable 25 | 26 | var app = express() 27 | var compiler = webpack(webpackConfig) 28 | if (process.env.PLATFORM === 'swan') { 29 | utils.writeFrameworkinfo() 30 | } 31 | 32 | // var devMiddleware = require('webpack-dev-middleware')(compiler, { 33 | // publicPath: webpackConfig.output.publicPath, 34 | // quiet: true 35 | // }) 36 | 37 | // var hotMiddleware = require('webpack-hot-middleware')(compiler, { 38 | // log: false, 39 | // heartbeat: 2000 40 | // }) 41 | // force page reload when html-webpack-plugin template changes 42 | // compiler.plugin('compilation', function (compilation) { 43 | // compilation.plugin('html-webpack-plugin-after-emit', function (data, cb) { 44 | // hotMiddleware.publish({ action: 'reload' }) 45 | // cb() 46 | // }) 47 | // }) 48 | 49 | // proxy api requests 50 | Object.keys(proxyTable).forEach(function (context) { 51 | var options = proxyTable[context] 52 | if (typeof options === 'string') { 53 | options = { target: options } 54 | } 55 | app.use(proxyMiddleware(options.filter || context, options)) 56 | }) 57 | 58 | // handle fallback for HTML5 history API 59 | app.use(require('connect-history-api-fallback')()) 60 | 61 | // serve webpack bundle output 62 | // app.use(devMiddleware) 63 | 64 | // enable hot-reload and state-preserving 65 | // compilation error display 66 | // app.use(hotMiddleware) 67 | 68 | // serve pure static assets 69 | var staticPath = path.posix.join(config.dev.assetsPublicPath, config.dev.assetsSubDirectory) 70 | app.use(staticPath, express.static('./static')) 71 | 72 | // var uri = 'http://localhost:' + port 73 | 74 | var _resolve 75 | var readyPromise = new Promise(resolve => { 76 | _resolve = resolve 77 | }) 78 | 79 | // console.log('> Starting dev server...') 80 | // devMiddleware.waitUntilValid(() => { 81 | // console.log('> Listening at ' + uri + '\n') 82 | // // when env is testing, don't need open it 83 | // if (autoOpenBrowser && process.env.NODE_ENV !== 'testing') { 84 | // opn(uri) 85 | // } 86 | // _resolve() 87 | // }) 88 | 89 | module.exports = new Promise((resolve, reject) => { 90 | portfinder.basePort = port 91 | portfinder.getPortPromise() 92 | .then(newPort => { 93 | if (port !== newPort) { 94 | console.log(`${port}端口被占用,开启新端口${newPort}`) 95 | } 96 | var server = app.listen(newPort, 'localhost') 97 | // for 小程序的文件保存机制 98 | require('webpack-dev-middleware-hard-disk')(compiler, { 99 | publicPath: webpackConfig.output.publicPath, 100 | quiet: true 101 | }) 102 | resolve({ 103 | ready: readyPromise, 104 | close: () => { 105 | server.close() 106 | } 107 | }) 108 | }).catch(error => { 109 | console.log('没有找到空闲端口,请打开任务管理器杀死进程端口再试', error) 110 | }) 111 | }) 112 | -------------------------------------------------------------------------------- /OneSideProgram/src/pages/add/index.vue: -------------------------------------------------------------------------------- 1 |