Merge branch 'develop' of ssh://gitlab.dongwu-inc.com:10022/BOE/fe-manage into develop

This commit is contained in:
zhangyc
2022-12-23 16:24:26 +08:00
4 changed files with 27 additions and 26 deletions

View File

@@ -3288,11 +3288,11 @@ const columns7 = [
key: "5",
align: "center",
customRender: ({ record }) => {
switch (String(record.source)) {
switch (String(record.status)) {
case "0":
return "待审核";
case "1":
return "审核通过";
case "1":
return "待审核";
case "2":
return "审核拒绝";
}
@@ -3410,11 +3410,11 @@ export default defineComponent({
key: "5",
align: "center",
customRender: ({ record }) => {
switch (String(record.source)) {
switch (String(record.status)) {
case "0":
return "待审核";
case "1":
return "审核通过";
case "1":
return "待审核";
case "2":
return "审核拒绝";
}