@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.cjs.js
CHANGED
|
@@ -41819,14 +41819,14 @@ const props = __props;
|
|
|
41819
41819
|
// 遵循 Vue 3 v-model 规范,使用 update:modelValue 事件
|
|
41820
41820
|
const emit = __emit;
|
|
41821
41821
|
|
|
41822
|
-
const value = vue.reactive(
|
|
41822
|
+
const value = vue.reactive(Object.assign({
|
|
41823
41823
|
code2: '',
|
|
41824
41824
|
text2: '',
|
|
41825
41825
|
code4: '',
|
|
41826
41826
|
text4: '',
|
|
41827
41827
|
code6: '',
|
|
41828
41828
|
text6: '',
|
|
41829
|
-
}, {code6: props.modelValue || ''}))
|
|
41829
|
+
}, {code6: props.modelValue || ''}));
|
|
41830
41830
|
|
|
41831
41831
|
const popup = vue.reactive({
|
|
41832
41832
|
visible: false,
|
|
@@ -42050,6 +42050,7 @@ return (_ctx, _cache) => {
|
|
|
42050
42050
|
vue.createVNode(_component_el_select, {
|
|
42051
42051
|
modelValue: popup.select.code2,
|
|
42052
42052
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = $event => ((popup.select.code2) = $event)),
|
|
42053
|
+
placeholder: "请选择 省",
|
|
42053
42054
|
filterable: "",
|
|
42054
42055
|
style: vue.normalizeStyle(style.popup.select),
|
|
42055
42056
|
onChange: hdlChangeCode2
|
|
@@ -42077,6 +42078,7 @@ return (_ctx, _cache) => {
|
|
|
42077
42078
|
vue.createVNode(_component_el_select, {
|
|
42078
42079
|
modelValue: popup.select.code4,
|
|
42079
42080
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = $event => ((popup.select.code4) = $event)),
|
|
42081
|
+
placeholder: "请选择 市",
|
|
42080
42082
|
filterable: "",
|
|
42081
42083
|
style: vue.normalizeStyle(style.popup.select),
|
|
42082
42084
|
onChange: hdlChangeCode4
|
|
@@ -42104,6 +42106,7 @@ return (_ctx, _cache) => {
|
|
|
42104
42106
|
vue.createVNode(_component_el_select, {
|
|
42105
42107
|
modelValue: popup.select.code6,
|
|
42106
42108
|
"onUpdate:modelValue": _cache[2] || (_cache[2] = $event => ((popup.select.code6) = $event)),
|
|
42109
|
+
placeholder: "请选择 县",
|
|
42107
42110
|
filterable: "",
|
|
42108
42111
|
style: vue.normalizeStyle(style.popup.select)
|
|
42109
42112
|
}, {
|