diff --git a/src/pages/recruit/CheckList.vue b/src/pages/recruit/CheckList.vue index 02204dd..9877d9f 100644 --- a/src/pages/recruit/CheckList.vue +++ b/src/pages/recruit/CheckList.vue @@ -1,574 +1,671 @@ diff --git a/src/services/recruit/CheckList.js b/src/services/recruit/CheckList.js new file mode 100644 index 0000000..873be71 --- /dev/null +++ b/src/services/recruit/CheckList.js @@ -0,0 +1,10 @@ +import http from "../CommonHttp"; +import axios from "axios"; + +export function getList(params, call) { + return http.get("/fission/recruit/list", params).then(call); +} + +export default { + getList, +}; diff --git a/vue.config.js b/vue.config.js index b99334e..89cc5a3 100644 --- a/vue.config.js +++ b/vue.config.js @@ -6,11 +6,11 @@ module.exports = { // publicPath: process.env.NODE_ENV === 'production' ? '/public/' : './', /* history模式 */ - publicPath: process.env.NODE_ENV === 'production' ? '/dist/' : '/', + publicPath: process.env.NODE_ENV === "production" ? "/dist/" : "/", /* 输出文件目录:在npm run build时,生成文件的目录名称 */ - outputDir: 'dist', + outputDir: "dist", /* 放置生成的静态资源 (js、css、img、fonts) 的 (相对于 outputDir 的) 目录 */ - assetsDir: 'assets', + assetsDir: "assets", /* 是否在构建生产包时生成 sourceMap 文件,false将提高构建速度 */ productionSourceMap: false, /* 默认情况下,生成的静态资源在它们的文件名中包含了 hash 以便更好的控制缓存,你可以通过将这个选项设为 false 来关闭文件名哈希。(false的时候就是让原来的文件名不改变) */ @@ -22,7 +22,7 @@ module.exports = { /* 自动打开浏览器 */ open: true, /* 设置为0.0.0.0则所有的地址均能访问 */ - host: '0.0.0.0', + host: "0.0.0.0", port: 8311, https: false, hotOnly: false, @@ -30,7 +30,7 @@ module.exports = { /* 使用代理 后台接口路径 */ // proxy: 'http://192.168.1.123:8312/' // proxy: 'http://192.168.31.177:8312/' - proxy: 'http://localhost:8312/', + proxy: "http://localhost:8080/", // proxy: 'http://jdxdev.vipgz4.idcfengye.com/' }, -} +};