Commit 6af2edbfc2691ff621fb2af37c448e47a816701a

Authored by fengwotao
1 parent cf44ef67

feat: 关于软件 官网加上www

... ... @@ -54,10 +54,11 @@
54 54 field: FiledKey.WEBSITE,
55 55 label: handleDecode(t('routes.aboutSoftware.websiteLabel')),
56 56 render: (val: string) => {
  57 + let joinWww = val.substring(0, 8) + 'www.' + val.substring(8);
57 58 return h(
58 59 'span',
59   - { class: 'text-blue-500 cursor-pointer', onClick: () => open(val) },
60   - val
  60 + { class: 'text-blue-500 cursor-pointer', onClick: () => open(joinWww) },
  61 + joinWww
61 62 );
62 63 },
63 64 },
... ...