@yoooloo42/joker 1.0.81 → 1.0.83
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/dist/index.cjs.js +5 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +5 -2
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -41815,14 +41815,14 @@ const props = __props;
|
|
|
41815
41815
|
// 遵循 Vue 3 v-model 规范,使用 update:modelValue 事件
|
|
41816
41816
|
const emit = __emit;
|
|
41817
41817
|
|
|
41818
|
-
const value = reactive(
|
|
41818
|
+
const value = reactive(Object.assign({
|
|
41819
41819
|
code2: '',
|
|
41820
41820
|
text2: '',
|
|
41821
41821
|
code4: '',
|
|
41822
41822
|
text4: '',
|
|
41823
41823
|
code6: '',
|
|
41824
41824
|
text6: '',
|
|
41825
|
-
}, {code6: props.modelValue || ''}))
|
|
41825
|
+
}, {code6: props.modelValue || ''}));
|
|
41826
41826
|
|
|
41827
41827
|
const popup = reactive({
|
|
41828
41828
|
visible: false,
|
|
@@ -42046,6 +42046,7 @@ return (_ctx, _cache) => {
|
|
|
42046
42046
|
createVNode(_component_el_select, {
|
|
42047
42047
|
modelValue: popup.select.code2,
|
|
42048
42048
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = $event => ((popup.select.code2) = $event)),
|
|
42049
|
+
placeholder: "请选择 省",
|
|
42049
42050
|
filterable: "",
|
|
42050
42051
|
style: normalizeStyle(style.popup.select),
|
|
42051
42052
|
onChange: hdlChangeCode2
|
|
@@ -42073,6 +42074,7 @@ return (_ctx, _cache) => {
|
|
|
42073
42074
|
createVNode(_component_el_select, {
|
|
42074
42075
|
modelValue: popup.select.code4,
|
|
42075
42076
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = $event => ((popup.select.code4) = $event)),
|
|
42077
|
+
placeholder: "请选择 市",
|
|
42076
42078
|
filterable: "",
|
|
42077
42079
|
style: normalizeStyle(style.popup.select),
|
|
42078
42080
|
onChange: hdlChangeCode4
|
|
@@ -42100,6 +42102,7 @@ return (_ctx, _cache) => {
|
|
|
42100
42102
|
createVNode(_component_el_select, {
|
|
42101
42103
|
modelValue: popup.select.code6,
|
|
42102
42104
|
"onUpdate:modelValue": _cache[2] || (_cache[2] = $event => ((popup.select.code6) = $event)),
|
|
42105
|
+
placeholder: "请选择 县",
|
|
42103
42106
|
filterable: "",
|
|
42104
42107
|
style: normalizeStyle(style.popup.select)
|
|
42105
42108
|
}, {
|