├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .postcssrc.js ├── README.gif ├── README.md ├── build ├── build.js ├── check-versions.js ├── dev-client.js ├── dev-server.js ├── utils.js ├── vue-loader.conf.js ├── webpack.base.conf.js ├── webpack.dev.conf.js └── webpack.prod.conf.js ├── config ├── dev.env.js ├── index.js └── prod.env.js ├── index.html ├── package-lock.json ├── package.json ├── project.config.json ├── src ├── App.vue ├── components │ ├── list │ │ └── list.vue │ └── loading │ │ └── loading.vue ├── main.js ├── pages │ ├── advertisement │ │ ├── index.vue │ │ └── main.js │ ├── detail │ │ ├── index.vue │ │ └── main.js │ ├── index │ │ ├── index.vue │ │ └── main.js │ ├── me │ │ ├── index.vue │ │ └── main.js │ ├── resume │ │ ├── index.vue │ │ └── main.js │ ├── schedule │ │ ├── index.vue │ │ └── main.js │ └── search │ │ ├── index.vue │ │ └── main.js └── utils │ ├── api │ └── index.js │ └── index.js └── static ├── .gitkeep ├── font ├── iconfont.eot ├── iconfont.svg ├── iconfont.ttf └── iconfont.woff ├── images ├── dingdan.png ├── huancun.png ├── icon-home1.png ├── icon-home2.png ├── icon-me1.png ├── icon-me2.png ├── icon-resume1.png ├── icon-resume2.png ├── jinzhan.png ├── mail.png ├── more.png ├── pen.png ├── phone.png ├── plus.png ├── quxiaomoren.png ├── shuaxinjianli.png ├── shuxinjianli.png ├── up.png └── zhidingjianli.png └── scss ├── base.scss └── iconfont.scss /.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 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | build/*.js 2 | config/*.js 3 | -------------------------------------------------------------------------------- /.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 | getApp: true, 34 | getPage: true, 35 | requirePlugin: true 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Editor directories and files 9 | .idea 10 | *.suo 11 | *.ntvs* 12 | *.njsproj 13 | *.sln 14 | -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- 1 | // https://github.com/michael-ciniawsky/postcss-load-config 2 | 3 | module.exports = { 4 | "plugins": { 5 | "postcss-mpvue-wxss": {} 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /README.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weikx/ZPIN/688e929fa10278ccb3938d86f65b1a0cd1f33f1b/README.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ZPIN 2 | 3 | > 一个使用 [mpvue](https://github.com/Meituan-Dianping/mpvue) 搭建的智联招聘微信小程序 4 | 5 | ![README](./README.gif) 6 | ## 功能 7 | - [x] **首页展示** 8 | - [x] **详情展示** 9 | - [x] **我的简历** 10 | - [x] **搜索职位** 11 | - [x] **求职进展** 12 | - [ ] **我的订单** 13 | - [ ] **编辑简历** 14 | - [ ] **地图定位** 15 | 16 | ##目录结构 17 | ``` README 18 | ├─── README.md // README 19 | ├─── index.html // 入口页面 20 | ├─── build // 项目构建脚本 21 | ├─── config // 配置目录 22 | ├─── package.json // 配置文件 23 | ├─── static // 静态资源 24 | │ ├── font // 字体文件 25 | │ ├── images // 图片资源 26 | │ ├── scss // 公共样式 27 | └─── src // 主要代码 28 | ├─── components // 公共组件 29 | │ ├─── list // 公共列表组件 30 | │ └─── loading // 公共加载中组件 31 | ├─── pages // 项目页面 32 | │ ├─── advertisement // 广告页面 33 | │ ├─── detail // 公司详情 34 | │ ├─── index // 主页 35 | │ ├─── me // 我的 36 | │ ├─── resume // 简历 37 | │ ├─── schedule // 投递记录 38 | │ └─── search // 搜索职位 39 | └─── utils // 公用文件 40 | └─── api // 接口请求 41 | ``` 42 | ## Build Setup 43 | 44 | ``` bash 45 | cd ZPIN 46 | 47 | npm install 48 | 49 | npm run dev 50 | 51 | # 使用微信开发者工具预览 52 | ``` 53 | 54 | -------------------------------------------------------------------------------- /build/build.js: -------------------------------------------------------------------------------- 1 | require('./check-versions')() 2 | 3 | process.env.NODE_ENV = 'production' 4 | 5 | var ora = require('ora') 6 | var rm = require('rimraf') 7 | var path = require('path') 8 | var chalk = require('chalk') 9 | var webpack = require('webpack') 10 | var config = require('../config') 11 | var webpackConfig = require('./webpack.prod.conf') 12 | 13 | var spinner = ora('building for production...') 14 | spinner.start() 15 | 16 | rm(path.join(config.build.assetsRoot, '*'), err => { 17 | if (err) throw err 18 | webpack(webpackConfig, function (err, stats) { 19 | spinner.stop() 20 | if (err) throw err 21 | process.stdout.write(stats.toString({ 22 | colors: true, 23 | modules: false, 24 | children: false, 25 | chunks: false, 26 | chunkModules: false 27 | }) + '\n\n') 28 | 29 | if (stats.hasErrors()) { 30 | console.log(chalk.red(' Build failed with errors.\n')) 31 | process.exit(1) 32 | } 33 | 34 | console.log(chalk.cyan(' Build complete.\n')) 35 | console.log(chalk.yellow( 36 | ' Tip: built files are meant to be served over an HTTP server.\n' + 37 | ' Opening index.html over file:// won\'t work.\n' 38 | )) 39 | }) 40 | }) 41 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /build/dev-server.js: -------------------------------------------------------------------------------- 1 | require('./check-versions')() 2 | 3 | var config = require('../config') 4 | if (!process.env.NODE_ENV) { 5 | process.env.NODE_ENV = JSON.parse(config.dev.env.NODE_ENV) 6 | } 7 | 8 | // var opn = require('opn') 9 | var path = require('path') 10 | var express = require('express') 11 | var webpack = require('webpack') 12 | var proxyMiddleware = require('http-proxy-middleware') 13 | var portfinder = require('portfinder') 14 | var webpackConfig = require('./webpack.dev.conf') 15 | 16 | // default port where dev server listens for incoming traffic 17 | var port = process.env.PORT || config.dev.port 18 | // automatically open browser, if not set will be false 19 | var autoOpenBrowser = !!config.dev.autoOpenBrowser 20 | // Define HTTP proxies to your custom API backend 21 | // https://github.com/chimurai/http-proxy-middleware 22 | var proxyTable = config.dev.proxyTable 23 | 24 | var app = express() 25 | var compiler = webpack(webpackConfig) 26 | 27 | // var devMiddleware = require('webpack-dev-middleware')(compiler, { 28 | // publicPath: webpackConfig.output.publicPath, 29 | // quiet: true 30 | // }) 31 | 32 | // var hotMiddleware = require('webpack-hot-middleware')(compiler, { 33 | // log: false, 34 | // heartbeat: 2000 35 | // }) 36 | // force page reload when html-webpack-plugin template changes 37 | // compiler.plugin('compilation', function (compilation) { 38 | // compilation.plugin('html-webpack-plugin-after-emit', function (data, cb) { 39 | // hotMiddleware.publish({ action: 'reload' }) 40 | // cb() 41 | // }) 42 | // }) 43 | 44 | // proxy api requests 45 | Object.keys(proxyTable).forEach(function (context) { 46 | var options = proxyTable[context] 47 | if (typeof options === 'string') { 48 | options = { target: options } 49 | } 50 | app.use(proxyMiddleware(options.filter || context, options)) 51 | }) 52 | 53 | // handle fallback for HTML5 history API 54 | app.use(require('connect-history-api-fallback')()) 55 | 56 | // serve webpack bundle output 57 | // app.use(devMiddleware) 58 | 59 | // enable hot-reload and state-preserving 60 | // compilation error display 61 | // app.use(hotMiddleware) 62 | 63 | // serve pure static assets 64 | var staticPath = path.posix.join(config.dev.assetsPublicPath, config.dev.assetsSubDirectory) 65 | app.use(staticPath, express.static('./static')) 66 | 67 | // var uri = 'http://localhost:' + port 68 | 69 | var _resolve 70 | var readyPromise = new Promise(resolve => { 71 | _resolve = resolve 72 | }) 73 | 74 | // console.log('> Starting dev server...') 75 | // devMiddleware.waitUntilValid(() => { 76 | // console.log('> Listening at ' + uri + '\n') 77 | // // when env is testing, don't need open it 78 | // if (autoOpenBrowser && process.env.NODE_ENV !== 'testing') { 79 | // opn(uri) 80 | // } 81 | // _resolve() 82 | // }) 83 | 84 | module.exports = new Promise((resolve, reject) => { 85 | portfinder.basePort = port 86 | portfinder.getPortPromise() 87 | .then(newPort => { 88 | if (port !== newPort) { 89 | console.log(`${port}端口被占用,开启新端口${newPort}`) 90 | } 91 | var server = app.listen(newPort, 'localhost') 92 | // for 小程序的文件保存机制 93 | require('webpack-dev-middleware-hard-disk')(compiler, { 94 | publicPath: webpackConfig.output.publicPath, 95 | quiet: true 96 | }) 97 | resolve({ 98 | ready: readyPromise, 99 | close: () => { 100 | server.close() 101 | } 102 | }) 103 | }).catch(error => { 104 | console.log('没有找到空闲端口,请打开任务管理器杀死进程端口再试', error) 105 | }) 106 | }) 107 | -------------------------------------------------------------------------------- /build/utils.js: -------------------------------------------------------------------------------- 1 | var path = require('path') 2 | var config = require('../config') 3 | var ExtractTextPlugin = require('extract-text-webpack-plugin') 4 | 5 | exports.assetsPath = function (_path) { 6 | var assetsSubDirectory = process.env.NODE_ENV === 'production' 7 | ? config.build.assetsSubDirectory 8 | : config.dev.assetsSubDirectory 9 | return path.posix.join(assetsSubDirectory, _path) 10 | } 11 | 12 | exports.cssLoaders = function (options) { 13 | options = options || {} 14 | 15 | var cssLoader = { 16 | loader: 'css-loader', 17 | options: { 18 | minimize: process.env.NODE_ENV === 'production', 19 | sourceMap: options.sourceMap 20 | } 21 | } 22 | 23 | var postcssLoader = { 24 | loader: 'postcss-loader', 25 | options: { 26 | sourceMap: true 27 | } 28 | } 29 | 30 | var px2rpxLoader = { 31 | loader: 'px2rpx-loader', 32 | options: { 33 | baseDpr: 1, 34 | rpxUnit: 0.5 35 | } 36 | } 37 | 38 | // generate loader string to be used with extract text plugin 39 | function generateLoaders (loader, loaderOptions) { 40 | var loaders = [cssLoader, px2rpxLoader, postcssLoader] 41 | if (loader) { 42 | loaders.push({ 43 | loader: loader + '-loader', 44 | options: Object.assign({}, loaderOptions, { 45 | sourceMap: options.sourceMap 46 | }) 47 | }) 48 | } 49 | 50 | // Extract CSS when that option is specified 51 | // (which is the case during production build) 52 | if (options.extract) { 53 | return ExtractTextPlugin.extract({ 54 | use: loaders, 55 | fallback: 'vue-style-loader' 56 | }) 57 | } else { 58 | return ['vue-style-loader'].concat(loaders) 59 | } 60 | } 61 | 62 | // https://vue-loader.vuejs.org/en/configurations/extract-css.html 63 | return { 64 | css: generateLoaders(), 65 | wxss: generateLoaders(), 66 | postcss: generateLoaders(), 67 | less: generateLoaders('less'), 68 | sass: generateLoaders('sass', { indentedSyntax: true }), 69 | scss: generateLoaders('sass'), 70 | stylus: generateLoaders('stylus'), 71 | styl: generateLoaders('stylus') 72 | } 73 | } 74 | 75 | // Generate loaders for standalone style files (outside of .vue) 76 | exports.styleLoaders = function (options) { 77 | var output = [] 78 | var loaders = exports.cssLoaders(options) 79 | for (var extension in loaders) { 80 | var loader = loaders[extension] 81 | output.push({ 82 | test: new RegExp('\\.' + extension + '$'), 83 | use: loader 84 | }) 85 | } 86 | return output 87 | } 88 | -------------------------------------------------------------------------------- /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 | } 21 | -------------------------------------------------------------------------------- /build/webpack.base.conf.js: -------------------------------------------------------------------------------- 1 | var path = require('path') 2 | var fs = require('fs') 3 | var utils = require('./utils') 4 | var config = require('../config') 5 | var vueLoaderConfig = require('./vue-loader.conf') 6 | var MpvuePlugin = require('webpack-mpvue-asset-plugin') 7 | var glob = require('glob') 8 | 9 | function resolve (dir) { 10 | return path.join(__dirname, '..', dir) 11 | } 12 | 13 | function getEntry (rootSrc, pattern) { 14 | var files = glob.sync(path.resolve(rootSrc, pattern)) 15 | return files.reduce((res, file) => { 16 | var info = path.parse(file) 17 | var key = info.dir.slice(rootSrc.length + 1) + '/' + info.name 18 | res[key] = path.resolve(file) 19 | return res 20 | }, {}) 21 | } 22 | 23 | const appEntry = { app: resolve('./src/main.js') } 24 | const pagesEntry = getEntry(resolve('./src'), 'pages/**/main.js') 25 | const entry = Object.assign({}, appEntry, pagesEntry) 26 | 27 | module.exports = { 28 | // 如果要自定义生成的 dist 目录里面的文件路径, 29 | // 可以将 entry 写成 {'toPath': 'fromPath'} 的形式, 30 | // toPath 为相对于 dist 的路径, 例:index/demo,则生成的文件地址为 dist/index/demo.js 31 | entry, 32 | target: require('mpvue-webpack-target'), 33 | output: { 34 | path: config.build.assetsRoot, 35 | filename: '[name].js', 36 | publicPath: process.env.NODE_ENV === 'production' 37 | ? config.build.assetsPublicPath 38 | : config.dev.assetsPublicPath 39 | }, 40 | resolve: { 41 | extensions: ['.js', '.vue', '.json'], 42 | alias: { 43 | 'vue': 'mpvue', 44 | '@': resolve('src') 45 | }, 46 | symlinks: false, 47 | aliasFields: ['mpvue', 'weapp', 'browser'], 48 | mainFields: ['browser', 'module', 'main'] 49 | }, 50 | module: { 51 | rules: [ 52 | { 53 | test: /\.(js|vue)$/, 54 | loader: 'eslint-loader', 55 | enforce: 'pre', 56 | include: [resolve('src'), resolve('test')], 57 | options: { 58 | formatter: require('eslint-friendly-formatter') 59 | } 60 | }, 61 | { 62 | test: /\.vue$/, 63 | loader: 'mpvue-loader', 64 | options: vueLoaderConfig 65 | }, 66 | { 67 | test: /\.js$/, 68 | include: [resolve('src'), resolve('test')], 69 | use: [ 70 | 'babel-loader', 71 | { 72 | loader: 'mpvue-loader', 73 | options: { 74 | checkMPEntry: true 75 | } 76 | }, 77 | ] 78 | }, 79 | { 80 | test: /\.(png|jpe?g|gif|svg)(\?.*)?$/, 81 | loader: 'url-loader', 82 | options: { 83 | limit: 10000, 84 | name: utils.assetsPath('img/[name].[ext]') 85 | } 86 | }, 87 | { 88 | test: /\.(mp4|webm|ogg|mp3|wav|flac|aac)(\?.*)?$/, 89 | loader: 'url-loader', 90 | options: { 91 | limit: 10000, 92 | name: utils.assetsPath('media/[name]].[ext]') 93 | } 94 | }, 95 | { 96 | test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/, 97 | loader: 'url-loader', 98 | options: { 99 | limit: 10000, 100 | name: utils.assetsPath('fonts/[name].[ext]') 101 | } 102 | } 103 | ] 104 | }, 105 | plugins: [ 106 | new MpvuePlugin() 107 | ] 108 | } 109 | -------------------------------------------------------------------------------- /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 | 9 | // copy from ./webpack.prod.conf.js 10 | var path = require('path') 11 | var ExtractTextPlugin = require('extract-text-webpack-plugin') 12 | var CopyWebpackPlugin = require('copy-webpack-plugin') 13 | var OptimizeCSSPlugin = require('optimize-css-assets-webpack-plugin') 14 | 15 | // add hot-reload related code to entry chunks 16 | // Object.keys(baseWebpackConfig.entry).forEach(function (name) { 17 | // baseWebpackConfig.entry[name] = ['./build/dev-client'].concat(baseWebpackConfig.entry[name]) 18 | // }) 19 | 20 | module.exports = merge(baseWebpackConfig, { 21 | module: { 22 | rules: utils.styleLoaders({ 23 | sourceMap: config.dev.cssSourceMap, 24 | extract: true 25 | }) 26 | }, 27 | // cheap-module-eval-source-map is faster for development 28 | // devtool: '#cheap-module-eval-source-map', 29 | devtool: '#source-map', 30 | output: { 31 | path: config.build.assetsRoot, 32 | // filename: utils.assetsPath('js/[name].[chunkhash].js'), 33 | // chunkFilename: utils.assetsPath('js/[id].[chunkhash].js') 34 | filename: utils.assetsPath('js/[name].js'), 35 | chunkFilename: utils.assetsPath('js/[id].js') 36 | }, 37 | plugins: [ 38 | new webpack.DefinePlugin({ 39 | 'process.env': config.dev.env 40 | }), 41 | 42 | // copy from ./webpack.prod.conf.js 43 | // extract css into its own file 44 | new ExtractTextPlugin({ 45 | // filename: utils.assetsPath('css/[name].[contenthash].css') 46 | filename: utils.assetsPath('css/[name].wxss') 47 | }), 48 | // Compress extracted CSS. We are using this plugin so that possible 49 | // duplicated CSS from different components can be deduped. 50 | new OptimizeCSSPlugin({ 51 | cssProcessorOptions: { 52 | safe: true 53 | } 54 | }), 55 | new webpack.optimize.CommonsChunkPlugin({ 56 | name: 'vendor', 57 | minChunks: function (module, count) { 58 | // any required modules inside node_modules are extracted to vendor 59 | return ( 60 | module.resource && 61 | /\.js$/.test(module.resource) && 62 | module.resource.indexOf('node_modules') >= 0 63 | ) || count > 1 64 | } 65 | }), 66 | new webpack.optimize.CommonsChunkPlugin({ 67 | name: 'manifest', 68 | chunks: ['vendor'] 69 | }), 70 | // copy custom static assets 71 | new CopyWebpackPlugin([ 72 | { 73 | from: path.resolve(__dirname, '../static'), 74 | to: config.build.assetsSubDirectory, 75 | ignore: ['.*'] 76 | } 77 | ]), 78 | 79 | // https://github.com/glenjamin/webpack-hot-middleware#installation--usage 80 | // new webpack.HotModuleReplacementPlugin(), 81 | new webpack.NoEmitOnErrorsPlugin(), 82 | // https://github.com/ampedandwired/html-webpack-plugin 83 | // new HtmlWebpackPlugin({ 84 | // filename: 'index.html', 85 | // template: 'index.html', 86 | // inject: true 87 | // }), 88 | new FriendlyErrorsPlugin() 89 | ] 90 | }) 91 | -------------------------------------------------------------------------------- /build/webpack.prod.conf.js: -------------------------------------------------------------------------------- 1 | var path = require('path') 2 | var utils = require('./utils') 3 | var webpack = require('webpack') 4 | var config = require('../config') 5 | var merge = require('webpack-merge') 6 | var baseWebpackConfig = require('./webpack.base.conf') 7 | var UglifyJsPlugin = require('uglifyjs-webpack-plugin') 8 | var CopyWebpackPlugin = require('copy-webpack-plugin') 9 | // var HtmlWebpackPlugin = require('html-webpack-plugin') 10 | var ExtractTextPlugin = require('extract-text-webpack-plugin') 11 | var OptimizeCSSPlugin = require('optimize-css-assets-webpack-plugin') 12 | 13 | var env = config.build.env 14 | 15 | var webpackConfig = merge(baseWebpackConfig, { 16 | module: { 17 | rules: utils.styleLoaders({ 18 | sourceMap: config.build.productionSourceMap, 19 | extract: true 20 | }) 21 | }, 22 | devtool: config.build.productionSourceMap ? '#source-map' : false, 23 | output: { 24 | path: config.build.assetsRoot, 25 | // filename: utils.assetsPath('js/[name].[chunkhash].js'), 26 | // chunkFilename: utils.assetsPath('js/[id].[chunkhash].js') 27 | filename: utils.assetsPath('js/[name].js'), 28 | chunkFilename: utils.assetsPath('js/[id].js') 29 | }, 30 | plugins: [ 31 | // http://vuejs.github.io/vue-loader/en/workflow/production.html 32 | new webpack.DefinePlugin({ 33 | 'process.env': env 34 | }), 35 | new UglifyJsPlugin({ 36 | sourceMap: true 37 | }), 38 | // extract css into its own file 39 | new ExtractTextPlugin({ 40 | // filename: utils.assetsPath('css/[name].[contenthash].css') 41 | filename: utils.assetsPath('css/[name].wxss') 42 | }), 43 | // Compress extracted CSS. We are using this plugin so that possible 44 | // duplicated CSS from different components can be deduped. 45 | new OptimizeCSSPlugin({ 46 | cssProcessorOptions: { 47 | safe: true 48 | } 49 | }), 50 | // generate dist index.html with correct asset hash for caching. 51 | // you can customize output by editing /index.html 52 | // see https://github.com/ampedandwired/html-webpack-plugin 53 | // new HtmlWebpackPlugin({ 54 | // filename: config.build.index, 55 | // template: 'index.html', 56 | // inject: true, 57 | // minify: { 58 | // removeComments: true, 59 | // collapseWhitespace: true, 60 | // removeAttributeQuotes: true 61 | // // more options: 62 | // // https://github.com/kangax/html-minifier#options-quick-reference 63 | // }, 64 | // // necessary to consistently work with multiple chunks via CommonsChunkPlugin 65 | // chunksSortMode: 'dependency' 66 | // }), 67 | // keep module.id stable when vender modules does not change 68 | new webpack.HashedModuleIdsPlugin(), 69 | // split vendor js into its own file 70 | new webpack.optimize.CommonsChunkPlugin({ 71 | name: 'vendor', 72 | minChunks: function (module, count) { 73 | // any required modules inside node_modules are extracted to vendor 74 | return ( 75 | module.resource && 76 | /\.js$/.test(module.resource) && 77 | module.resource.indexOf('node_modules') >= 0 78 | ) || count > 1 79 | } 80 | }), 81 | // extract webpack runtime and module manifest to its own file in order to 82 | // prevent vendor hash from being updated whenever app bundle is updated 83 | new webpack.optimize.CommonsChunkPlugin({ 84 | name: 'manifest', 85 | chunks: ['vendor'] 86 | }), 87 | // copy custom static assets 88 | new CopyWebpackPlugin([ 89 | { 90 | from: path.resolve(__dirname, '../static'), 91 | to: config.build.assetsSubDirectory, 92 | ignore: ['.*'] 93 | } 94 | ]) 95 | ] 96 | }) 97 | 98 | // if (config.build.productionGzip) { 99 | // var CompressionWebpackPlugin = require('compression-webpack-plugin') 100 | 101 | // webpackConfig.plugins.push( 102 | // new CompressionWebpackPlugin({ 103 | // asset: '[path].gz[query]', 104 | // algorithm: 'gzip', 105 | // test: new RegExp( 106 | // '\\.(' + 107 | // config.build.productionGzipExtensions.join('|') + 108 | // ')$' 109 | // ), 110 | // threshold: 10240, 111 | // minRatio: 0.8 112 | // }) 113 | // ) 114 | // } 115 | 116 | if (config.build.bundleAnalyzerReport) { 117 | var BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin 118 | webpackConfig.plugins.push(new BundleAnalyzerPlugin()) 119 | } 120 | 121 | module.exports = webpackConfig 122 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- 1 | // see http://vuejs-templates.github.io/webpack for documentation. 2 | var path = require('path') 3 | 4 | module.exports = { 5 | build: { 6 | env: require('./prod.env'), 7 | index: path.resolve(__dirname, '../dist/index.html'), 8 | assetsRoot: path.resolve(__dirname, '../dist'), 9 | assetsSubDirectory: 'static', 10 | assetsPublicPath: '/', 11 | productionSourceMap: false, 12 | // Gzip off by default as many popular static hosts such as 13 | // Surge or Netlify already gzip all static assets for you. 14 | // Before setting to `true`, make sure to: 15 | // npm install --save-dev compression-webpack-plugin 16 | productionGzip: false, 17 | productionGzipExtensions: ['js', 'css'], 18 | // Run the build command with an extra argument to 19 | // View the bundle analyzer report after build finishes: 20 | // `npm run build --report` 21 | // Set to `true` or `false` to always turn it on or off 22 | bundleAnalyzerReport: process.env.npm_config_report 23 | }, 24 | dev: { 25 | env: require('./dev.env'), 26 | port: 8080, 27 | // 在小程序开发者工具中不需要自动打开浏览器 28 | autoOpenBrowser: false, 29 | assetsSubDirectory: 'static', 30 | assetsPublicPath: '/', 31 | proxyTable: {}, 32 | // CSS Sourcemaps off by default because relative paths are "buggy" 33 | // with this option, according to the CSS-Loader README 34 | // (https://github.com/webpack/css-loader#sourcemaps) 35 | // In our experience, they generally work as expected, 36 | // just be aware of this issue when enabling this option. 37 | cssSourceMap: false 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | zpin 6 | 7 | 8 |
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "zpin", 3 | "version": "1.0.0", 4 | "description": "A Mpvue project", 5 | "author": "weikexin ", 6 | "private": true, 7 | "scripts": { 8 | "dev": "node build/dev-server.js", 9 | "start": "node build/dev-server.js", 10 | "build": "node build/build.js", 11 | "lint": "eslint --ext .js,.vue src" 12 | }, 13 | "dependencies": { 14 | "better-scroll": "^1.12.1", 15 | "mpvue": "^1.0.11" 16 | }, 17 | "devDependencies": { 18 | "babel-core": "^6.22.1", 19 | "babel-eslint": "^8.2.3", 20 | "babel-loader": "^7.1.1", 21 | "babel-plugin-transform-runtime": "^6.22.0", 22 | "babel-preset-env": "^1.3.2", 23 | "babel-preset-stage-2": "^6.22.0", 24 | "babel-register": "^6.22.0", 25 | "chalk": "^2.4.0", 26 | "connect-history-api-fallback": "^1.3.0", 27 | "copy-webpack-plugin": "^4.5.1", 28 | "css-loader": "^0.28.11", 29 | "cssnano": "^3.10.0", 30 | "eslint": "^4.19.1", 31 | "eslint-config-standard": "^11.0.0", 32 | "eslint-friendly-formatter": "^4.0.1", 33 | "eslint-loader": "^2.0.0", 34 | "eslint-plugin-html": "^4.0.3", 35 | "eslint-plugin-import": "^2.11.0", 36 | "eslint-plugin-node": "^6.0.1", 37 | "eslint-plugin-promise": "^3.4.0", 38 | "eslint-plugin-standard": "^3.0.1", 39 | "eventsource-polyfill": "^0.9.6", 40 | "express": "^4.16.3", 41 | "extract-text-webpack-plugin": "^3.0.2", 42 | "file-loader": "^1.1.11", 43 | "friendly-errors-webpack-plugin": "^1.7.0", 44 | "glob": "^7.1.2", 45 | "html-webpack-plugin": "^3.2.0", 46 | "http-proxy-middleware": "^0.18.0", 47 | "mpvue-loader": "^1.0.13", 48 | "mpvue-template-compiler": "^1.0.11", 49 | "mpvue-webpack-target": "^1.0.0", 50 | "node-sass": "^4.9.0", 51 | "optimize-css-assets-webpack-plugin": "^3.2.0", 52 | "ora": "^2.0.0", 53 | "portfinder": "^1.0.13", 54 | "postcss-loader": "^2.1.4", 55 | "postcss-mpvue-wxss": "^1.0.0", 56 | "prettier": "~1.12.1", 57 | "px2rpx-loader": "^0.1.10", 58 | "rimraf": "^2.6.0", 59 | "sass-loader": "^7.0.3", 60 | "semver": "^5.3.0", 61 | "shelljs": "^0.8.1", 62 | "uglifyjs-webpack-plugin": "^1.2.5", 63 | "url-loader": "^1.0.1", 64 | "vue-style-loader": "^4.1.0", 65 | "webpack": "^3.11.0", 66 | "webpack-bundle-analyzer": "^2.2.1", 67 | "webpack-dev-middleware-hard-disk": "^1.12.0", 68 | "webpack-merge": "^4.1.0", 69 | "webpack-mpvue-asset-plugin": "^0.0.2" 70 | }, 71 | "engines": { 72 | "node": ">= 4.0.0", 73 | "npm": ">= 3.0.0" 74 | }, 75 | "browserslist": [ 76 | "> 1%", 77 | "last 2 versions", 78 | "not ie <= 8" 79 | ] 80 | } 81 | -------------------------------------------------------------------------------- /project.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "项目配置文件。", 3 | "setting": { 4 | "urlCheck": true, 5 | "es6": false, 6 | "postcss": true, 7 | "minified": true, 8 | "newFeature": true 9 | }, 10 | "miniprogramRoot": "./dist/", 11 | "compileType": "miniprogram", 12 | "appid": "wx207cf75424861a86", 13 | "projectname": "zpin", 14 | "condition": { 15 | "search": { 16 | "current": -1, 17 | "list": [] 18 | }, 19 | "conversation": { 20 | "current": -1, 21 | "list": [] 22 | }, 23 | "game": { 24 | "currentL": -1, 25 | "list": [] 26 | }, 27 | "miniprogram": { 28 | "current": -1, 29 | "list": [] 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- 1 | 7 | 8 | 18 | -------------------------------------------------------------------------------- /src/components/list/list.vue: -------------------------------------------------------------------------------- 1 | 27 | 28 | 55 | 56 | 94 | -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './App' 3 | import '../static/scss/iconfont.scss' 4 | Vue.config.productionTip = false 5 | 6 | App.mpType = 'app' 7 | const app = new Vue(App) 8 | app.$mount() 9 | 10 | export default { 11 | // 这个字段走 app.json 12 | config: { 13 | // 页面前带有 ^ 符号的,会被编译成首页,其他页面可以选填,我们会自动把 webpack entry 里面的入口页面加进 14 | pages: ['^pages/index/main', 'pages/resume/main', 'pages/me/main', 'pages/detail/main'], 15 | window: { 16 | backgroundTextStyle: 'dark', 17 | navigationBarBackgroundColor: '#f9db61', 18 | navigationBarTitleText: '', 19 | navigationBarTextStyle: 'black' 20 | }, 21 | tabBar: { 22 | color: '#50370d', 23 | backgroundColor: '#ffffff', 24 | list: [{ 25 | pagePath: 'pages/index/main', 26 | text: '职位', 27 | iconPath: '/static/images/icon-home1.png', 28 | selectedIconPath: '/static/images/icon-home2.png' 29 | }, { 30 | pagePath: 'pages/resume/main', 31 | text: '简历', 32 | iconPath: '/static/images/icon-resume1.png', 33 | selectedIconPath: '/static/images/icon-resume2.png' 34 | }, { 35 | pagePath: 'pages/me/main', 36 | text: ' 我的', 37 | iconPath: '/static/images/icon-me1.png', 38 | selectedIconPath: '/static/images/icon-me2.png' 39 | }] 40 | } 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /src/pages/advertisement/index.vue: -------------------------------------------------------------------------------- 1 | 12 | 13 | 29 | 30 | 48 | -------------------------------------------------------------------------------- /src/pages/advertisement/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './index' 3 | 4 | const app = new Vue(App) 5 | app.$mount() 6 | export default { 7 | config: { 8 | navigationBarTitleText: '广告~~' 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/pages/detail/index.vue: -------------------------------------------------------------------------------- 1 | 109 | 110 | 185 | 186 | 348 | -------------------------------------------------------------------------------- /src/pages/detail/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './index' 3 | 4 | const app = new Vue(App) 5 | app.$mount() 6 | export default { 7 | config: { 8 | navigationBarTitleText: '智障招聘', 9 | backgroundColor: '#f9db61' 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/pages/index/index.vue: -------------------------------------------------------------------------------- 1 | 47 | 119 | 120 | 297 | -------------------------------------------------------------------------------- /src/pages/index/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './index' 3 | const app = new Vue(App) 4 | app.$mount() 5 | 6 | export default { 7 | config: { 8 | enablePullDownRefresh: true, 9 | backgroundColor: '#f9db61' 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/pages/me/index.vue: -------------------------------------------------------------------------------- 1 | 35 | 36 | 61 | 62 | 136 | -------------------------------------------------------------------------------- /src/pages/me/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './index' 3 | 4 | const app = new Vue(App) 5 | app.$mount() 6 | export default { 7 | config: { 8 | navigationBarTitleText: '我的' 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/pages/resume/index.vue: -------------------------------------------------------------------------------- 1 | 75 | 76 | 118 | 119 | 343 | -------------------------------------------------------------------------------- /src/pages/resume/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './index' 3 | 4 | const app = new Vue(App) 5 | app.$mount() 6 | export default { 7 | config: { 8 | navigationBarTitleText: '我的简历', 9 | navigationBarBackgroundColor: '#ffffff' 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/pages/schedule/index.vue: -------------------------------------------------------------------------------- 1 | 20 | 21 | 62 | 63 | 116 | -------------------------------------------------------------------------------- /src/pages/schedule/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './index' 3 | 4 | const app = new Vue(App) 5 | app.$mount() 6 | export default { 7 | config: { 8 | navigationBarTitleText: '求职进展', 9 | enablePullDownRefresh: true, 10 | backgroundColor: '#f8f8fa' 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/pages/search/index.vue: -------------------------------------------------------------------------------- 1 | 34 | 35 | 86 | 87 | 155 | -------------------------------------------------------------------------------- /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 | export default { 7 | config: { 8 | navigationBarTitleText: '搜索', 9 | enablePullDownRefresh: true, 10 | backgroundColor: '#f9db61' 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/utils/api/index.js: -------------------------------------------------------------------------------- 1 | const sendURL = 'https://www.easy-mock.com/mock/5b22ddc53d00c06fbd8e1f74/zpin' 2 | const ERR_OK = 200 3 | const request = (url, data = {}, method = 'GET') => new Promise((resolve, reject) => { 4 | url = sendURL + url 5 | setTimeout(() => { 6 | wx.request({ 7 | url, 8 | data, 9 | method, 10 | success: res => resolve(res.data), 11 | fail: res => reject(res) 12 | }) 13 | }, 1000) // 延时 14 | }) 15 | 16 | export {request, ERR_OK} 17 | -------------------------------------------------------------------------------- /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 | export default { 22 | formatNumber, 23 | formatTime 24 | } 25 | -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weikx/ZPIN/688e929fa10278ccb3938d86f65b1a0cd1f33f1b/static/.gitkeep -------------------------------------------------------------------------------- /static/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weikx/ZPIN/688e929fa10278ccb3938d86f65b1a0cd1f33f1b/static/font/iconfont.eot -------------------------------------------------------------------------------- /static/font/iconfont.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | Created by iconfont 9 | 10 | 11 | 12 | 13 | 21 | 22 | 23 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | -------------------------------------------------------------------------------- /static/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weikx/ZPIN/688e929fa10278ccb3938d86f65b1a0cd1f33f1b/static/font/iconfont.ttf -------------------------------------------------------------------------------- /static/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weikx/ZPIN/688e929fa10278ccb3938d86f65b1a0cd1f33f1b/static/font/iconfont.woff -------------------------------------------------------------------------------- /static/images/dingdan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weikx/ZPIN/688e929fa10278ccb3938d86f65b1a0cd1f33f1b/static/images/dingdan.png -------------------------------------------------------------------------------- /static/images/huancun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weikx/ZPIN/688e929fa10278ccb3938d86f65b1a0cd1f33f1b/static/images/huancun.png -------------------------------------------------------------------------------- /static/images/icon-home1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weikx/ZPIN/688e929fa10278ccb3938d86f65b1a0cd1f33f1b/static/images/icon-home1.png -------------------------------------------------------------------------------- /static/images/icon-home2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weikx/ZPIN/688e929fa10278ccb3938d86f65b1a0cd1f33f1b/static/images/icon-home2.png -------------------------------------------------------------------------------- /static/images/icon-me1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weikx/ZPIN/688e929fa10278ccb3938d86f65b1a0cd1f33f1b/static/images/icon-me1.png -------------------------------------------------------------------------------- /static/images/icon-me2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weikx/ZPIN/688e929fa10278ccb3938d86f65b1a0cd1f33f1b/static/images/icon-me2.png -------------------------------------------------------------------------------- /static/images/icon-resume1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weikx/ZPIN/688e929fa10278ccb3938d86f65b1a0cd1f33f1b/static/images/icon-resume1.png -------------------------------------------------------------------------------- /static/images/icon-resume2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weikx/ZPIN/688e929fa10278ccb3938d86f65b1a0cd1f33f1b/static/images/icon-resume2.png -------------------------------------------------------------------------------- /static/images/jinzhan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weikx/ZPIN/688e929fa10278ccb3938d86f65b1a0cd1f33f1b/static/images/jinzhan.png -------------------------------------------------------------------------------- /static/images/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weikx/ZPIN/688e929fa10278ccb3938d86f65b1a0cd1f33f1b/static/images/mail.png -------------------------------------------------------------------------------- /static/images/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weikx/ZPIN/688e929fa10278ccb3938d86f65b1a0cd1f33f1b/static/images/more.png -------------------------------------------------------------------------------- /static/images/pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weikx/ZPIN/688e929fa10278ccb3938d86f65b1a0cd1f33f1b/static/images/pen.png -------------------------------------------------------------------------------- /static/images/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weikx/ZPIN/688e929fa10278ccb3938d86f65b1a0cd1f33f1b/static/images/phone.png -------------------------------------------------------------------------------- /static/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weikx/ZPIN/688e929fa10278ccb3938d86f65b1a0cd1f33f1b/static/images/plus.png -------------------------------------------------------------------------------- /static/images/quxiaomoren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weikx/ZPIN/688e929fa10278ccb3938d86f65b1a0cd1f33f1b/static/images/quxiaomoren.png -------------------------------------------------------------------------------- /static/images/shuaxinjianli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weikx/ZPIN/688e929fa10278ccb3938d86f65b1a0cd1f33f1b/static/images/shuaxinjianli.png -------------------------------------------------------------------------------- /static/images/shuxinjianli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weikx/ZPIN/688e929fa10278ccb3938d86f65b1a0cd1f33f1b/static/images/shuxinjianli.png -------------------------------------------------------------------------------- /static/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weikx/ZPIN/688e929fa10278ccb3938d86f65b1a0cd1f33f1b/static/images/up.png -------------------------------------------------------------------------------- /static/images/zhidingjianli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weikx/ZPIN/688e929fa10278ccb3938d86f65b1a0cd1f33f1b/static/images/zhidingjianli.png -------------------------------------------------------------------------------- /static/scss/base.scss: -------------------------------------------------------------------------------- 1 | $baseColor: #f9db61; 2 | -------------------------------------------------------------------------------- /static/scss/iconfont.scss: -------------------------------------------------------------------------------- 1 | 2 | @font-face {font-family: "iconfont"; 3 | src: url('../font/iconfont.eot?t=1529222231876'); /* IE9*/ 4 | src: url('../font/iconfont.eot?t=1529222231876#iefix') format('embedded-opentype'), /* IE6-IE8 */ 5 | url('data:application/x-font-woff;charset=utf-8;base64,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') format('woff'), 6 | url('../font/iconfont.ttf?t=1529222231876') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/ 7 | url('../font/iconfont.svg?t=1529222231876#iconfont') format('svg'); /* iOS 4.1- */ 8 | } 9 | 10 | .iconfont { 11 | font-family:"iconfont" !important; 12 | font-size:16px; 13 | font-style:normal; 14 | -webkit-font-smoothing: antialiased; 15 | -moz-osx-font-smoothing: grayscale; 16 | } 17 | 18 | .icon-shouji:before { content: "\e600"; } 19 | 20 | .icon-qian:before { content: "\e61f"; } 21 | 22 | .icon-msnui-link:before { content: "\e71a"; } 23 | 24 | .icon-youxiang:before { content: "\e687"; } 25 | 26 | .icon-dengpao1:before { content: "\e694"; } 27 | 28 | .icon-shouji1:before { content: "\e61a"; } 29 | 30 | .icon-ren:before { content: "\e6e4"; } 31 | 32 | .icon-bianjiqianbixieshuru2:before { content: "\e7c9"; } 33 | 34 | .icon-remen:before { content: "\e638"; } 35 | 36 | .icon-biaoqian:before { content: "\e603"; } 37 | 38 | .icon-dengpao:before { content: "\e601"; } 39 | 40 | .icon-tianjia:before { content: "\e605"; } 41 | 42 | .icon-alert:before { content: "\e604"; } 43 | 44 | .icon-qian1:before { content: "\e630"; } 45 | 46 | .icon-work:before { content: "\e6e6"; } 47 | 48 | .icon-youxiang1:before { content: "\e64a"; } 49 | 50 | .icon-qian2:before { content: "\e607"; } 51 | 52 | .icon-jianzhizhongdiangong:before { content: "\e602"; } 53 | 54 | .icon-gongzuo:before { content: "\e62f"; } 55 | 56 | .icon-xueli1:before { content: "\e606"; } 57 | 58 | .icon-qianbi:before { content: "\e639"; } 59 | 60 | .icon-tishi:before { content: "\e60b"; } 61 | 62 | .icon-jiyinpailie:before { content: "\e64c"; } 63 | 64 | .icon-suosou:before { content: "\e60c"; } 65 | 66 | .icon-jiantouxia:before { content: "\e608"; } 67 | 68 | .icon-tianjia1:before { content: "\e690"; } 69 | 70 | --------------------------------------------------------------------------------