fix: 代码合并恢复

This commit is contained in:
zerosaturation 2026-05-16 02:03:28 +08:00
parent c48378d9fd
commit fd580b1f77
2 changed files with 1 additions and 28 deletions

View File

@ -571,23 +571,6 @@ const hiddenBlockNumber = computed(() => {
return `${str.substring(0, 6)}******`; return `${str.substring(0, 6)}******`;
}); });
// 6 + 6*
const hiddenTxHash = computed(() => {
const hash = assetData.value.tx_hash;
if (!hash) return '******';
if (hash.length <= 6) return hash + '******';
return `${hash.substring(0, 6)}******`;
});
// 6 + 6*
const hiddenBlockNumber = computed(() => {
const num = assetData.value.block_number;
if (!num) return '******';
const str = String(num);
if (str.length <= 6) return str + '******';
return `${str.substring(0, 6)}******`;
});
// //
const copyHash = () => { const copyHash = () => {
const hash = assetData.value.tx_hash; const hash = assetData.value.tx_hash;

View File

@ -196,6 +196,7 @@ import {
buildCastloveFormSnapshot, buildCastloveFormSnapshot,
CRAFT_LENTICULAR_CN, CRAFT_LENTICULAR_CN,
CRAFT_LASER_CARD_CN, CRAFT_LASER_CARD_CN,
CASTLOVE_LASER_ENTRY_KEY,
} from '@/utils/castloveMintForm.js'; } from '@/utils/castloveMintForm.js';
import { import {
startAiImageGenerationFlow, startAiImageGenerationFlow,
@ -762,9 +763,6 @@ const startCraftStudioPipeline = (studioKind) => {
console.error('[CreatePage] craft studio pipeline', e); console.error('[CreatePage] craft studio pipeline', e);
uni.showToast({ title: '启动失败,请重试', icon: 'none' }); uni.showToast({ title: '启动失败,请重试', icon: 'none' });
} }
uni.navigateTo({
url: '/pages/castlove/lenticular-studio',
});
}; };
/** 单图工艺进入镭射工坊Laser-Card 配置页),保存后再上传并创建订单 */ /** 单图工艺进入镭射工坊Laser-Card 配置页),保存后再上传并创建订单 */
@ -811,14 +809,6 @@ const handleLenticularGenerate = () => {
startCraftStudioPipeline(STUDIO_LENTICULAR); startCraftStudioPipeline(STUDIO_LENTICULAR);
}; };
const handleSingleCraftLaserEntry = () => {
if (isLenticularCraft.value) {
uni.showToast({ title: '光栅卡请使用「生成」', icon: 'none' });
return;
}
startCraftStudioPipeline(STUDIO_LASER);
};
// //
const handleTabChange = (newTab) => { const handleTabChange = (newTab) => {
const routes = [ const routes = [