修改:系统名称改为 TuringToken

This commit is contained in:
wangxiaoji 2026-06-29 16:43:53 +08:00
parent f32c114f1a
commit af2abaee09
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ import (
var StartTime = time.Now().Unix() // unit: second
var Version = "v0.0.0" // this hard coding will be replaced automatically when building, no need to manually change
var SystemName = "TokenFactory"
var SystemName = "TuringToken"
var Footer = ""
var Logo = ""
var TopUpLink = ""

View File

@ -143,7 +143,7 @@ export function parseCommissionPercentStringToBps(s) {
export function getSystemName() {
let system_name = localStorage.getItem('system_name');
if (!system_name) return '词元工厂';
if (!system_name) return 'TuringToken';
return system_name;
}