widget.qw 1.0.27 → 1.0.29
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.
package/build/widget.qw.es.js
CHANGED
|
@@ -20633,7 +20633,10 @@ const _sfc_main$1 = {
|
|
|
20633
20633
|
size: "medium",
|
|
20634
20634
|
onClose: withModifiers(onDelete, ["stop"])
|
|
20635
20635
|
}, {
|
|
20636
|
-
default: withCtx(() =>
|
|
20636
|
+
default: withCtx(() => {
|
|
20637
|
+
var _a;
|
|
20638
|
+
return [createTextVNode(toDisplayString((_a = data2.selectedNode) == null ? void 0 : _a.path), 1)];
|
|
20639
|
+
}),
|
|
20637
20640
|
_: 1
|
|
20638
20641
|
}, 8, ["closeable", "onClose"])) : createCommentVNode("", true)])
|
|
20639
20642
|
} : void 0]), 1032, ["label", "required", "rules", "disabled", "placeholder", "is-link"])) : createCommentVNode("", true), createVNode(CascaderPop, {
|
package/build/widget.qw.umd.js
CHANGED
|
@@ -20636,7 +20636,10 @@ var __async = (__this, __arguments, generator) => {
|
|
|
20636
20636
|
size: "medium",
|
|
20637
20637
|
onClose: vue.withModifiers(onDelete, ["stop"])
|
|
20638
20638
|
}, {
|
|
20639
|
-
default: vue.withCtx(() =>
|
|
20639
|
+
default: vue.withCtx(() => {
|
|
20640
|
+
var _a;
|
|
20641
|
+
return [vue.createTextVNode(vue.toDisplayString((_a = data2.selectedNode) == null ? void 0 : _a.path), 1)];
|
|
20642
|
+
}),
|
|
20640
20643
|
_: 1
|
|
20641
20644
|
}, 8, ["closeable", "onClose"])) : vue.createCommentVNode("", true)])
|
|
20642
20645
|
} : void 0]), 1032, ["label", "required", "rules", "disabled", "placeholder", "is-link"])) : vue.createCommentVNode("", true), vue.createVNode(CascaderPop, {
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<template #input v-if="modelValue">
|
|
6
6
|
<van-tag class="selected-node" v-if="modelValue" :closeable="!isDisabled" color="#fff" text-color="#333"
|
|
7
7
|
size="medium" @close.stop="onDelete">
|
|
8
|
-
{{ data.selectedNode
|
|
8
|
+
{{ data.selectedNode?.path }}
|
|
9
9
|
</van-tag>
|
|
10
10
|
</template>
|
|
11
11
|
</van-field>
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="page">
|
|
3
|
-
<widget-qw-input label="单号" v-model="data.text"
|
|
3
|
+
<widget-qw-input label="单号" v-model.number="data.text"
|
|
4
|
+
:auth="data.auth" :type="data.type" :rows="data.rows" :autosize="data.autosize" />
|
|
4
5
|
</div>
|
|
5
6
|
</template>
|
|
6
7
|
|
|
@@ -9,8 +10,8 @@ import { onMounted, reactive, watch } from "vue";
|
|
|
9
10
|
|
|
10
11
|
const data = reactive({
|
|
11
12
|
auth:'require',
|
|
12
|
-
text:
|
|
13
|
-
type: '
|
|
13
|
+
text: -9,
|
|
14
|
+
type: 'number',
|
|
14
15
|
rows: 1,
|
|
15
16
|
autosize: true
|
|
16
17
|
})
|