-->
+
+
diff --git a/src/views/inout/IoDeliverySearchOrder.vue b/src/views/inout/IoDeliverySearchOrder.vue
index a7fbf59..8d7bb8a 100644
--- a/src/views/inout/IoDeliverySearchOrder.vue
+++ b/src/views/inout/IoDeliverySearchOrder.vue
@@ -217,6 +217,8 @@
+
+
diff --git a/src/views/inout/IoSupAduitOrder.vue b/src/views/inout/IoSupAduitOrder.vue
index dc57cdf..7383b27 100644
--- a/src/views/inout/IoSupAduitOrder.vue
+++ b/src/views/inout/IoSupAduitOrder.vue
@@ -129,6 +129,8 @@
+
+
+
+
diff --git a/src/views/inout/IoSupSecAuditOrder.vue b/src/views/inout/IoSupSecAuditOrder.vue
index 483d649..9a4121a 100644
--- a/src/views/inout/IoSupSecAuditOrder.vue
+++ b/src/views/inout/IoSupSecAuditOrder.vue
@@ -148,6 +148,8 @@
+
+
From 187dfac80f131250ceceb05ba5efd697ae76819a Mon Sep 17 00:00:00 2001
From: schry <2433098676@qq.com>
Date: Tue, 11 Jul 2023 19:11:14 +0800
Subject: [PATCH 5/9] =?UTF-8?q?=E5=AF=86=E7=A0=81=E4=BF=AE=E6=94=B9?=
=?UTF-8?q?=E4=BC=98=E5=8C=96?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/layout/components/Navbar.vue | 182 ++++++++++++++++++++++++++++---
1 file changed, 168 insertions(+), 14 deletions(-)
diff --git a/src/layout/components/Navbar.vue b/src/layout/components/Navbar.vue
index 625b401..701a76b 100644
--- a/src/layout/components/Navbar.vue
+++ b/src/layout/components/Navbar.vue
@@ -9,12 +9,11 @@
-
+
部门:{{ deptName }}
部门 : {{ deptName }}
-
仓库 : {{ inv }}
-
用户 : {{ this.companyName }}
+ style="margin-right: 18px;margin-left:8px;color: #2d8cf0;font-size: 14px;">仓库:{{ inv }}
+
用户:{{ this.companyName }}
({{
this.userName
@@ -41,6 +40,9 @@
切换仓库
+
+ 修改密码
+
退出登录
@@ -103,6 +105,78 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改密码
+ 取消
+
+
+
+
@@ -119,21 +193,37 @@ import RuoYiDoc from '@/components/RuoYi/Doc'
import store from "@/store";
import {filterAllByUser} from "@/api/system/invWarehouse";
import {filterSubByInv, findByDeptUser} from "@/api/system/invSubWarehouse";
-import {updateInv} from "@/api/auth/authAdmin";
+import {updateInv, modifyPasswd,filterByUser} from "@/api/auth/authAdmin";
import {isRelogin} from "@/utils/request";
import router from "@/router";
export default {
data() {
+ // let validatePass2 = (rule, value, callback) => {
+ // if (value === "") {
+ // callback(new Error("请再次输入密码"));
+ // } else if (value !== this.inputQuery.password) {
+ // callback(new Error("两次输入密码不一致!"));
+ // } else {
+ // callback();
+ // }
+ // };
return {
- deptName: store.getters.locDeptName,
inv: store.getters.locInvName,
+ deptName: store.getters.locDeptName,
selInvVisible: false,
+ isVisible: false,
userInfo: {},
+ inputQuery: {
+ passWord: "",
+ newPassword: "",
+ confirmPassword: "",
+ userName: "",
+ locInvCode: "",
+
+ },
deptList: [],
invList: [],
- userName: '',
- companyName: '',
formRules: {
locDeptCode: [
{required: true, message: "请选择当前部门", trigger: "blur"}
@@ -141,6 +231,19 @@ export default {
locInvCode: [
{required: true, message: "请选择当前仓库", trigger: "blur"}
],
+ password: [{required: true, message: "请输入密码", trigger: "blur"}],
+ newPassword: [{required: true, message: "请输入密码", trigger: "blur"}],
+ confirmPassword: [
+ {required: true, message: "请确认密码", trigger: "blur"},
+ // {validator: validatePass2, trigger: "blur"},
+ ],
+ },
+ rules: {
+ password: [{required: true, message: "请输入密码", trigger: "blur"}],
+ confirmPassword: [
+ {required: true, message: "请确认密码", trigger: "blur"},
+ // {validator: validatePass2, trigger: "blur"},
+ ],
},
};
@@ -179,6 +282,41 @@ export default {
}
},
methods: {
+ onSubmit() {
+ if (this.inputQuery.newPassword != this.inputQuery.confirmPassword) {
+ this.$message.error("新密码与确认密码不一致!!!!");
+ return
+ }
+ if (this.inputQuery.passWord == this.inputQuery.newPassword) {
+ this.$message.error("旧密码与新密码不能相同!!!!");
+ return
+ }
+ this.$refs["dataForm"].validate((valid) => {
+ if (valid) {
+ this.loading = true;
+ modifyPasswd(this.inputQuery).then((response) => {
+ if (response.code === 20000) {
+ this.loading = false;
+ this.$confirm('密码重置成功,请点击确定重新登录', '提示', {
+ confirmButtonText: '确定',
+ cancelButtonText: '取消',
+ type: 'warning'
+ }).then(() => {
+ this.$store.dispatch('LogOut').then(() => {
+ location.href = process.env.VUE_APP_CONTEXT_PATH;
+ })
+ }).catch(() => {
+ });
+ } else {
+ this.$message.error(response.message);
+ }
+ });
+ } else {
+ return false;
+ }
+ });
+ },
+
toggleSideBar() {
this.$store.dispatch('app/toggleSideBar')
},
@@ -197,7 +335,9 @@ export default {
changeInv() {
this.selInvVisible = true;
- this.getDeptList();
+ },
+ modifyPassword() {
+ this.isVisible = true;
},
getDeptList() {
@@ -210,6 +350,16 @@ export default {
.catch(() => {
});
},
+ // getInputQuery() {
+ // this.inputQuery = [];
+ // filterByUser()
+ // .then((response) => {
+ // this.inputQuery = response.data || [];
+ // // this.getInvList();
+ // })
+ // .catch(() => {
+ // });
+ // },
deptChange() {
this.getInvList();
@@ -219,8 +369,7 @@ export default {
getInvList() {
this.invList = [];
let query = {
- deptCode: this.userInfo.locDeptCode,
- type:1
+ deptCode: this.userInfo.locDeptCode
};
findByDeptUser(query)
.then((response) => {
@@ -266,6 +415,8 @@ export default {
closeDialog() {
this.selInvVisible = false;
+ this.isVisible = false;
+
this.getDeptList()
this.resetForm();
},
@@ -283,14 +434,17 @@ export default {
},
created() {
this.userName = this.$store.getters.name;
- this.companyName = this.$store.getters.companyName;
this.userInfo = {
id: store.getters.adminId,
locInvCode: store.getters.locInvCode,
locDeptCode: store.getters.locDeptCode,
};
+ this.inputQuery = {
+ userName: this.userName,
+ id: this.userInfo.id,
-
+ };
+ // this.getInputQuery();
this.getDeptList();
//this.getInvList()
From 06955b72d9aca83a61760d7d519fb9c2d15caa4c Mon Sep 17 00:00:00 2001
From: 1178634255 <1178634255@qq.com>
Date: Wed, 12 Jul 2023 16:34:20 +0800
Subject: [PATCH 6/9] =?UTF-8?q?=E5=BE=80=E6=9D=A5=E5=8D=95=E4=BD=8D?=
=?UTF-8?q?=E8=B6=85=E8=BF=8740=E4=BD=8D=20=E6=8F=90=E7=A4=BA=E6=9C=89?=
=?UTF-8?q?=E8=AF=AF?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/basic/corpMaintain/corpMaintain.vue | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/views/basic/corpMaintain/corpMaintain.vue b/src/views/basic/corpMaintain/corpMaintain.vue
index 164565a..b17c3b4 100644
--- a/src/views/basic/corpMaintain/corpMaintain.vue
+++ b/src/views/basic/corpMaintain/corpMaintain.vue
@@ -122,8 +122,9 @@
+ placeholder="请输入往来单位名称" :maxlength="40">
+
From 98e1342d07d9718034ff89155c214057d2222cb1 Mon Sep 17 00:00:00 2001
From: 1178634255 <1178634255@qq.com>
Date: Wed, 12 Jul 2023 16:52:38 +0800
Subject: [PATCH 7/9] =?UTF-8?q?=E4=BE=9B=E5=BA=94=E5=95=86=E9=A6=96?=
=?UTF-8?q?=E6=AC=A1=E8=B5=84=E8=B4=A8=E5=AE=A1=E6=A0=B8=E4=B8=8D=E9=80=9A?=
=?UTF-8?q?=E8=BF=87=EF=BC=8C=E6=9B=B4=E6=96=B0=E4=BF=A1=E6=81=AF=EF=BC=8C?=
=?UTF-8?q?=E5=86=8D=E6=AC=A1=E7=82=B9=E5=87=BB=E2=80=9C=E6=8F=90=E4=BA=A4?=
=?UTF-8?q?=E5=AE=A1=E6=A0=B8=E2=80=9D=E6=97=B6=EF=BC=8C=E6=8F=90=E7=A4=BA?=
=?UTF-8?q?=E6=A1=86=E4=BF=A1=E6=81=AF=E4=B8=8E=E5=AE=9E=E9=99=85=E4=B8=8D?=
=?UTF-8?q?=E7=9B=B8=E7=AC=A6?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/supplier/company/basicCompany.vue | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/views/supplier/company/basicCompany.vue b/src/views/supplier/company/basicCompany.vue
index 50a59aa..1b2e53a 100644
--- a/src/views/supplier/company/basicCompany.vue
+++ b/src/views/supplier/company/basicCompany.vue
@@ -30,7 +30,7 @@
type="primary"
size="mini"
icon="search"
- v-if="inputQuery.auditStatus == 0 || inputQuery.auditStatus == 6"
+ v-if=" inputQuery.auditStatus == 1"
@click="onModifySubmit(6)"
>提交审核
@@ -40,9 +40,9 @@
size="mini"
icon="search"
v-if="
- inputQuery.auditStatus == 3 ||
- inputQuery.auditStatus == 1 ||
- inputQuery.auditStatus == 2
+ inputQuery.auditStatus == 0 ||
+ inputQuery.auditStatus == 2 ||
+ inputQuery.auditStatus == 3
"
@click="onModifySubmit(3)"
>提交审核
@@ -580,9 +580,9 @@ export default {
//编辑保存
if (val == 0) {
var str = "是否确定草稿保存?";
- } else if (val == 6) {
+ } else if (val == 1) {
var str = "是否确定提交审核?";
- } else if (val == 2) {
+ } else if (val == 2||val == 3|| val ==0) {
var str = "企业信息已拒绝审核,是否确认重新提交审核?";
} else {
var str = "企业信息已通过审核,是否确认重新提交审核?";
From 92a56384d063c45171c480f1d9c92edc1cd911f4 Mon Sep 17 00:00:00 2001
From: 1178634255 <1178634255@qq.com>
Date: Wed, 12 Jul 2023 17:42:29 +0800
Subject: [PATCH 8/9] =?UTF-8?q?=E5=8F=91=E7=A5=A8=E5=8F=AA=E8=83=BD?=
=?UTF-8?q?=E4=B8=8A=E4=BC=A0=E5=9B=BE=E7=89=87=E6=A0=BC=E5=BC=8F=EF=BC=8C?=
=?UTF-8?q?pdf=E8=B7=9Fdoc=E8=BF=99=E4=B8=A4=E4=B8=AA=E6=8F=90=E7=A4=BA?=
=?UTF-8?q?=E8=A6=81=E5=8E=BB=E6=8E=89?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/inout/InvoiceCkeck.vue | 2 +-
src/views/system/param/addhelpSettings.vue | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/views/inout/InvoiceCkeck.vue b/src/views/inout/InvoiceCkeck.vue
index 03e0b63..719068e 100644
--- a/src/views/inout/InvoiceCkeck.vue
+++ b/src/views/inout/InvoiceCkeck.vue
@@ -123,7 +123,7 @@
>
{{ choiceFile }}
- 只能上传 jpg,png,pdf,doc 文件,且不超过 10 MB
+ 只能上传 jpg,png文件,且不超过 10 MB
diff --git a/src/views/system/param/addhelpSettings.vue b/src/views/system/param/addhelpSettings.vue
index 4a49b1a..dca40e2 100644
--- a/src/views/system/param/addhelpSettings.vue
+++ b/src/views/system/param/addhelpSettings.vue
@@ -117,7 +117,7 @@
>文件预览
- 只能上传 jpg,png,pdf,doc 文件,且不超过 10 MB
+ 只能上传 jpg,png文件,且不超过 10 MB
From 59cb99ff558af0953e839c497c8e1c56d40b1d46 Mon Sep 17 00:00:00 2001
From: 1178634255 <1178634255@qq.com>
Date: Wed, 12 Jul 2023 17:46:52 +0800
Subject: [PATCH 9/9] =?UTF-8?q?=E8=AF=81=E4=B9=A6=E5=90=8D=E7=A7=B0?=
=?UTF-8?q?=E9=95=BF=E5=BA=A6=E8=B6=85=E8=BF=8730=E7=9A=84=E8=8C=83?=
=?UTF-8?q?=E7=95=B4=20=E5=B0=B1=E6=8F=90=E7=A4=BA=E7=B3=BB=E7=BB=9F?=
=?UTF-8?q?=E7=B9=81=E5=BF=99?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/purchase/cert/supCertAddDialog.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/views/purchase/cert/supCertAddDialog.vue b/src/views/purchase/cert/supCertAddDialog.vue
index 4044c7f..67740c7 100644
--- a/src/views/purchase/cert/supCertAddDialog.vue
+++ b/src/views/purchase/cert/supCertAddDialog.vue
@@ -15,7 +15,7 @@
-
+