diff --git a/src/views/company-manage/components/add-form.vue b/src/views/company-manage/components/add-form.vue
index 79db8a7a..37d35abc 100644
--- a/src/views/company-manage/components/add-form.vue
+++ b/src/views/company-manage/components/add-form.vue
@@ -38,15 +38,10 @@
prop="status"
v-if="formType == 2"
>
-
-
启用
停用
+ 注销
@@ -99,7 +94,13 @@
-
+
+
+
+ 手机号码:
+ (登录账号)
+
+
@@ -522,4 +523,14 @@ export default {
width: 120px;
height: 120px;
}
+.custom-label {
+ display: flex;
+ flex-direction: column;
+ align-items: flex-end;
+}
+
+::v-deep .user-phone-number .el-form-item__label {
+ display: flex;
+ justify-content: flex-end;
+}
diff --git a/src/views/company-manage/components/company-card.vue b/src/views/company-manage/components/company-card.vue
index 2a47d161..342c30fc 100644
--- a/src/views/company-manage/components/company-card.vue
+++ b/src/views/company-manage/components/company-card.vue
@@ -132,9 +132,11 @@ export default {
.confirm('是否确认注销')
.then(async () => {
// 组装参数
- const { deptId } = this.companyInfo
+ const { deptId, deptName, orderNum } = this.companyInfo
const params = {
deptId,
+ deptName,
+ orderNum,
}
const res = await editDeptLogoutAPI(params)
if (res.code === 200) {