@netang/quasar 0.2.57 → 0.2.59
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.
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
+
<!-- @update:model-value="onUpdate" -->
|
|
2
3
|
<q-input
|
|
3
4
|
class="n-input-number"
|
|
4
5
|
:class="{
|
|
@@ -7,7 +8,6 @@
|
|
|
7
8
|
:disable="disable"
|
|
8
9
|
:readonly="readonly"
|
|
9
10
|
v-model="currentValue"
|
|
10
|
-
@update:model-value="onUpdate"
|
|
11
11
|
@blur="onBlur"
|
|
12
12
|
v-bind="$attrs"
|
|
13
13
|
>
|
package/package.json
CHANGED
package/utils/uploader.js
CHANGED
|
@@ -1638,9 +1638,10 @@ function create(options) {
|
|
|
1638
1638
|
const p = await getVideoThumbHash(dom, fileItem.json)
|
|
1639
1639
|
if (p) {
|
|
1640
1640
|
fileItem.json.p = p
|
|
1641
|
+
resolve(true)
|
|
1642
|
+
} else {
|
|
1643
|
+
resolve(false)
|
|
1641
1644
|
}
|
|
1642
|
-
|
|
1643
|
-
resolve(true)
|
|
1644
1645
|
}
|
|
1645
1646
|
|
|
1646
1647
|
// 否则为音频
|