fix(用户认证): 更新实名认证状态默认值为1并优化用户信息获取逻辑
修复实名认证状态默认值为0的问题,改为1以匹配业务需求 优化用户信息获取逻辑,使用事件监听替代轮询方式 更新相关构建文件和静态资源版本
This commit is contained in:
@@ -3454,7 +3454,7 @@ const useEmptyValuesProps = buildProps({
|
||||
});
|
||||
|
||||
const keysOf = (arr) => Object.keys(arr);
|
||||
// shared_cjs_prodExports.hasOwn;
|
||||
shared_cjs_prodExports.hasOwn;
|
||||
|
||||
const globalConfig = ref();
|
||||
function useGlobalConfig(key, defaultValue = void 0) {
|
||||
@@ -5781,7 +5781,7 @@ const _sfc_main$2 = {
|
||||
const route = useRoute();
|
||||
const baseURL = "https://ask.gter.net";
|
||||
let type = ref("list");
|
||||
let realname = ref(0);
|
||||
let realname = ref(1);
|
||||
const openAttest = () => {
|
||||
const handleAttestClose = () => {
|
||||
var _a;
|
||||
|
||||
Reference in New Issue
Block a user