inleft
2022-02-09 9bcb19959eeb9da9bde2561e7278f6d0a55eb151
commit | author | age
9bcb19 1 export function resetSize(vm) {
I 2     // eslint-disable-next-line camelcase
3     var img_width, img_height, bar_width, bar_height    // 图片的宽度、高度,移动条的宽度、高度
4
5     var parentWidth = vm.$el.parentNode.offsetWidth || window.offsetWidth
6     var parentHeight = vm.$el.parentNode.offsetHeight || window.offsetHeight
7
8     // eslint-disable-next-line eqeqeq
9     if (vm.imgSize.width.indexOf('%') != -1) {
10         // eslint-disable-next-line camelcase
11         img_width = parseInt(this.imgSize.width) / 100 * parentWidth + 'px'
12     } else {
13         // eslint-disable-next-line camelcase
14         img_width = this.imgSize.width
15     }
16
17     // eslint-disable-next-line eqeqeq
18     if (vm.imgSize.height.indexOf('%') != -1) {
19         // eslint-disable-next-line camelcase
20         img_height = parseInt(this.imgSize.height) / 100 * parentHeight + 'px'
21     } else {
22         // eslint-disable-next-line camelcase
23         img_height = this.imgSize.height
24     }
25
26     // eslint-disable-next-line eqeqeq
27     if (vm.barSize.width.indexOf('%') != -1) {
28         // eslint-disable-next-line camelcase
29         bar_width = parseInt(this.barSize.width) / 100 * parentWidth + 'px'
30     } else {
31         // eslint-disable-next-line camelcase
32         bar_width = this.barSize.width
33     }
34
35     // eslint-disable-next-line eqeqeq
36     if (vm.barSize.height.indexOf('%') != -1) {
37         // eslint-disable-next-line camelcase
38         bar_height = parseInt(this.barSize.height) / 100 * parentHeight + 'px'
39     } else {
40         // eslint-disable-next-line camelcase
41         bar_height = this.barSize.height
42     }
43
44     return { imgWidth: img_width, imgHeight: img_height, barWidth: bar_width, barHeight: bar_height }
45 }
46
47 // eslint-disable-next-line camelcase
48 export const _code_chars = [1, 2, 3, 4, 5, 6, 7, 8, 9, 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z']
49 // eslint-disable-next-line camelcase
50 export const _code_color1 = ['#fffff0', '#f0ffff', '#f0fff0', '#fff0f0']
51 // eslint-disable-next-line camelcase
52 export const _code_color2 = ['#FF0033', '#006699', '#993366', '#FF9900', '#66CC66', '#FF33CC']