Files
quinn-accounts/pages/myself/index.wxml
2023-02-12 00:17:42 +08:00

25 lines
1.1 KiB
Plaintext

<view class="my_look">
<t-cell-group theme="card">
<t-cell wx:if="{{noLogin}}" title="点击登录" description="" bind:tap="loginAcc"/>
<view wx:else>
<t-cell title="登录成功" description="欢迎使用南瓜瞄记账!" image="/image/logo.png"/>
<t-cell title="预算管理" arrow url="/pages/budget/index" >
<t-icon name="tools" slot="left-icon" />
</t-cell>
<t-cell title="资产分类管理" arrow url="/pages/settings/account/index" >
<t-icon name="setting" slot="left-icon" />
</t-cell>
<t-cell title="支出分类管理" arrow url="/pages/settings/expend/index" >
<t-icon name="setting" slot="left-icon" />
</t-cell>
<t-cell title="收入分类管理" arrow url="/pages/settings/income/index" >
<t-icon name="setting" slot="left-icon" />
</t-cell>
<t-cell title="关于我们" arrow url="/pages/about/about" >
<t-icon name="gift" slot="left-icon" />
</t-cell>
</view>
</t-cell-group>
</view>
<foot-tab value="label_4"/>