@burh/nuxt-core 1.0.145 → 1.0.147
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -67,15 +67,6 @@ export default {
|
|
|
67
67
|
};
|
|
68
68
|
</script>
|
|
69
69
|
|
|
70
|
-
<style lang="scss">
|
|
71
|
-
.el-dialog {
|
|
72
|
-
overflow: hidden;
|
|
73
|
-
border-radius: 10px;
|
|
74
|
-
padding-bottom: 50px;
|
|
75
|
-
max-width: 1500px;
|
|
76
|
-
}
|
|
77
|
-
</style>
|
|
78
|
-
|
|
79
70
|
<style lang="scss" scoped>
|
|
80
71
|
@import '@burh/nuxt-core/assets/sass/burh-ds/variables/_colors.scss';
|
|
81
72
|
|
|
@@ -87,6 +78,13 @@ export default {
|
|
|
87
78
|
display: none;
|
|
88
79
|
}
|
|
89
80
|
|
|
81
|
+
/deep/ .el-dialog {
|
|
82
|
+
overflow: hidden;
|
|
83
|
+
border-radius: 10px;
|
|
84
|
+
padding-bottom: 50px;
|
|
85
|
+
max-width: 1500px;
|
|
86
|
+
}
|
|
87
|
+
|
|
90
88
|
.test-radius {
|
|
91
89
|
border-radius: 10px;
|
|
92
90
|
}
|
|
@@ -1,66 +1,40 @@
|
|
|
1
1
|
<template lang="">
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
2
|
+
<div>
|
|
3
|
+
<span class="loader-wrapper">
|
|
4
|
+
<div>
|
|
5
|
+
<div :class="'mb-5 product-item--avatar bg-' + color">
|
|
6
|
+
<img :src="productImage" alt="" />
|
|
7
|
+
</div>
|
|
8
|
+
<div class="d-flex justify-content-center align-items-center">
|
|
9
|
+
<i
|
|
10
|
+
:class="
|
|
11
|
+
'fas fa-3x fa-circle-notch fa-spin text-' + color
|
|
12
|
+
"
|
|
13
|
+
></i>
|
|
14
|
+
</div>
|
|
15
|
+
</div>
|
|
16
|
+
</span>
|
|
17
|
+
</div>
|
|
18
18
|
</template>
|
|
19
19
|
|
|
20
20
|
<script>
|
|
21
21
|
export default {
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
data() {
|
|
34
|
-
return {
|
|
35
|
-
isShowing: true
|
|
36
|
-
};
|
|
37
|
-
},
|
|
38
|
-
|
|
39
|
-
mounted(){
|
|
40
|
-
|
|
41
|
-
const currentPage = window.location.pathname.split('/')[1];
|
|
42
|
-
if (sessionStorage.getItem('lastPage') != currentPage ){
|
|
43
|
-
sessionStorage.setItem('lastPage', currentPage);
|
|
44
|
-
}else{
|
|
45
|
-
this.isShowing = false;
|
|
46
|
-
}
|
|
47
|
-
},
|
|
48
|
-
// beforeDestroy() {
|
|
49
|
-
// sessionStorage.removeItem('lastPage');
|
|
50
|
-
// },
|
|
22
|
+
name: 'new-loading',
|
|
23
|
+
props: {
|
|
24
|
+
isLoading: {
|
|
25
|
+
type: Boolean,
|
|
26
|
+
default: false,
|
|
27
|
+
description: 'If the parent screen is loading'
|
|
28
|
+
},
|
|
29
|
+
productImage: String,
|
|
30
|
+
color: String
|
|
31
|
+
}
|
|
51
32
|
};
|
|
52
33
|
</script>
|
|
53
34
|
|
|
54
35
|
<style lang="scss" scoped>
|
|
55
36
|
// @import "assets/sass/burh-ds/variables/_colors.scss";
|
|
56
|
-
|
|
57
|
-
width: 100vw;
|
|
58
|
-
height: 100vh;
|
|
59
|
-
position: fixed;
|
|
60
|
-
top: 0;
|
|
61
|
-
left: 0;
|
|
62
|
-
z-index: 1000;
|
|
63
|
-
}
|
|
37
|
+
|
|
64
38
|
.product-item--avatar {
|
|
65
39
|
width: 64.78px;
|
|
66
40
|
height: 64.78px;
|
|
@@ -83,4 +57,4 @@ export default {
|
|
|
83
57
|
width: 100vw;
|
|
84
58
|
height: 100vh;
|
|
85
59
|
}
|
|
86
|
-
</style>
|
|
60
|
+
</style>
|
|
@@ -58,16 +58,6 @@ export default {
|
|
|
58
58
|
};
|
|
59
59
|
</script>
|
|
60
60
|
|
|
61
|
-
<style lang="scss">
|
|
62
|
-
.el-dialog {
|
|
63
|
-
overflow: hidden;
|
|
64
|
-
border-radius: 10px;
|
|
65
|
-
padding-bottom: 50px;
|
|
66
|
-
max-width: 460px;
|
|
67
|
-
min-width: 460px;
|
|
68
|
-
}
|
|
69
|
-
</style>
|
|
70
|
-
|
|
71
61
|
<style lang="scss" scoped>
|
|
72
62
|
@import '@burh/nuxt-core/assets/sass/burh-ds/variables/_colors.scss';
|
|
73
63
|
|
|
@@ -79,6 +69,14 @@ export default {
|
|
|
79
69
|
display: none;
|
|
80
70
|
}
|
|
81
71
|
|
|
72
|
+
/deep/ .el-dialog {
|
|
73
|
+
overflow: hidden;
|
|
74
|
+
border-radius: 10px;
|
|
75
|
+
padding-bottom: 50px;
|
|
76
|
+
max-width: 460px;
|
|
77
|
+
min-width: 460px;
|
|
78
|
+
}
|
|
79
|
+
|
|
82
80
|
.plan-modal {
|
|
83
81
|
background: #fff;
|
|
84
82
|
img {
|