diff --git a/public/index.html b/public/index.html
index 0b4ca59..4e0c380 100644
--- a/public/index.html
+++ b/public/index.html
@@ -36,26 +36,30 @@
<% if (process.env.VUE_APP_NODE_ENV === 'dev') { %>
<% } %>
<% if (process.env.VUE_APP_NODE_ENV === 'prod:sit') { %>
<% } %>
<% if (process.env.VUE_APP_NODE_ENV === 'prod:uat') { %>
<% } %>
<% if (process.env.VUE_APP_NODE_ENV === 'prod') { %>
<% } %>
diff --git a/src/views/modules/worklog/worklog.vue b/src/views/modules/worklog/worklog.vue
new file mode 100644
index 0000000..4b17d8e
--- /dev/null
+++ b/src/views/modules/worklog/worklog.vue
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
diff --git a/src/views/pages/login.vue b/src/views/pages/login.vue
index 8e838c0..9eb355c 100644
--- a/src/views/pages/login.vue
+++ b/src/views/pages/login.vue
@@ -151,6 +151,16 @@ export default {
// 登陆之后从localStorage获取党委为空则从网络上拉取
this.checkLocakStorage()
}).catch(() => { })
+ this.$http.get(`/api/plugins/workLog/getCustomId`)
+ .then(res => {
+ if (res.data.code !== 0) {
+ return this.$message.error(res.data.msg)
+ }
+ Cookies.set('customerId',res.data.data)
+ })
+ .catch((err) => {
+ console.log(err)
+ })
})
}, 1000, { 'leading': true, 'trailing': false }),
checkLocakStorage () {
diff --git a/vue.config.js b/vue.config.js
index e24674f..d3a31f9 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -9,6 +9,7 @@ module.exports = {
devServer: {
open: true,
port: 8001,
+ public: '192.168.51.32',
overlay: {
errors: false,
warnings: false