progress.uvue 6.1 KB
Newer Older
1
<script>
2
  import { state, setEventCallbackNum } from '@/store/index.uts'
H
hdx 已提交
3 4 5 6 7 8 9 10 11 12 13 14
  import { ItemType } from '@/components/enum-data/enum-data'
  export default {
    data() {
      return {
        title: 'progress',
        pgList: [0, 0, 0, 0] as number[],
        curPercent: 0,
        showInfo: true,
        borderRadius: 0,
        fontSize: 16,
        strokeWidth: 3,
        backgroundColor: '#EBEBEB',
Y
yurj26 已提交
15

H
hdx 已提交
16 17 18 19 20 21 22 23 24 25 26 27 28
        // 组件属性 autotest
        active_boolean: false,
        show_info_boolean: false,
        duration_input: 30,
        percent_input: 0,
        stroke_width_input: 6,
        activeColor_input: "#09BB07",
        backgroundColor_input: "#EBEBEB",
        active_mode_enum: [{ "value": 0, "name": "backwards" }, { "value": 1, "name": "forwards" }] as ItemType[],
        active_mode_enum_current: 0
      }
    },
    methods: {
29 30 31 32 33 34 35 36 37
      // 自动化测试
      getEventCallbackNum() : number {
        return state.eventCallbackNum
      },
      // 自动化测试
      setEventCallbackNum(num : number) {
        setEventCallbackNum(num)
      },

H
hdx 已提交
38 39 40 41 42 43
      setProgress() {
        this.pgList = [20, 40, 60, 80] as number[]
      },
      clearProgress() {
        this.pgList = [0, 0, 0, 0] as number[]
      },
H
hdx 已提交
44
      activeend(e : UniProgressActiveendEvent) {
45 46 47 48 49 50 51
        // 自动化测试
        if ((e.target?.tagName ?? '').includes('PROGRESS')) {
          this.setEventCallbackNum(state.eventCallbackNum + 1)
        }
        if (e.type === 'activeend') {
          this.setEventCallbackNum(state.eventCallbackNum + 2)
        }
H
hdx 已提交
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
        this.curPercent = e.detail.curPercent
      },
      progress_touchstart() { console.log("手指触摸动作开始") },
      progress_touchmove() { console.log("手指触摸后移动") },
      progress_touchcancel() { console.log("手指触摸动作被打断,如来电提醒,弹窗") },
      progress_touchend() { console.log("手指触摸动作结束") },
      progress_tap() { console.log("手指触摸后马上离开") },
      change_active_boolean(checked : boolean) { this.active_boolean = checked },
      change_show_info_boolean(checked : boolean) { this.show_info_boolean = checked },
      confirm_duration_input(value : number) { this.duration_input = value },
      confirm_percent_input(value : number) { this.percent_input = value },
      confirm_stroke_width_input(value : number) { this.stroke_width_input = value },
      confirm_activeColor_input(value : string) { this.activeColor_input = value },
      confirm_backgroundColor_input(value : string) { this.backgroundColor_input = value },
      radio_change_active_mode_enum(checked : number) { this.active_mode_enum_current = checked }
    }
  }
Y
init  
yurj26 已提交
69 70
</script>

71
<template>
72
  <view class="main">
H
hdx 已提交
73 74 75 76 77
    <progress :duration="duration_input" :percent="percent_input" :show-info="show_info_boolean"
      :stroke-width="stroke_width_input" :activeColor="activeColor_input" :backgroundColor="backgroundColor_input"
      :active="active_boolean" :active-mode="active_mode_enum[active_mode_enum_current].name"
      @touchstart="progress_touchstart" @touchmove="progress_touchmove" @touchcancel="progress_touchcancel"
      @touchend="progress_touchend" @tap="progress_tap" style="width: 80%">
78 79 80
      <text>uni-app-x</text>
    </progress>
  </view>
81

雪洛's avatar
雪洛 已提交
82
  <scroll-view style="flex: 1">
A
Anne_LXM 已提交
83
    <view class="content">
84
      <page-head title="组件属性"></page-head>
H
hdx 已提交
85 86 87 88 89 90 91 92 93 94 95 96
      <boolean-data :defaultValue="false" title="进度条从左往右的动画" @change="change_active_boolean"></boolean-data>
      <boolean-data :defaultValue="false" title="在进度条右侧显示百分比" @change="change_show_info_boolean"></boolean-data>
      <input-data defaultValue="30" title="进度增加1%所需毫秒数" type="number" @confirm="confirm_duration_input"></input-data>
      <input-data defaultValue="0" title="百分比0~100" type="number" @confirm="confirm_percent_input"></input-data>
      <input-data defaultValue="6" title="进度条线的宽度,单位px" type="number"
        @confirm="confirm_stroke_width_input"></input-data>
      <input-data defaultValue="#09BB07" title="已选择的进度条的颜色" type="text"
        @confirm="confirm_activeColor_input"></input-data>
      <input-data defaultValue="#EBEBEB" title="未选择的进度条的颜色" type="text"
        @confirm="confirm_backgroundColor_input"></input-data>
      <enum-data :items="active_mode_enum" title="backwards: 动画从头播;forwards:动画从上次结束点接着播"
        @change="radio_change_active_mode_enum"></enum-data>
97
    </view>
98

99 100 101 102
    <view>
      <page-head title="默认及使用"></page-head>
      <view class="uni-padding-wrap uni-common-mt">
        <view class="progress-box">
H
hdx 已提交
103 104 105
          <progress :percent="pgList[0]" :active="true" :border-radius="borderRadius" :show-info="showInfo"
            :font-size="fontSize" :stroke-width="strokeWidth" :background-color="backgroundColor" class="progress p"
            @activeend="activeend" />
106 107
        </view>
        <view class="progress-box">
H
hdx 已提交
108
          <progress :percent="pgList[1]" :stroke-width="3" class="progress p1" />
109 110
        </view>
        <view class="progress-box">
H
hdx 已提交
111
          <progress :percent="pgList[2]" :stroke-width="3" class="progress p2" />
112 113
        </view>
        <view class="progress-box">
H
hdx 已提交
114
          <progress :percent="pgList[3]" activeColor="#10AEFF" :stroke-width="3" class="progress p3" />
115 116 117 118 119 120 121 122 123 124 125 126
        </view>
        <view class="progress-control">
          <button type="primary" @click="setProgress" class="button">
            设置进度
          </button>
          <button type="warn" @click="clearProgress" class="button">
            清除进度
          </button>
        </view>
      </view>
    </view>
  </scroll-view>
127 128
</template>

Y
init  
yurj26 已提交
129
<style>
H
hdx 已提交
130 131 132 133 134 135 136
  .main {
    max-height: 250px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    flex-direction: row;
    justify-content: center;
  }
137

H
hdx 已提交
138 139 140 141 142
  .main .list-item {
    width: 100%;
    height: 100px;
    border: 1px solid #666;
  }
143

H
hdx 已提交
144 145 146 147
  .progress-box {
    height: 25px;
    margin-bottom: 30px;
  }
Y
init  
yurj26 已提交
148

H
hdx 已提交
149 150 151 152
  .button {
    margin-top: 10px;
  }
</style>