- 从企业微信同步到敲敲云
-
查看已绑定的企业微信用户
+ 从机构微信同步到敲敲云
+
查看已绑定的机构微信用户
@@ -83,7 +83,7 @@
clientId: '',
clientSecret: '',
});
- //企业微信钉钉配置modal
+ //机构微信钉钉配置modal
const [registerAppConfigModal, { openModal }] = useModal();
const [registerBindAppConfigModal, { openModal: openBindModal }] = useModal();
const { createMessage } = useMessage();
@@ -101,7 +101,7 @@
}
/**
- * 企业微信编辑
+ * 机构微信编辑
*/
async function weEnterpriseEditClick() {
let tenantId = getTenantId();
@@ -112,7 +112,7 @@
}
/**
- * 获取企业微信绑定的用户
+ * 获取机构微信绑定的用户
*/
async function thirdUserByWechat() {
openBindModal(true, { izBind: false });
@@ -146,7 +146,7 @@
Modal.warning(options);
} else {
createMessage.warning({
- content: '同步失败,请检查对接信息录入中是否填写正确,并确认是否已开启企业微信配置!',
+ content: '同步失败,请检查对接信息录入中是否填写正确,并确认是否已开启机构微信配置!',
duration: 5,
});
}
@@ -154,7 +154,7 @@
}
/**
- * 查看已绑定的企业微信
+ * 查看已绑定的机构微信
*/
function seeBindWeChat() {
openBindModal(true,{ izBind: true })
diff --git a/src/views/system/loginmini/MiniCodelogin.vue b/src/views/system/loginmini/MiniCodelogin.vue
index 85e6c4d..a5ce571 100644
--- a/src/views/system/loginmini/MiniCodelogin.vue
+++ b/src/views/system/loginmini/MiniCodelogin.vue
@@ -38,7 +38,7 @@
diff --git a/src/views/system/loginmini/OAuth2Login.vue b/src/views/system/loginmini/OAuth2Login.vue
index 3ccb100..9c42d26 100644
--- a/src/views/system/loginmini/OAuth2Login.vue
+++ b/src/views/system/loginmini/OAuth2Login.vue
@@ -32,7 +32,7 @@
* 检测当前的环境
*/
function checkEnv() {
- // 判断当时是否是企业微信环境
+ // 判断当时是否是机构微信环境
if (/wxwork/i.test(navigator.userAgent)) {
env.value.thirdApp = true;
env.value.wxWork = true;
@@ -93,7 +93,7 @@
* 钉钉登录
*/
function dingdingLogin() {
- //先获取钉钉的企业id,如果没有配置 还是走原来的逻辑,走原来的逻辑 需要判断存不存在token,存在token直接去首页
+ //先获取钉钉的机构id,如果没有配置 还是走原来的逻辑,走原来的逻辑 需要判断存不存在token,存在token直接去首页
let tenantId = getAuthCache(OAUTH2_THIRD_LOGIN_TENANT_ID) || 0;
let url = `/sys/thirdLogin/get/corpId/clientId?tenantId=${tenantId}`;
//update-begin---author:wangshuai---date:2024-12-09---for:不要使用getAction online里面的,要用defHttp---
diff --git a/src/views/system/usersetting/WeChatDingSetting.vue b/src/views/system/usersetting/WeChatDingSetting.vue
index 6e6a034..77a3121 100644
--- a/src/views/system/usersetting/WeChatDingSetting.vue
+++ b/src/views/system/usersetting/WeChatDingSetting.vue
@@ -2,10 +2,10 @@
第三方APP
-
+
-
+
@@ -55,7 +55,7 @@
const bindWechatData = ref
({});
//绑定钉钉的数据
const bindDingData = ref({});
- //绑定企业微信的数据
+ //绑定机构微信的数据
const bindEnterpriseData = ref({});
const glob = useGlobSetting();
@@ -72,7 +72,7 @@
const receiveMessage = ref('');
/**
- * 初始化钉钉和企业微信数据
+ * 初始化钉钉和机构微信数据
*/
async function initUserDetail() {
let values = await getThirdAccountByUserId({ thirdType: 'wechat_open,dingtalk,wechat_enterprise' });
@@ -88,15 +88,15 @@
}
/**
- * 企业微信绑定解绑事件
+ * 机构微信绑定解绑事件
*/
function wechatEnterpriseBind() {
- console.log('企业微信绑定解绑事件');
+ console.log('机构微信绑定解绑事件');
let data = unref(bindEnterpriseData);
if (!data.sysUserId) {
onThirdLogin('wechat_enterprise');
}else{
- deleteAccount({ sysUserId: data.sysUserId, id: data.id }, '企业微信');
+ deleteAccount({ sysUserId: data.sysUserId, id: data.id }, '机构微信');
}
}
diff --git a/src/views/utils/departUtils/DepartUtils.data.ts b/src/views/utils/departUtils/DepartUtils.data.ts
index 5140323..a8c449f 100644
--- a/src/views/utils/departUtils/DepartUtils.data.ts
+++ b/src/views/utils/departUtils/DepartUtils.data.ts
@@ -52,7 +52,7 @@ export const superQuerySchema = {
address: {title: '地址',order: 16,view: 'text', type: 'string',},
memo: {title: '备注',order: 17,view: 'text', type: 'string',},
status: {title: '状态(1启用,0不启用)',order: 18,view: 'text', type: 'string',},
- qywxIdentifier: {title: '对接企业微信的ID',order: 20,view: 'text', type: 'string',},
+ qywxIdentifier: {title: '对接机构微信的ID',order: 20,view: 'text', type: 'string',},
dingIdentifier: {title: '对接钉钉部门的ID',order: 21,view: 'text', type: 'string',},
tenantId: {title: '租户ID',order: 22,view: 'number', type: 'number',},
izLeaf: {title: '是否有叶子节点: 1是0否',order: 23,view: 'number', type: 'number',},