From d430a7762a70e920255ce4bb34cf8ae08dd1995e Mon Sep 17 00:00:00 2001 From: kim131 <1035828775@qq.com> Date: Tue, 27 Oct 2020 10:48:19 +0800 Subject: [PATCH 1/5] =?UTF-8?q?=E5=B7=A5=E4=BD=9C=E6=8C=87=E6=B4=BE?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E9=83=A8=E9=97=A8=E9=80=9A=E8=AE=AF=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components_web/distWork/distWork.vue | 120 ++++++++++++++---- 1 file changed, 94 insertions(+), 26 deletions(-) diff --git a/src/views/components_web/distWork/distWork.vue b/src/views/components_web/distWork/distWork.vue index 2370c5c0..8200e156 100644 --- a/src/views/components_web/distWork/distWork.vue +++ b/src/views/components_web/distWork/distWork.vue @@ -96,7 +96,7 @@
- +
{{currUser.cnName}}
@@ -112,7 +112,8 @@
  • - + +
    {{user.cnName}}
    @@ -161,7 +162,8 @@ )" :key="index">
    - + +
    {{ user.cnName @@ -182,7 +184,8 @@ )" :key="index">
    - + +
    {{ user.cnName @@ -375,7 +378,7 @@ 所在项目{{ user.projCount }}个
  • - {{ user.position }} + {{user.position }} {{ user.roleName @@ -408,7 +411,8 @@ selectedUser )" :key="index"> - + + {{ user.cnName }} - + {{ user.roleName @@ -650,6 +654,7 @@ + \ No newline at end of file From 29d3a86df2408fbcea27b13b919b0c545ba7fd28 Mon Sep 17 00:00:00 2001 From: kim131 <1035828775@qq.com> Date: Tue, 27 Oct 2020 10:49:16 +0800 Subject: [PATCH 2/5] =?UTF-8?q?=E5=9B=BE=E7=89=87=E5=AD=97=E6=AE=B5?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/components_web/newProj/newProj.vue | 10 ++-- .../projSetting/projSetting.vue | 53 ++++++++++++++----- 2 files changed, 46 insertions(+), 17 deletions(-) diff --git a/src/views/components_web/newProj/newProj.vue b/src/views/components_web/newProj/newProj.vue index 2f02fa3d..3371408b 100644 --- a/src/views/components_web/newProj/newProj.vue +++ b/src/views/components_web/newProj/newProj.vue @@ -589,7 +589,7 @@ filePicker:'uploadCover', uploadLabel: "编辑封面", srcIndex: 2, // 封面切换Index - coverSrc: 'static\\img\\faceImg\\face01.png', + coverSrc: 'static/img/faceImg/face01.png', cnName: '', listDept: [], // 项目协作人列表 selectedUser: [], // 当前文件夹的已选协作人 @@ -1338,11 +1338,11 @@ } this.srcIndex=temp; if(this.srcIndex===10){ - this.coverSrc = "static\\img\\faceImg\\face" + this.srcIndex + ".png"; + this.coverSrc = "static/img/faceImg/face" + this.srcIndex + ".png"; }else{ - this.coverSrc = "static\\img\\faceImg\\face0" + this.srcIndex + ".png"; + this.coverSrc = "static/img/faceImg/face0" + this.srcIndex + ".png"; } - this.newProjData.projectData.showImgUrl = this.srcIndex; + this.newProjData.projectData.showImgUrl = this.coverSrc; }, /** @@ -1453,7 +1453,7 @@ }); thisApp.reSetDialog(); thisApp.isDisableCreate = false; - thisApp.coverSrc = 'static\\img\\faceImg\\face01.png'; + thisApp.coverSrc = 'static/img/faceImg/face01.png'; let timer = setTimeout(() => { this.$emit('createProjSuccess'); clearTimeout(timer); diff --git a/src/views/components_web/projSetting/projSetting.vue b/src/views/components_web/projSetting/projSetting.vue index 784aa50c..b8fbcf10 100644 --- a/src/views/components_web/projSetting/projSetting.vue +++ b/src/views/components_web/projSetting/projSetting.vue @@ -238,7 +238,8 @@ ) " :disabled="disabled">
    - + + @@ -291,7 +292,8 @@ selectedUser )" :key="index"> - + +
      @@ -389,7 +391,8 @@ handleCheckedOne(group_index, user, $event) " :disabled="disabled">
      - + + @@ -442,7 +445,8 @@ selectedUser )" :key="index"> - + +
        @@ -479,7 +483,8 @@
      -
      -
      +
      +
      暂无项目 @@ -102,9 +102,12 @@ 项目概况 - --> + 工作指派 @@ -581,10 +584,10 @@ export default { *分配工作单独弹框(传输数据) */ addNewFolders: function (projData) { - sessionStorage.projId = projData.projID; - sessionStorage.createUserID = projData.createUserID; - sessionStorage.templateID = projData.templateID; - sessionStorage.allocated = projData.allocated; + sessionStorage.projId = projData.Id; + sessionStorage.createUserID = projData.CreateUserId; + sessionStorage.templateID = projData.TemplateId; + sessionStorage.allocated = projData.Allocated; this.isAloneDistProj = true; }, /** From c50f318a26d22e039de932b90df400d098b20058 Mon Sep 17 00:00:00 2001 From: kim131 <1035828775@qq.com> Date: Tue, 27 Oct 2020 10:50:28 +0800 Subject: [PATCH 4/5] =?UTF-8?q?=E4=B8=B4=E6=97=B6ip=E5=9C=B0=E5=9D=80?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vue.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vue.config.js b/vue.config.js index f7dbdbc6..0311060c 100644 --- a/vue.config.js +++ b/vue.config.js @@ -30,8 +30,8 @@ module.exports = { proxy: { '/api/pms': { // target: 'http://47.104.91.134:8089', - target:'http://10.240.32.176:8089', - + target:'http://10.240.32.182:8089', + changeOrigin: true, secure: false, }, From e9b6dbf0f95b3153bc23274e785a22f020a837e1 Mon Sep 17 00:00:00 2001 From: kim131 <1035828775@qq.com> Date: Tue, 27 Oct 2020 11:08:29 +0800 Subject: [PATCH 5/5] =?UTF-8?q?=E9=80=9A=E8=AE=AF=E5=BD=95=E7=94=A8?= =?UTF-8?q?=E6=88=B7=E5=9B=BE=E7=89=87=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/components_web/distWork/distWork.vue | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/src/views/components_web/distWork/distWork.vue b/src/views/components_web/distWork/distWork.vue index 8200e156..41d42b23 100644 --- a/src/views/components_web/distWork/distWork.vue +++ b/src/views/components_web/distWork/distWork.vue @@ -163,7 +163,7 @@
      - +
      {{ user.cnName @@ -185,7 +185,7 @@
      - +
      {{ user.cnName @@ -358,7 +358,8 @@ ) " :disabled="disabled">
      - + + @@ -512,7 +513,8 @@ handleCheckedOne(group_index, user, $event) " :disabled="disabled">
      - + + @@ -566,7 +568,8 @@ selectedUser )" :key="index"> - + +
        @@ -604,7 +607,8 @@