更新
This commit is contained in:
parent
876f49fb25
commit
c48165cd78
@ -5,6 +5,14 @@
|
|||||||
|
|
||||||
# CHANGE
|
# CHANGE
|
||||||
|
|
||||||
|
## 1.1.0
|
||||||
|
|
||||||
|
2023年09月11日
|
||||||
|
|
||||||
|
### 修改
|
||||||
|
|
||||||
|
- 更正上次动作的匹配路径、添加了毒和糖 CD 的提示
|
||||||
|
|
||||||
## 1.0.9
|
## 1.0.9
|
||||||
|
|
||||||
2023年09月08日
|
2023年09月08日
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "wuhu-torn-helper",
|
"name": "wuhu-torn-helper",
|
||||||
"version": "1.0.9",
|
"version": "1.1.0",
|
||||||
"description": "芜湖助手",
|
"description": "芜湖助手",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"release": "cross-env NODE_ENV=production rollup -c && node build.mjs",
|
"release": "cross-env NODE_ENV=production rollup -c && node build.mjs",
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@ -28,7 +28,7 @@ export default class FetchEventCallback extends Provider implements ResponseInje
|
|||||||
*/
|
*/
|
||||||
public responseHandler(url: string, response) {
|
public responseHandler(url: string, response) {
|
||||||
// mini profile 中添加上次动作
|
// mini profile 中添加上次动作
|
||||||
if (url.includes('profiles.php?step=getUserNameContextMenu') && this.localConfigWrapper.config.ShowMiniProfLastAct) {
|
if (url.startsWith('/profiles.php?step=getMiniProfile&XID=') && this.localConfigWrapper.config.ShowMiniProfLastAct) {
|
||||||
window.setTimeout(async () => {
|
window.setTimeout(async () => {
|
||||||
let cont = CommonUtils.querySelector('[class*=profile-mini-_userProfileWrapper___]');
|
let cont = CommonUtils.querySelector('[class*=profile-mini-_userProfileWrapper___]');
|
||||||
let resp: MiniProfile = response.json as MiniProfile;
|
let resp: MiniProfile = response.json as MiniProfile;
|
||||||
|
|||||||
19
src/ts/func/utils/getSidebarData.ts
Normal file
19
src/ts/func/utils/getSidebarData.ts
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
import { SessionStoreDataType } from "../../interface/SessionStoreDataType";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 寻找 session storage 中以 sidebarData 开头的数据以对象返回
|
||||||
|
*/
|
||||||
|
export default function (): SessionStoreDataType {
|
||||||
|
let json: string = null
|
||||||
|
for (let i = 0; i < sessionStorage.length; i++) {
|
||||||
|
let key = sessionStorage.key(i)
|
||||||
|
if (key.startsWith('sidebarData')) {
|
||||||
|
json = sessionStorage.getItem(key)
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!json) {
|
||||||
|
throw new TypeError('未找到 sidebarData')
|
||||||
|
}
|
||||||
|
return JSON.parse(json)
|
||||||
|
}
|
||||||
566
src/ts/interface/SessionStoreDataType.ts
Normal file
566
src/ts/interface/SessionStoreDataType.ts
Normal file
@ -0,0 +1,566 @@
|
|||||||
|
/**
|
||||||
|
* 存在于 session storage 中的 sidebarData+uid
|
||||||
|
*/
|
||||||
|
export interface SessionStoreDataType {
|
||||||
|
sliderHintDisabled: boolean
|
||||||
|
selectedStatusIcon: any
|
||||||
|
progressBarFetchActive: boolean
|
||||||
|
linkWithContextMenu: number
|
||||||
|
statusIcons: StatusIcons
|
||||||
|
user: User
|
||||||
|
listsStatuses: ListsStatuses
|
||||||
|
listsLinksStatuses: ListsLinksStatuses
|
||||||
|
bars: Bars
|
||||||
|
account: Account
|
||||||
|
areas: Areas
|
||||||
|
lists: Lists
|
||||||
|
footer: Footer
|
||||||
|
dataSync: boolean
|
||||||
|
sidebarFetched: boolean
|
||||||
|
currentUrl: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface StatusIcons {
|
||||||
|
size: string
|
||||||
|
icons: Icons
|
||||||
|
visible: boolean
|
||||||
|
onTop: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Icons {
|
||||||
|
enbyGender: EnbyGender
|
||||||
|
donator: Donator
|
||||||
|
company: Company
|
||||||
|
faction: Faction
|
||||||
|
education: Education
|
||||||
|
bazaar: Bazaar
|
||||||
|
stock_market: StockMarket
|
||||||
|
booster_cooldown: BoosterCooldown
|
||||||
|
drug_cooldown: DrugCooldown
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface EnbyGender {
|
||||||
|
iconID: string
|
||||||
|
title: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Donator {
|
||||||
|
iconID: string
|
||||||
|
title: string
|
||||||
|
subtitle: string
|
||||||
|
link: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Company {
|
||||||
|
iconID: string
|
||||||
|
title: string
|
||||||
|
subtitle: string
|
||||||
|
link: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Faction {
|
||||||
|
iconID: string
|
||||||
|
title: string
|
||||||
|
subtitle: string
|
||||||
|
link: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Education {
|
||||||
|
iconID: string
|
||||||
|
title: string
|
||||||
|
subtitle: string
|
||||||
|
link: string
|
||||||
|
serverTimestamp: number
|
||||||
|
timerExpiresAt: number
|
||||||
|
isShortFormatTimer: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Bazaar {
|
||||||
|
iconID: string
|
||||||
|
title: string
|
||||||
|
subtitle: string
|
||||||
|
link: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface StockMarket {
|
||||||
|
iconID: string
|
||||||
|
title: string
|
||||||
|
subtitle: string
|
||||||
|
link: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface BoosterCooldown {
|
||||||
|
iconID: string
|
||||||
|
title: string
|
||||||
|
factionUpgrade: string
|
||||||
|
serverTimestamp: number
|
||||||
|
timerExpiresAt: number
|
||||||
|
isShortFormatTimer: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface DrugCooldown {
|
||||||
|
iconID: string
|
||||||
|
title: string
|
||||||
|
subtitle: string
|
||||||
|
serverTimestamp: number
|
||||||
|
timerExpiresAt: number
|
||||||
|
isShortFormatTimer: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface User {
|
||||||
|
userID: number
|
||||||
|
name: string
|
||||||
|
link: string
|
||||||
|
money: Money
|
||||||
|
donator: boolean
|
||||||
|
level: Level
|
||||||
|
points: Points
|
||||||
|
merits: Merits
|
||||||
|
refills: Refills
|
||||||
|
lifeModifier: number
|
||||||
|
status: any
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Money {
|
||||||
|
value: number
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Level {
|
||||||
|
value: number
|
||||||
|
upgradePossibility: boolean
|
||||||
|
link: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Points {
|
||||||
|
value: number
|
||||||
|
link: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Merits {
|
||||||
|
value: number
|
||||||
|
link: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Refills {
|
||||||
|
value: string
|
||||||
|
link: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ListsStatuses {
|
||||||
|
areas: boolean
|
||||||
|
lists: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ListsLinksStatuses {
|
||||||
|
staff: boolean
|
||||||
|
friends: boolean
|
||||||
|
enemies: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Bars {
|
||||||
|
energy: Energy
|
||||||
|
nerve: Nerve
|
||||||
|
happy: Happy
|
||||||
|
life: Life
|
||||||
|
chain: Chain
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Energy {
|
||||||
|
name: string
|
||||||
|
timestampToUpdate: number
|
||||||
|
timeToUpdate: number
|
||||||
|
statstamp: number
|
||||||
|
amount: number
|
||||||
|
max: number
|
||||||
|
step: number
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Nerve {
|
||||||
|
name: string
|
||||||
|
timestampToUpdate: number
|
||||||
|
timeToUpdate: number
|
||||||
|
statstamp: number
|
||||||
|
amount: number
|
||||||
|
max: number
|
||||||
|
step: number
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Happy {
|
||||||
|
name: string
|
||||||
|
timestampToUpdate: number
|
||||||
|
timeToUpdate: number
|
||||||
|
statstamp: number
|
||||||
|
amount: number
|
||||||
|
max: number
|
||||||
|
step: number
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Life {
|
||||||
|
name: string
|
||||||
|
timestampToUpdate: number
|
||||||
|
timeToUpdate: any
|
||||||
|
statstamp: number
|
||||||
|
amount: number
|
||||||
|
max: number
|
||||||
|
step: number
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Chain {
|
||||||
|
name: string
|
||||||
|
timestampToUpdate: number
|
||||||
|
timeToUpdate: number
|
||||||
|
amount: number
|
||||||
|
max: number
|
||||||
|
step: number
|
||||||
|
coolDown: number
|
||||||
|
endCoolDownTimestamp: number
|
||||||
|
bonuses: number
|
||||||
|
link: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Account {
|
||||||
|
messages: Messages
|
||||||
|
events: Events
|
||||||
|
awards: Awards
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Messages {
|
||||||
|
linkOrder: number
|
||||||
|
name: string
|
||||||
|
amount: number
|
||||||
|
link: string
|
||||||
|
icon: string
|
||||||
|
highlightStatus: boolean
|
||||||
|
status: any
|
||||||
|
isMobileOnly: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Events {
|
||||||
|
linkOrder: number
|
||||||
|
name: string
|
||||||
|
amount: number
|
||||||
|
link: string
|
||||||
|
icon: string
|
||||||
|
highlightStatus: boolean
|
||||||
|
status: string
|
||||||
|
isMobileOnly: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Awards {
|
||||||
|
linkOrder: number
|
||||||
|
name: string
|
||||||
|
amount: number
|
||||||
|
link: string
|
||||||
|
icon: string
|
||||||
|
highlightStatus: boolean
|
||||||
|
status: any
|
||||||
|
isMobileOnly: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Areas {
|
||||||
|
messages: Messages2
|
||||||
|
events: Events2
|
||||||
|
awards: Awards2
|
||||||
|
gym: Gym
|
||||||
|
crimes: Crimes
|
||||||
|
items: Items
|
||||||
|
city: City
|
||||||
|
missions: Missions
|
||||||
|
casino: Casino
|
||||||
|
calendar: Calendar
|
||||||
|
education: Education2
|
||||||
|
properties: Properties
|
||||||
|
friends_list: FriendsList
|
||||||
|
enemies_list: EnemiesList
|
||||||
|
elimination: Elimination
|
||||||
|
community_events: CommunityEvents
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Messages2 {
|
||||||
|
linkOrder: number
|
||||||
|
name: string
|
||||||
|
amount: number
|
||||||
|
link: string
|
||||||
|
icon: string
|
||||||
|
highlightStatus: boolean
|
||||||
|
status: any
|
||||||
|
isMobileOnly: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Events2 {
|
||||||
|
linkOrder: number
|
||||||
|
name: string
|
||||||
|
amount: number
|
||||||
|
link: string
|
||||||
|
icon: string
|
||||||
|
highlightStatus: boolean
|
||||||
|
status: string
|
||||||
|
isMobileOnly: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Awards2 {
|
||||||
|
linkOrder: number
|
||||||
|
name: string
|
||||||
|
amount: number
|
||||||
|
link: string
|
||||||
|
icon: string
|
||||||
|
highlightStatus: boolean
|
||||||
|
status: any
|
||||||
|
isMobileOnly: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Gym {
|
||||||
|
linkOrder: number
|
||||||
|
name: string
|
||||||
|
shortName: any
|
||||||
|
link: string
|
||||||
|
icon: string
|
||||||
|
styleStatus: any
|
||||||
|
highlightStatus: boolean
|
||||||
|
status: any
|
||||||
|
activeStatusUrlRegex: any
|
||||||
|
amount: any
|
||||||
|
isMobileOnly: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Crimes {
|
||||||
|
linkOrder: number
|
||||||
|
name: string
|
||||||
|
shortName: any
|
||||||
|
link: string
|
||||||
|
icon: string
|
||||||
|
styleStatus: any
|
||||||
|
highlightStatus: boolean
|
||||||
|
status: any
|
||||||
|
activeStatusUrlRegex: any
|
||||||
|
amount: any
|
||||||
|
isMobileOnly: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Items {
|
||||||
|
linkOrder: number
|
||||||
|
name: string
|
||||||
|
shortName: any
|
||||||
|
link: string
|
||||||
|
icon: string
|
||||||
|
styleStatus: any
|
||||||
|
highlightStatus: boolean
|
||||||
|
status: any
|
||||||
|
activeStatusUrlRegex: any
|
||||||
|
amount: any
|
||||||
|
isMobileOnly: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface City {
|
||||||
|
linkOrder: number
|
||||||
|
name: string
|
||||||
|
shortName: any
|
||||||
|
link: string
|
||||||
|
icon: string
|
||||||
|
styleStatus: any
|
||||||
|
highlightStatus: boolean
|
||||||
|
status: any
|
||||||
|
activeStatusUrlRegex: any
|
||||||
|
amount: any
|
||||||
|
isMobileOnly: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Missions {
|
||||||
|
linkOrder: number
|
||||||
|
name: string
|
||||||
|
shortName: any
|
||||||
|
link: string
|
||||||
|
icon: string
|
||||||
|
styleStatus: any
|
||||||
|
highlightStatus: boolean
|
||||||
|
status: any
|
||||||
|
activeStatusUrlRegex: any
|
||||||
|
amount: any
|
||||||
|
isMobileOnly: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Casino {
|
||||||
|
linkOrder: number
|
||||||
|
name: string
|
||||||
|
shortName: any
|
||||||
|
link: string
|
||||||
|
icon: string
|
||||||
|
styleStatus: any
|
||||||
|
highlightStatus: boolean
|
||||||
|
status: any
|
||||||
|
activeStatusUrlRegex: any
|
||||||
|
amount: any
|
||||||
|
isMobileOnly: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Calendar {
|
||||||
|
linkOrder: number
|
||||||
|
name: string
|
||||||
|
shortName: string
|
||||||
|
link: string
|
||||||
|
icon: string
|
||||||
|
styleStatus: any
|
||||||
|
highlightStatus: boolean
|
||||||
|
status: any
|
||||||
|
activeStatusUrlRegex: any
|
||||||
|
amount: any
|
||||||
|
isMobileOnly: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Education2 {
|
||||||
|
linkOrder: number
|
||||||
|
name: string
|
||||||
|
shortName: string
|
||||||
|
link: string
|
||||||
|
icon: string
|
||||||
|
styleStatus: any
|
||||||
|
highlightStatus: boolean
|
||||||
|
status: any
|
||||||
|
activeStatusUrlRegex: any
|
||||||
|
amount: any
|
||||||
|
isMobileOnly: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Properties {
|
||||||
|
linkOrder: number
|
||||||
|
name: string
|
||||||
|
shortName: string
|
||||||
|
link: string
|
||||||
|
icon: string
|
||||||
|
styleStatus: any
|
||||||
|
highlightStatus: boolean
|
||||||
|
status: any
|
||||||
|
activeStatusUrlRegex: any
|
||||||
|
amount: any
|
||||||
|
isMobileOnly: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface FriendsList {
|
||||||
|
linkOrder: number
|
||||||
|
name: string
|
||||||
|
icon: string
|
||||||
|
link: string
|
||||||
|
elements: any
|
||||||
|
status: any
|
||||||
|
isMobileOnly: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface EnemiesList {
|
||||||
|
linkOrder: number
|
||||||
|
name: string
|
||||||
|
icon: string
|
||||||
|
link: string
|
||||||
|
elements: Element[]
|
||||||
|
status: any
|
||||||
|
isMobileOnly: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Element {
|
||||||
|
name: string
|
||||||
|
link: string
|
||||||
|
status: string
|
||||||
|
lastAction: number
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Elimination {
|
||||||
|
linkOrder: number
|
||||||
|
name: string
|
||||||
|
shortName: string
|
||||||
|
link: string
|
||||||
|
icon: string
|
||||||
|
styleStatus: string
|
||||||
|
highlightStatus: boolean
|
||||||
|
status: any
|
||||||
|
activeStatusUrlRegex: any
|
||||||
|
amount: any
|
||||||
|
isMobileOnly: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface CommunityEvents {
|
||||||
|
linkOrder: number
|
||||||
|
name: string
|
||||||
|
shortName: string
|
||||||
|
link: string
|
||||||
|
icon: string
|
||||||
|
styleStatus: string
|
||||||
|
highlightStatus: boolean
|
||||||
|
status: any
|
||||||
|
activeStatusUrlRegex: any
|
||||||
|
amount: any
|
||||||
|
isMobileOnly: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Lists {
|
||||||
|
company_list: CompanyList
|
||||||
|
faction_list: FactionList
|
||||||
|
friends_list: FriendsList2
|
||||||
|
enemies_list: EnemiesList2
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface CompanyList {
|
||||||
|
linkOrder: number
|
||||||
|
name: string
|
||||||
|
icon: string
|
||||||
|
link: string
|
||||||
|
elements: Element2[]
|
||||||
|
status: any
|
||||||
|
isMobileOnly: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Element2 {
|
||||||
|
name: string
|
||||||
|
link: string
|
||||||
|
status: string
|
||||||
|
lastAction: number
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface FactionList {
|
||||||
|
linkOrder: number
|
||||||
|
name: string
|
||||||
|
icon: string
|
||||||
|
link: string
|
||||||
|
elements: Element3[]
|
||||||
|
status: any
|
||||||
|
isMobileOnly: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Element3 {
|
||||||
|
name: string
|
||||||
|
link: string
|
||||||
|
status: string
|
||||||
|
lastAction: number
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface FriendsList2 {
|
||||||
|
linkOrder: number
|
||||||
|
name: string
|
||||||
|
icon: string
|
||||||
|
link: string
|
||||||
|
elements: any
|
||||||
|
status: any
|
||||||
|
isMobileOnly: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface EnemiesList2 {
|
||||||
|
linkOrder: number
|
||||||
|
name: string
|
||||||
|
icon: string
|
||||||
|
link: string
|
||||||
|
elements: Element4[]
|
||||||
|
status: any
|
||||||
|
isMobileOnly: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Element4 {
|
||||||
|
name: string
|
||||||
|
link: string
|
||||||
|
status: string
|
||||||
|
lastAction: number
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Footer {
|
||||||
|
serverName: string
|
||||||
|
dayTextualFormat: string
|
||||||
|
dateFormat: string
|
||||||
|
dayTimeFormat: string
|
||||||
|
}
|
||||||
@ -160,6 +160,7 @@ import PTMarketView from "./PTMarketView.vue";
|
|||||||
import QuickCrime from "./QuickCrime.vue";
|
import QuickCrime from "./QuickCrime.vue";
|
||||||
import UpdateDate from "./UpdateScript.vue";
|
import UpdateDate from "./UpdateScript.vue";
|
||||||
import VirusProgramming from "./VirusProgramming.vue";
|
import VirusProgramming from "./VirusProgramming.vue";
|
||||||
|
import getSidebarData from "../ts/func/utils/getSidebarData";
|
||||||
|
|
||||||
const logger = inject(LoggerKey);
|
const logger = inject(LoggerKey);
|
||||||
const quickGymTrain = inject(QuickGymTrainKey);
|
const quickGymTrain = inject(QuickGymTrainKey);
|
||||||
@ -169,11 +170,22 @@ type MenuItem = { title: string, template?: Component, handler?: Function };
|
|||||||
const menuItemList: MenuItem[] = [
|
const menuItemList: MenuItem[] = [
|
||||||
{
|
{
|
||||||
title: '💊 吃 XAN',
|
title: '💊 吃 XAN',
|
||||||
handler: () => useItem('206'),
|
handler: () => {
|
||||||
|
useItem('206')
|
||||||
|
const sidebarData = getSidebarData()
|
||||||
|
const cd = ((sidebarData.statusIcons.icons.drug_cooldown?.timerExpiresAt - sidebarData.statusIcons.icons.drug_cooldown?.serverTimestamp) / 36 | 0) / 100
|
||||||
|
ElMessage({ message: '毒 CD: ' + cd + 'h', showClose: true })
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '🍺 喝啤酒',
|
title: '🍺 喝啤酒',
|
||||||
handler: () => useItem('180'),
|
handler: () => {
|
||||||
|
useItem('180')
|
||||||
|
const sidebarData = getSidebarData()
|
||||||
|
const nerve = sidebarData.bars.nerve.amount
|
||||||
|
const cd = (sidebarData.statusIcons.icons.booster_cooldown?.timerExpiresAt - sidebarData.statusIcons.icons.booster_cooldown?.serverTimestamp) / 3600 | 0
|
||||||
|
ElMessage({ message: 'N: ' + nerve + ', CD: ' + cd + 'h', showClose: true })
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '♻️ REFILL',
|
title: '♻️ REFILL',
|
||||||
@ -252,10 +264,6 @@ const menuItemList: MenuItem[] = [
|
|||||||
Container.factory(ChangeLogHandler).show()
|
Container.factory(ChangeLogHandler).show()
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
// {
|
|
||||||
// title: '⚙️ 插件配置',
|
|
||||||
// template: Config,
|
|
||||||
// },
|
|
||||||
];
|
];
|
||||||
const drawer = ref(false);
|
const drawer = ref(false);
|
||||||
const isMobilePhone = ref(false);
|
const isMobilePhone = ref(false);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user