用户身份默认值改为1

This commit is contained in:
X1627315083@163.com
2026-03-05 17:33:50 +08:00
parent f781060e7b
commit 02ad8a340a
3 changed files with 4 additions and 4 deletions

View File

@@ -7,7 +7,7 @@
:enabledRedGreenMode="false" :enabledRedGreenMode="false"
/> />
</div> </div>
<div class="btn">123 <div class="btn">
<div class="gallery_btn" @click="exportElement">Export</div> <div class="gallery_btn" @click="exportElement">Export</div>
</div> </div>
</div> </div>

View File

@@ -271,7 +271,7 @@ export default defineComponent({
allCollectionStr.forEach((itemStr:any)=>{ allCollectionStr.forEach((itemStr:any)=>{
let list = [] as any let list = [] as any
allCollection[itemStr.value].forEach((imgItem)=>{ allCollection[itemStr.value].forEach((imgItem)=>{
list.push({url:imgItem.url || imgItem.imgUrl}) list.push({url:imgItem?.url || imgItem?.imgUrl})
}) })
let obj = { let obj = {
value:itemStr.value, value:itemStr.value,

View File

@@ -77,7 +77,7 @@ const userHabit : Module<UserHabit,RootState> = {
followeeCount: '-', followeeCount: '-',
followerCount: '-', followerCount: '-',
accountExtendList:null, accountExtendList:null,
systemList:[], systemList:[1],
expireTime:null, expireTime:null,
language:'', language:'',
organizationId: null, organizationId: null,
@@ -194,7 +194,7 @@ const userHabit : Module<UserHabit,RootState> = {
followeeCount: '-', followeeCount: '-',
followerCount: '-', followerCount: '-',
accountExtendList:null, accountExtendList:null,
systemList:[], systemList:[1],
expireTime:null, expireTime:null,
language:'', language:'',
organizationId: null, organizationId: null,