暂存我的页面修改

This commit is contained in:
2024-11-28 17:33:29 +08:00
parent 7bbe58a0d0
commit 520f44a25f
25 changed files with 469 additions and 26 deletions

View File

@@ -0,0 +1,42 @@
<!--pages/aid/detail/index.wxml-->
<navigator title="详情" canBack="{{true}}" />
<van-cell-group>
<van-field
value="{{detail.name}}"
label="名字"
readonly
autosize="{{true}}"
type="textarea"
border="{{ false }}"
/>
<van-field
value="{{detail.level}}"
label="职称"
readonly
autosize="{{true}}"
type="textarea"
border="{{ false }}"
/>
<van-field
value="{{detail.synopsis}}"
label="简介"
readonly
autosize="{{true}}"
type="textarea"
border="{{ false }}"
/>
<van-field
use-input-slot
label="详细"
readonly
border="{{ false }}"
>
</van-field>
<view style="margin-top: 20rpx; margin-left: 30rpx;">
<mp-html content="{{detail.detail}}" />
</view>
</van-cell-group>