123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258 |
- <template>
- <view>
- <view class="uni-padding-wrap uni-common-mt">
- <uni-segmented-control :current="current" :values="items" :style-type="styleType" :active-color="activeColor" @clickItem="onClickItem" />
- </view>
- <view class="content">
- <view v-if="current === 0"><text class="content-text">选项卡1的内容</text></view>
- <view v-if="current === 1"><text class="content-text">选项卡2的内容</text></view>
- <view v-if="current === 2"><text class="content-text">选项卡3的内容</text></view>
- </view>
- <uni-section title="Style" type="line"></uni-section>
- <view class="example-body">
- <radio-group class="uni-list " @change="styleChange">
- <view v-for="(item, index) in styles" :key="index" class="uni-list-item">
- <view class="uni-list-item__container">
- <view class="uni-list-item__content">
- <text class="uni-list-item__content-title">{{ item.text }}</text>
- </view>
- <view class="uni-list-item__extra">
- <radio :value="item.value" :checked="item.checked" />
- </view>
- </view>
- </view>
- </radio-group>
- </view>
- <uni-section title="Color" type="line"></uni-section>
- <view class="example-body">
- <radio-group class="uni-list" @change="colorChange">
- <view v-for="(item, index) in colors" :key="index" class="uni-list-item">
- <view class="uni-list-item__container">
- <view class="uni-list-item__content">
- <view :style="{ backgroundColor: item }" class="color-tag" />
- </view>
- <view class="uni-list-item__extra">
- <radio :value="item" :checked="index === colorIndex" />
- </view>
- </view>
- </view>
- </radio-group>
- </view>
- </view>
- </template>
- <script>
- export default {
- components: {},
- data() {
- return {
- items: ['选项卡1', '选项卡2', '选项卡3'],
- styles: [{
- value: 'button',
- text: '按钮',
- checked: true
- },
- {
- value: 'text',
- text: '文字'
- }
- ],
- colors: ['#007aff', '#4cd964', '#dd524d'],
- current: 0,
- colorIndex: 0,
- activeColor: '#007aff',
- styleType: 'button'
- }
- },
- methods: {
- onClickItem(e) {
- if (this.current !== e.currentIndex) {
- this.current = e.currentIndex
- }
- },
- styleChange(e) {
- if (this.styleType !== e.detail.value) {
- this.styleType = e.detail.value
- }
- },
- colorChange(e) {
- if (this.styleType !== e.detail.value) {
- console.log(e.detail.value);
- this.activeColor = e.detail.value
- }
- }
- }
- }
- </script>
- <style>
- @charset "UTF-8";
- /* 头条小程序组件内不能引入字体 */
- /* #ifdef MP-TOUTIAO */
- @font-face {
- font-family: uniicons;
- font-weight: normal;
- font-style: normal;
- src: url("~@/static/uni.ttf") format("truetype");
- }
- /* #endif */
- /* #ifndef APP-NVUE */
- page {
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- background-color: #efeff4;
- min-height: 100%;
- height: auto;
- }
- view {
- font-size: 14px;
- line-height: inherit;
- }
- .example {
- padding: 0 15px 15px;
- }
- .example-info {
- padding: 15px;
- color: #3b4144;
- background: #ffffff;
- }
- .example-body {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex-direction: row;
- flex-wrap: wrap;
- justify-content: center;
- padding: 0;
- font-size: 14px;
- background-color: #ffffff;
- }
- /* #endif */
- .example {
- padding: 0 15px;
- }
- .example-info {
- /* #ifndef APP-NVUE */
- display: block;
- /* #endif */
- padding: 15px;
- color: #3b4144;
- background-color: #ffffff;
- font-size: 14px;
- line-height: 20px;
- }
- .example-info-text {
- font-size: 14px;
- line-height: 20px;
- color: #3b4144;
- }
- .example-body {
- flex-direction: column;
- padding: 15px;
- background-color: #ffffff;
- }
- .word-btn-white {
- font-size: 18px;
- color: #FFFFFF;
- }
- .word-btn {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex-direction: row;
- align-items: center;
- justify-content: center;
- border-radius: 6px;
- height: 48px;
- margin: 15px;
- background-color: #007AFF;
- }
- .word-btn--hover {
- background-color: #4ca2ff;
- }
- .example-body {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex-direction: row;
- padding: 0;
- }
- .uni-common-mt {
- margin-top: 30px;
- }
- .uni-padding-wrap {
- width: 750rpx;
- padding: 0px 30px;
- }
- .content {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- justify-content: center;
- align-items: center;
- height: 150px;
- text-align: center;
- }
- .content-text {
- font-size: 18px;
- color: #333;
- }
- .color-tag {
- width: 25px;
- height: 25px;
- }
- .uni-list {
- flex: 1;
- }
- .uni-list-item {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex: 1;
- flex-direction: row;
- background-color: #FFFFFF;
- }
- .uni-list-item__container {
- padding: 12px 15px;
- width: 100%;
- flex: 1;
- position: relative;
- /* #ifndef APP-NVUE */
- display: flex;
- box-sizing: border-box;
- /* #endif */
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- border-bottom-style: solid;
- border-bottom-width: 1px;
- border-bottom-color: #e5e5e5;
- }
- .uni-list-item__content-title {
- font-size: 16px;
- }
- </style>
|