New Huajishe Check ChaoXing
This commit is contained in:
@@ -0,0 +1,50 @@
|
||||
:: BASE_DOC ::
|
||||
|
||||
## API
|
||||
|
||||
### SideBar Props
|
||||
|
||||
name | type | default | description | required
|
||||
-- | -- | -- | -- | --
|
||||
style | Object | - | CSS(Cascading Style Sheets) | N
|
||||
custom-style | Object | - | CSS(Cascading Style Sheets),used to set style on virtual component | N
|
||||
value | String / Number | - | \- | N
|
||||
default-value | String / Number | undefined | uncontrolled property | N
|
||||
|
||||
### SideBar Events
|
||||
|
||||
name | params | description
|
||||
-- | -- | --
|
||||
change | `(value: number \| string, label: string)` | \-
|
||||
click | `(value: number \| string, label: string)` | \-
|
||||
|
||||
|
||||
### SideBarItem Props
|
||||
|
||||
name | type | default | description | required
|
||||
-- | -- | -- | -- | --
|
||||
style | Object | - | CSS(Cascading Style Sheets) | N
|
||||
custom-style | Object | - | CSS(Cascading Style Sheets),used to set style on virtual component | N
|
||||
badge-props | Object | - | Typescript:`BadgeProps`,[Badge API Documents](./badge?tab=api)。[see more ts definition](https://github.com/Tencent/tdesign-miniprogram/tree/develop/src/side-bar-item/type.ts) | N
|
||||
disabled | Boolean | false | \- | N
|
||||
icon | String / Object | - | \- | N
|
||||
label | String | - | \- | N
|
||||
value | String / Number | - | \- | N
|
||||
|
||||
### CSS Variables
|
||||
|
||||
The component provides the following CSS variables, which can be used to customize styles.
|
||||
Name | Default Value | Description
|
||||
-- | -- | --
|
||||
--td-side-bar-bg-color | @bg-color-secondarycontainer | -
|
||||
--td-side-bar-height | 100% | -
|
||||
--td-side-bar-width | 206rpx | -
|
||||
--td-side-bar-active-color | @brand-color | -
|
||||
--td-side-bar-bg-color | @bg-color-secondarycontainer | -
|
||||
--td-side-bar-border-radius | 18rpx | -
|
||||
--td-side-bar-color | @font-gray-1 | -
|
||||
--td-side-bar-disabled-color | @font-gray-4 | -
|
||||
--td-side-bar-font-size | 32rpx | -
|
||||
--td-side-bar-icon-size | 40rpx | -
|
||||
--td-side-bar-item-height | 112rpx | -
|
||||
--td-side-bar-item-line-height | 48rpx | -
|
||||
@@ -0,0 +1,99 @@
|
||||
---
|
||||
title: SideBar 侧边栏
|
||||
description: 用于内容分类后的展示切换。
|
||||
spline: navigation
|
||||
isComponent: true
|
||||
---
|
||||
|
||||
<div style="background: #ecf2fe; display: flex; align-items: center; line-height: 20px; padding: 14px 24px; border-radius: 3px; color: #555a65">
|
||||
<svg fill="none" viewBox="0 0 16 16" width="16px" height="16px" style="margin-right: 5px">
|
||||
<path fill="#0052d9" d="M8 15A7 7 0 108 1a7 7 0 000 14zM7.4 4h1.2v1.2H7.4V4zm.1 2.5h1V12h-1V6.5z" fillOpacity="0.9"></path>
|
||||
</svg>
|
||||
该组件于 0.25.0 版本上线,请留意版本。
|
||||
</div>
|
||||
|
||||
## 引入
|
||||
|
||||
全局引入,在 miniprogram 根目录下的`app.json`中配置,局部引入,在需要引入的页面或组件的`index.json`中配置。
|
||||
|
||||
```json
|
||||
{
|
||||
"usingComponents": {
|
||||
"t-side-bar": "tdesign-miniprogram/side-bar/side-bar",
|
||||
"t-side-bar-item": "tdesign-miniprogram/side-bar-item/side-bar-item",
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
## 代码演示
|
||||
|
||||
<a href="https://developers.weixin.qq.com/s/fL9gNim87GSp" title="在开发者工具中预览效果" target="_blank" rel="noopener noreferrer"> 在开发者工具中预览效果 </a>
|
||||
|
||||
<blockquote style="background-color: #d9e1ff; font-size: 15px; line-height: 26px;margin: 16px 0 0;padding: 16px; border-radius: 6px; color: #0052d9" >
|
||||
<p>Tips: 请确保开发者工具为打开状态。导入开发者工具后,依次执行:npm i > 构建npm包 > 勾选 "将JS编译成ES5"</p>
|
||||
</blockquote>
|
||||
|
||||
### 锚点用法
|
||||
|
||||
{{ base }}
|
||||
|
||||
### 切页用法
|
||||
|
||||
{{ switch }}
|
||||
|
||||
### 带图标侧边导航
|
||||
|
||||
{{ with-icon }}
|
||||
|
||||
### 自定义样式
|
||||
|
||||
{{ custom }}
|
||||
|
||||
## API
|
||||
|
||||
### SideBar Props
|
||||
|
||||
名称 | 类型 | 默认值 | 描述 | 必传
|
||||
-- | -- | -- | -- | --
|
||||
style | Object | - | 样式 | N
|
||||
custom-style | Object | - | 样式,一般用于开启虚拟化组件节点场景 | N
|
||||
value | String / Number | - | 选项值 | N
|
||||
default-value | String / Number | undefined | 选项值。非受控属性 | N
|
||||
|
||||
### SideBar Events
|
||||
|
||||
名称 | 参数 | 描述
|
||||
-- | -- | --
|
||||
change | `(value: number \| string, label: string)` | 选项值发生变化时触发
|
||||
click | `(value: number \| string, label: string)` | 点击选项时触发
|
||||
|
||||
|
||||
### SideBarItem Props
|
||||
|
||||
名称 | 类型 | 默认值 | 描述 | 必传
|
||||
-- | -- | -- | -- | --
|
||||
style | Object | - | 样式 | N
|
||||
custom-style | Object | - | 样式,一般用于开启虚拟化组件节点场景 | N
|
||||
badge-props | Object | - | 透传至 Badge 组件。TS 类型:`BadgeProps`,[Badge API Documents](./badge?tab=api)。[详细类型定义](https://github.com/Tencent/tdesign-miniprogram/tree/develop/src/side-bar-item/type.ts) | N
|
||||
disabled | Boolean | false | 是否禁用 | N
|
||||
icon | String / Object | - | 图标,传对象则透传至 Icon | N
|
||||
label | String | - | 展示的标签 | N
|
||||
value | String / Number | - | 当前选项的值 | N
|
||||
|
||||
### CSS Variables
|
||||
|
||||
组件提供了下列 CSS 变量,可用于自定义样式。
|
||||
名称 | 默认值 | 描述
|
||||
-- | -- | --
|
||||
--td-side-bar-bg-color | @bg-color-secondarycontainer | -
|
||||
--td-side-bar-height | 100% | -
|
||||
--td-side-bar-width | 206rpx | -
|
||||
--td-side-bar-active-color | @brand-color | -
|
||||
--td-side-bar-bg-color | @bg-color-secondarycontainer | -
|
||||
--td-side-bar-border-radius | 18rpx | -
|
||||
--td-side-bar-color | @font-gray-1 | -
|
||||
--td-side-bar-disabled-color | @font-gray-4 | -
|
||||
--td-side-bar-font-size | 32rpx | -
|
||||
--td-side-bar-icon-size | 40rpx | -
|
||||
--td-side-bar-item-height | 112rpx | -
|
||||
--td-side-bar-item-line-height | 48rpx | -
|
||||
3
HuajisheCheckChaoXing/miniprogram_npm/tdesign-miniprogram/side-bar/props.d.ts
vendored
Normal file
3
HuajisheCheckChaoXing/miniprogram_npm/tdesign-miniprogram/side-bar/props.d.ts
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
import { TdSideBarProps } from './type';
|
||||
declare const props: TdSideBarProps;
|
||||
export default props;
|
||||
@@ -0,0 +1,10 @@
|
||||
const props = {
|
||||
value: {
|
||||
type: null,
|
||||
value: null,
|
||||
},
|
||||
defaultValue: {
|
||||
type: null,
|
||||
},
|
||||
};
|
||||
export default props;
|
||||
24
HuajisheCheckChaoXing/miniprogram_npm/tdesign-miniprogram/side-bar/side-bar.d.ts
vendored
Normal file
24
HuajisheCheckChaoXing/miniprogram_npm/tdesign-miniprogram/side-bar/side-bar.d.ts
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
import { SuperComponent, RelationsOptions } from '../common/src/index';
|
||||
export default class SideBar extends SuperComponent {
|
||||
externalClasses: string[];
|
||||
children: any[];
|
||||
relations: RelationsOptions;
|
||||
controlledProps: {
|
||||
key: string;
|
||||
event: string;
|
||||
}[];
|
||||
properties: import("./type").TdSideBarProps;
|
||||
observers: {
|
||||
value(v: any): void;
|
||||
};
|
||||
data: {
|
||||
classPrefix: string;
|
||||
prefix: string;
|
||||
};
|
||||
methods: {
|
||||
doChange({ value, label }: {
|
||||
value: any;
|
||||
label: any;
|
||||
}): void;
|
||||
};
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
||||
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
||||
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
||||
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
||||
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
||||
};
|
||||
import { SuperComponent, wxComponent } from '../common/src/index';
|
||||
import config from '../common/config';
|
||||
import props from './props';
|
||||
const { prefix } = config;
|
||||
const name = `${prefix}-side-bar`;
|
||||
const relationsPath = '../side-bar-item/side-bar-item';
|
||||
let SideBar = class SideBar extends SuperComponent {
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
this.externalClasses = [`${prefix}-class`];
|
||||
this.children = [];
|
||||
this.relations = {
|
||||
[relationsPath]: {
|
||||
type: 'child',
|
||||
linked(child) {
|
||||
this.children.push(child);
|
||||
},
|
||||
unlinked(child) {
|
||||
const index = this.children.findIndex((item) => item === child);
|
||||
this.children.splice(index, 1);
|
||||
},
|
||||
},
|
||||
};
|
||||
this.controlledProps = [
|
||||
{
|
||||
key: 'value',
|
||||
event: 'change',
|
||||
},
|
||||
];
|
||||
this.properties = props;
|
||||
this.observers = {
|
||||
value(v) {
|
||||
this.$children.forEach((item) => {
|
||||
item.updateActive(v);
|
||||
});
|
||||
},
|
||||
};
|
||||
this.data = {
|
||||
classPrefix: name,
|
||||
prefix,
|
||||
};
|
||||
this.methods = {
|
||||
doChange({ value, label }) {
|
||||
this._trigger('change', { value, label });
|
||||
},
|
||||
};
|
||||
}
|
||||
};
|
||||
SideBar = __decorate([
|
||||
wxComponent()
|
||||
], SideBar);
|
||||
export default SideBar;
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"component": true,
|
||||
"styleIsolation": "apply-shared",
|
||||
"usingComponents": {
|
||||
"t-side-bar-item": "../side-bar-item/side-bar-item"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
<wxs src="../common/utils.wxs" module="_" />
|
||||
|
||||
<view class="{{classPrefix}} class {{prefix}}-class" style="{{_._style([style, customStyle])}}">
|
||||
<slot />
|
||||
<view class="{{classPrefix}}__padding"></view>
|
||||
</view>
|
||||
@@ -0,0 +1,41 @@
|
||||
.t-float-left {
|
||||
float: left;
|
||||
}
|
||||
.t-float-right {
|
||||
float: right;
|
||||
}
|
||||
@keyframes tdesign-fade-out {
|
||||
from {
|
||||
opacity: 1;
|
||||
}
|
||||
to {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
.hotspot-expanded.relative {
|
||||
position: relative;
|
||||
}
|
||||
.hotspot-expanded::after {
|
||||
content: '';
|
||||
display: block;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
transform: scale(1.5);
|
||||
}
|
||||
.t-side-bar {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: var(--td-side-bar-width, 206rpx);
|
||||
height: var(--td-side-bar-height, 100%);
|
||||
overflow-y: auto;
|
||||
}
|
||||
.t-side-bar::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
.t-side-bar__padding {
|
||||
flex: 1;
|
||||
background-color: var(--td-side-bar-bg-color, var(--td-bg-color-secondarycontainer, var(--td-gray-color-1, #f3f3f3)));
|
||||
}
|
||||
10
HuajisheCheckChaoXing/miniprogram_npm/tdesign-miniprogram/side-bar/type.d.ts
vendored
Normal file
10
HuajisheCheckChaoXing/miniprogram_npm/tdesign-miniprogram/side-bar/type.d.ts
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
export interface TdSideBarProps {
|
||||
value?: {
|
||||
type: null;
|
||||
value?: string | number;
|
||||
};
|
||||
defaultValue?: {
|
||||
type: null;
|
||||
value?: string | number;
|
||||
};
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
export {};
|
||||
Reference in New Issue
Block a user