Skip to content

Commit e0458f4

Browse files
committed
修复http请示loading状态消失问题
1 parent e4ccc33 commit e0458f4

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Vol.Vue/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
1010
<title>vol-vue</title>
1111
<style type="text/css">
12-
#loading-container {
12+
#v-loading-container {
1313
position: absolute;
1414
left: 0;
1515
top: 0;
@@ -108,7 +108,7 @@
108108
</head>
109109

110110
<body style="margin: 0px;">
111-
<div id="loading-container">
111+
<div id="v-loading-container">
112112
<div class="loading-wrapper">
113113
<span class="loading-dot loading-spin">
114114
<i></i>

Vol.Vue/src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default {
1212
1313
},
1414
mounted () {
15-
document.getElementById("loading-container").style.display = "none";
15+
document.getElementById("v-loading-container").style.display = "none";
1616
}
1717
};
1818
</script>

开发版dev/Vue.NetCore/Vol.Vue/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
1010
<title>vol-vue</title>
1111
<style type="text/css">
12-
#loading-container {
12+
#v-loading-container {
1313
position: absolute;
1414
left: 0;
1515
top: 0;
@@ -108,7 +108,7 @@
108108
</head>
109109

110110
<body style="margin: 0px;">
111-
<div id="loading-container">
111+
<div id="v-loading-container">
112112
<div class="loading-wrapper">
113113
<span class="loading-dot loading-spin">
114114
<i></i>

开发版dev/Vue.NetCore/Vol.Vue/src/App.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ export default {
1212
1313
},
1414
mounted () {
15-
document.getElementById("loading-container").style.display = "none";
15+
document.getElementById("v-loading-container").style.display = "none";
1616
}
1717
};
18-
</script>
18+
</script>
1919

2020
<style>
2121
.el-loading {

0 commit comments

Comments
 (0)