Commit 3290746fef64b6c833b443114865af41931dac77

Authored by xp.Huang
2 parents a4c0aff7 16472ea5

Merge branch 'ft' into 'main_dev'

feat: 关于软件 官网加上www

See merge request yunteng/thingskit-front!808
... ... @@ -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 },
... ...