first commit

This commit is contained in:
douboer
2026-03-21 18:57:10 +08:00
commit c49aa1a5e9
570 changed files with 107167 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
<view class="about-page" style="{{themeStyle}}">
<scroll-view class="about-scroll" scroll-y="true">
<view class="about-shell">
<view class="about-bg-orb about-bg-orb-left"></view>
<view class="about-bg-orb about-bg-orb-right"></view>
<view class="about-stack">
<view class="about-hero">
<view class="about-home-brand">
<image class="about-home-logo" src="/assets/icons/logo.svg" mode="aspectFit" />
<image class="about-home-wordmark" src="/assets/icons/remoteconn.svg" mode="widthFix" />
<image class="about-home-submark" src="/assets/icons/ai矩连.svg" mode="widthFix" />
<text class="about-home-version">{{homeVersionLine}}</text>
</view>
</view>
<view class="about-card-list">
<button
wx:for="{{items}}"
wx:key="key"
class="about-entry svg-press-btn"
hover-class="svg-press-btn-hover"
hover-start-time="0"
hover-stay-time="80"
data-path="{{item.path}}"
data-press-key="{{item.pressKey}}"
bindtouchstart="onSvgButtonTouchStart"
bindtouchend="onSvgButtonTouchEnd"
bindtouchcancel="onSvgButtonTouchEnd"
bindtap="onOpenItem"
>
<view class="about-entry-inner">
<view class="about-entry-main">
<text class="about-entry-title">{{item.title}}</text>
<text class="about-entry-subtitle">{{item.subtitle}}</text>
</view>
<image
class="about-entry-arrow svg-press-icon"
src="{{pressedSvgButtonKey === item.pressKey ? (accentIcons.right || icons.right || '/assets/icons/right.svg') : (icons.right || '/assets/icons/right.svg')}}"
mode="aspectFit"
/>
</view>
</button>
</view>
</view>
</view>
</scroll-view>
<bottom-nav page="about" />
</view>