'a'
mh-two-thousand-and-two
2024-04-12 44d2c92345cd156a59fc327b3060292a282d2893
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<template>
  <uni-cover-view
    :scroll-top="scrollTop"
    v-on="$listeners"
  >
    <div
      ref="content"
      class="uni-cover-view"
    >
      <slot />
    </div>
  </uni-cover-view>
</template>
<script>
export default {
  name: 'CoverView',
  props: {
    scrollTop: {
      type: [String, Number],
      default: 0
    }
  },
  watch: {
    scrollTop (val) {
      this.setScrollTop(val)
    }
  },
  mounted () {
    this.setScrollTop(this.scrollTop)
  },
  methods: {
    setScrollTop (val) {
      var content = this.$refs.content
      if (getComputedStyle(content).overflowY === 'scroll') {
        content.scrollTop = this._upx2pxNum(val)
      }
    },
    _upx2pxNum (val) {
      if (/\d+[ur]px$/i.test(val)) {
        val.replace(/\d+[ur]px$/i, text => {
          return uni.upx2px(parseFloat(text))
        })
      }
      return parseFloat(val) || 0
    }
  }
}
</script>
<style>
uni-cover-view {
  display: block;
  line-height: 1.2;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: auto;
}
 
uni-cover-view[hidden] {
  display: none;
}
 
uni-cover-view .uni-cover-view {
  width: 100%;
  height: 100%;
  text-overflow: inherit;
  overflow: hidden;
  white-space: inherit;
  -webkit-align-items: inherit;
  align-items: inherit;
  -webkit-justify-content: inherit;
  justify-content: inherit;
  -webkit-flex-direction: inherit;
  flex-direction: inherit;
  -webkit-flex-wrap: inherit;
  flex-wrap: inherit;
  display: inherit;
  overflow: inherit;
}
</style>