fix: 隐藏文件上传按钮,去除不必要的log打印
This commit is contained in:
@@ -125,7 +125,6 @@ export const useSessionStore = defineStore('session', () => {
|
||||
// msg: "操作成功",
|
||||
// data: "1935711019560206338"
|
||||
// };
|
||||
console.log('create_session---res--', res);
|
||||
// 创建会话后立刻查询列表会话
|
||||
// 1. 先找到被修改会话在 sessionList 中的索引(假设 sessionList 是按服务端排序的完整列表)
|
||||
const targetIndex = sessionList.value.findIndex(session => session.id === `${res.data}`);
|
||||
|
||||
@@ -21,7 +21,6 @@ export const useUserStore = defineStore(
|
||||
const userInfo = ref<any>();
|
||||
const setUserInfo = (value: any) => {
|
||||
userInfo.value = value;
|
||||
console.log('userInfo', userInfo.value);
|
||||
};
|
||||
const clearUserInfo = () => {
|
||||
userInfo.value = void 0;
|
||||
|
||||
Reference in New Issue
Block a user