picker-view.uvue 3.7 KB
Newer Older
Y
yurj26 已提交
1
<template>
H
hdx 已提交
2 3 4 5 6 7
  <view>
    <page-head :title="title"></page-head>
    <view class="uni-padding-wrap">
      <view class="uni-title">
        日期:{{year}}年{{month}}月{{day}}日
      </view>
Y
yurj26 已提交
8
    </view>
9 10 11 12 13 14 15
    <picker-view class="picker-view" :value="value" @change="bindChange"
      :indicator-style="indicatorStyle"
      :indicator-class="indicatorClass"
      :mask-style="maskStyle"
      :mask-class="maskClass"
      :mask-top-style="maskTopStyle"
      :mask-bottom-style="maskBottomStyle">
H
hdx 已提交
16 17 18 19 20 21 22 23 24 25 26 27
      <picker-view-column class="picker-view-column">
        <view class="item" v-for="(item,index) in years" :key="index"><text class="text">{{item}}年</text></view>
      </picker-view-column>
      <picker-view-column class="picker-view-column">
        <view class="item" v-for="(item,index) in months" :key="index"><text class="text">{{item}}月</text>
        </view>
      </picker-view-column>
      <picker-view-column class="picker-view-column">
        <view class="item" v-for="(item,index) in days" :key="index"><text class="text">{{item}}日</text></view>
      </picker-view-column>
    </picker-view>
  </view>
Y
yurj26 已提交
28 29
</template>

30 31
<script lang="uts">
  import { state, setEventCallbackNum } from '@/store/index.uts'
H
hdx 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
  export default {
    data() {
      const date = new Date()
      const _years : number[] = []
      const _year = date.getFullYear()
      const _months : number[] = []
      const _month : number = date.getMonth() + 1
      const _days : number[] = []
      const _day = date.getDate()
      for (let i = 2000; i <= _year; i++) {
        _years.push(i)
      }
      for (let i = 1; i <= 12; i++) {
        _months.push(i)
      }
      for (let i = 1; i <= 31; i++) {
        _days.push(i)
      }
      return {
        title: 'picker-view',
        years: _years as number[],
        year: _year as number,
        months: _months as number[],
        month: _month as number,
        days: _days as number[],
        day: _day as number,
        value: [_year - 2000, _month - 1, _day - 1] as number[],
        result: [] as number[],
60 61 62 63 64
        indicatorStyle: 'height: 50px;',
        // 自动化测试
        indicatorClass: '',
        maskStyle: '',
        maskClass: '',
H
hdx 已提交
65 66 67 68
        maskTopStyle: '',
        maskBottomStyle: ''
      }
    },
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
    methods: {
      // 自动化测试
      getEventCallbackNum() : number {
        return state.eventCallbackNum
      },
      // 自动化测试
      setEventCallbackNum(num : number) {
        setEventCallbackNum(num)
      },
      bindChange(e : UniPickerViewChangeEvent) {
        // 自动化测试
        console.log(e.target?.tagName,e.type);
        if ((e.target?.tagName ?? '').includes('PICKER-VIEW')) {
          this.setEventCallbackNum(state.eventCallbackNum + 1)
        }
        if (e.type === 'change') {
          this.setEventCallbackNum(state.eventCallbackNum + 2)
        }
H
hdx 已提交
87 88 89 90 91 92 93 94 95 96 97 98
        const val = e.detail.value
        this.result = val
        this.year = this.years[val[0]]
        this.month = this.months[val[1]]
        this.day = this.days[val[2]]
      },
      setValue() {
        this.value = [0, 0, 0] as number[]
      },
      setValue1() {
        this.value = [10, 10, 10] as number[]
      },
Y
yurj26 已提交
99
    }
H
hdx 已提交
100
  }
Y
yurj26 已提交
101 102 103
</script>

<style>
H
hdx 已提交
104 105 106 107 108 109 110 111 112 113 114
  .picker-view {
    width: 100%;
    height: 320px;
    margin-top: 10px;
  }
  .item {
    height: 50px;
  }
  .text {
    line-height: 50px;
    text-align: center;
115 116 117 118 119 120 121 122 123
  }
  /* 自动化测试 */
  .indicator-test{
    height: 50px;
    border:#0055ff solid 1px;
    background:rgba(0, 170, 0, 0.4);
  }
  .mask-test{
    background-image: linear-gradient(to bottom, #d8e5ff, rgba(216, 229, 255, 0));
H
hdx 已提交
124
  }
Y
yurj26 已提交
125
</style>