2.1.0-publish
This commit is contained in:
parent
dd8d5ee624
commit
f2630bfac5
|
|
@ -2,6 +2,7 @@
|
|||
"navigationBarTitleText": "用户详情",
|
||||
"usingComponents": {
|
||||
"actionPanel": "../../../../components/func/actionPanel/index",
|
||||
"oak-icon": "../../../../components/icon/index",
|
||||
"l-button": "../../../../miniprogram_npm/lin-ui/button/index",
|
||||
"l-avatar": "../../../../miniprogram_npm/lin-ui/avatar/index",
|
||||
"l-list": "../../../../miniprogram_npm/lin-ui/list/index",
|
||||
|
|
|
|||
|
|
@ -34,15 +34,6 @@
|
|||
background-color: #fff;
|
||||
}
|
||||
|
||||
.avatar {
|
||||
font-size: 188rpx;
|
||||
color: @oak-text-color-secondary;
|
||||
height: 200rpx;
|
||||
width: 200rpx;
|
||||
border-radius: 20rpx;
|
||||
margin-top: 20rpx;
|
||||
margin-bottom: 20rpx;
|
||||
}
|
||||
|
||||
.userInfo {
|
||||
display: flex;
|
||||
|
|
|
|||
12
package.json
12
package.json
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "oak-general-business",
|
||||
"version": "2.0.3",
|
||||
"version": "2.1.0",
|
||||
"description": "oak框架中公共业务逻辑的实现",
|
||||
"author": {
|
||||
"name": "XuChang"
|
||||
|
|
@ -16,11 +16,11 @@
|
|||
"@wangeditor/editor-for-react": "^1.0.4",
|
||||
"classnames": "^2.3.1",
|
||||
"dayjs": "^1.11.5",
|
||||
"oak-common-aspect": "file:../oak-common-aspect",
|
||||
"oak-domain": "file:../oak-domain",
|
||||
"oak-external-sdk": "file:../oak-external-sdk",
|
||||
"oak-frontend-base": "file:../oak-frontend-base",
|
||||
"oak-memory-tree-store": "file:../oak-memory-tree-store",
|
||||
"oak-common-aspect": "^2.1.0",
|
||||
"oak-domain": "^2.1.0",
|
||||
"oak-external-sdk": "^1.0.5",
|
||||
"oak-frontend-base": "^2.1.0",
|
||||
"oak-memory-tree-store": "^2.1.0",
|
||||
"qr-image": "^3.2.0",
|
||||
"react-scripts": "^5.0.1",
|
||||
"sha1": "^1.1.1",
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
"navigationBarTitleText": "用户详情",
|
||||
"usingComponents": {
|
||||
"actionPanel": "../../../../components/func/actionPanel/index",
|
||||
"oak-icon": "../../../../components/icon/index",
|
||||
"l-button": "../../../../miniprogram_npm/lin-ui/button/index",
|
||||
"l-avatar": "../../../../miniprogram_npm/lin-ui/avatar/index",
|
||||
"l-list": "../../../../miniprogram_npm/lin-ui/list/index",
|
||||
|
|
|
|||
|
|
@ -34,15 +34,6 @@
|
|||
background-color: #fff;
|
||||
}
|
||||
|
||||
.avatar {
|
||||
font-size: 188rpx;
|
||||
color: @oak-text-color-secondary;
|
||||
height: 200rpx;
|
||||
width: 200rpx;
|
||||
border-radius: 20rpx;
|
||||
margin-top: 20rpx;
|
||||
margin-bottom: 20rpx;
|
||||
}
|
||||
|
||||
.userInfo {
|
||||
display: flex;
|
||||
|
|
|
|||
|
|
@ -9,11 +9,36 @@
|
|||
</block>
|
||||
</view>
|
||||
<view class="col">
|
||||
<l-list title="昵称" right-desc="{{nickname || '未设置'}}"/>
|
||||
<l-list title="姓名" right-desc="{{name || '未设置'}}"/>
|
||||
<l-list title="手机号" right-desc="{{mobileText}}"/>
|
||||
<l-list title="用户状态" tag-context="{{userState}}"/>
|
||||
<l-list title="用户状态" tag-context="{{idState}}"/>
|
||||
<l-list right-desc="{{nickname || '未设置'}}" is-link="{{false}}">
|
||||
<view slot="left-section">
|
||||
<oak-icon name="user" />
|
||||
昵称
|
||||
</view>
|
||||
</l-list>
|
||||
<l-list right-desc="{{name || '未设置'}}" is-link="{{false}}">
|
||||
<view slot="left-section">
|
||||
<oak-icon name="signature" />
|
||||
姓名
|
||||
</view>
|
||||
</l-list>
|
||||
<l-list right-desc="{{mobileText}}" is-link="{{false}}">
|
||||
<view slot="left-section">
|
||||
<oak-icon name="mobile" />
|
||||
手机号
|
||||
</view>
|
||||
</l-list>
|
||||
<l-list tag-position="right" tag-content="{{userState}}" tag-plain="{{true}}" is-link="{{false}}">
|
||||
<view slot="left-section">
|
||||
<oak-icon name="artstation" />
|
||||
用户状态
|
||||
</view>
|
||||
</l-list>
|
||||
<l-list tag-position="right" tag-content="{{idState}}" tag-plain="{{true}}" is-link="{{false}}">
|
||||
<view slot="left-section">
|
||||
<oak-icon name="chess-bishop" />
|
||||
认证状态
|
||||
</view>
|
||||
</l-list>
|
||||
</view>
|
||||
<view style="flex:1" />
|
||||
<actionPanel actions="{{oakLegalActions}}" actionDescriptions="{{actionDescriptions}}" bind:click="onActionClick" />
|
||||
|
|
|
|||
Loading…
Reference in New Issue