123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- <template>
- <view class="container">
- <uni-card is-full>
- <text class="uni-h6">标签组件多用于商品分类、重点内容显示等场景。</text>
- </uni-card>
- <uni-section title="实心标签" type="line" padding>
- <view class="example-body">
- <view class="tag-view">
- <uni-tag text="标签" type="primary" />
- </view>
- <view class="tag-view">
- <uni-tag text="标签" type="success" />
- </view>
- <view class="tag-view">
- <uni-tag text="标签" type="warning" />
- </view>
- <view class="tag-view">
- <uni-tag text="标签" type="error" />
- </view>
- <view class="tag-view">
- <uni-tag text="标签" />
- </view>
- </view>
- </uni-section>
- <uni-section title="空心标签" subTitle="使用 inverted 属性显示空心表签" type="line" padding>
- <view class="example-body">
- <view class="tag-view">
- <uni-tag :inverted="true" text="标签" type="primary" />
- </view>
- <view class="tag-view">
- <uni-tag :inverted="true" text="标签" type="success" />
- </view>
- <view class="tag-view">
- <uni-tag :inverted="true" text="标签" type="warning" />
- </view>
- <view class="tag-view">
- <uni-tag :inverted="true" text="标签" type="error" />
- </view>
- <view class="tag-view">
- <uni-tag :inverted="true" text="标签" />
- </view>
- </view>
- </uni-section>
- <uni-section title="标签尺寸" subTitle="使用 size 属性控制标签大小" type="line" padding>
- <view class="example-body">
- <view class="tag-view">
- <uni-tag text="标签" type="primary" size="normal" />
- </view>
- <view class="tag-view">
- <uni-tag text="标签" type="primary" size="small" />
- </view>
- <view class="tag-view">
- <uni-tag text="标签" type="primary" size="mini" />
- </view>
- </view>
- </uni-section>
- <uni-section title="圆角样式" subTitle="使用 circle 属性控制标签圆角" type="line" padding>
- <view class="example-body">
- <view class="tag-view">
- <uni-tag :circle="true" text="标签" type="primary" />
- </view>
- <view class="tag-view">
- <uni-tag :circle="true" text="标签" type="primary" size="small" />
- </view>
- <view class="tag-view">
- <uni-tag :circle="true" text="标签" type="primary" size="mini" />
- </view>
- </view>
- </uni-section>
- <uni-section title="标记样式" subTitle="使用 mark 属性显示标记样式" type="line" padding>
- <view class="example-body">
- <view class="tag-view">
- <uni-tag :mark="true" text="标签" type="primary" size="default" />
- </view>
- <view class="tag-view">
- <uni-tag :mark="true" text="标签" type="primary" size="small" />
- </view>
- <view class="tag-view">
- <uni-tag :mark="true" text="标签" type="primary" size="mini" />
- </view>
- </view>
- </uni-section>
- <uni-section title="不可点击状态" subTitle="使用 disabled 属性 显示禁用样式" type="line" padding>
- <view class="example-body">
- <view class="tag-view">
- <uni-tag disabled text="标签" type="primary" />
- </view>
- </view>
- </uni-section>
- <uni-section title="自定义样式" subTitle="使用 custom-style 属性自定义样式" type="line" padding>
- <view class="example-body">
- <view class="tag-view">
- <uni-tag text="自定义标签样式"
- custom-style="background-color: #4335d6; border-color: #4335d6; color: #fff;">
- </uni-tag>
- </view>
- </view>
- </uni-section>
- <uni-section title="点击事件" type="line" padding>
- <view class="example-body">
- <view class="tag-view">
- <uni-tag :type="type" text="标签" @click="setType" />
- </view>
- <view class="tag-view">
- <uni-tag :circle="true" :inverted="inverted" text="标签" type="primary" @click="setInverted" />
- </view>
- </view>
- </uni-section>
- </view>
- </template>
- <script>
- export default {
- components: {},
- data() {
- return {
- type: "default",
- inverted: false,
- };
- },
- methods: {
- setType() {
- let types = ["default", "primary", "success", "warning", "error"];
- let index = types.indexOf(this.type);
- types.splice(index, 1);
- let randomIndex = Math.floor(Math.random() * 4);
- this.type = types[randomIndex];
- },
- setInverted() {
- this.inverted = !this.inverted;
- },
- },
- };
- </script>
- <style lang="scss">
- .example-body {
- /* #ifndef APP-PLUS-NVUE */
- display: flex;
- /* #endif */
- flex-direction: row;
- justify-content: flex-start;
- align-items: flex-end;
- flex-wrap: wrap;
- }
- .tag-view {
- margin-right: 10px;
- }
- </style>
|