stellar-ui-plus 1.22.12 → 1.22.13
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.
|
@@ -169,14 +169,14 @@ defineExpose({
|
|
|
169
169
|
<view class="footer">
|
|
170
170
|
<view class="progress-box flex-column" v-if="!updateBtn">
|
|
171
171
|
<progress class="progress" border-radius="35" :percent="percent" activeColor="#3DA7FF" show-info stroke-width="10" />
|
|
172
|
-
<!-- <u-line-progress :striped="true" :percent="percent" :striped-active="true"></u-line-progress> -->
|
|
173
172
|
<view>
|
|
174
|
-
<text class="fs24"
|
|
173
|
+
<text class="fs24" v-if="tempFilePath">下载完成</text>
|
|
174
|
+
<text class="fs24" v-else>正在下载,请稍后 ({{ downloadedSize }}/{{ packageFileSize }}M)</text>
|
|
175
175
|
</view>
|
|
176
176
|
</view>
|
|
177
177
|
|
|
178
178
|
<button class="content-button" style="border: none; color: #fff" plain @click="confirm" v-if="updateBtn">立即升级</button>
|
|
179
|
-
<button class="content-button" style="border: none; color: #fff" plain @click="install" v-else-if="tempFilePath"
|
|
179
|
+
<button class="content-button" style="border: none; color: #fff" plain @click="install" v-else-if="tempFilePath">安装</button>
|
|
180
180
|
</view>
|
|
181
181
|
</view>
|
|
182
182
|
|
|
@@ -261,6 +261,7 @@ defineExpose({
|
|
|
261
261
|
|
|
262
262
|
.footer {
|
|
263
263
|
min-height: 150rpx;
|
|
264
|
+
padding-bottom: 12rpx;
|
|
264
265
|
}
|
|
265
266
|
|
|
266
267
|
.box-des-scroll {
|