@fmdevui/fm-dev 1.0.101 → 1.0.102
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/es/packages/core/ui/components/fmaddressparsing/index.vue2.mjs +18 -0
- package/index.js +19 -1
- package/index.min.js +21 -21
- package/index.min.mjs +2 -2
- package/index.mjs +19 -1
- package/lib/packages/core/ui/components/fmaddressparsing/index.vue2.js +18 -0
- package/package.json +1 -1
- /package/es/{make-installer.css → defaults.css} +0 -0
|
@@ -121,10 +121,28 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
121
121
|
}
|
|
122
122
|
}
|
|
123
123
|
if (_Province != "" && _City != "" && _County != "") {
|
|
124
|
+
if (hasOwn(modelValue.value, props.fprovince)) {
|
|
125
|
+
modelValue.value[props.fprovince] = _Province;
|
|
126
|
+
}
|
|
127
|
+
if (hasOwn(modelValue.value, props.fcity)) {
|
|
128
|
+
modelValue.value[props.fcity] = _City;
|
|
129
|
+
}
|
|
130
|
+
if (hasOwn(modelValue.value, props.fcounty)) {
|
|
131
|
+
modelValue.value[props.fcounty] = _County;
|
|
132
|
+
}
|
|
124
133
|
emit("changeparsing", { province: _Province, city: _City, county: _County });
|
|
125
134
|
return;
|
|
126
135
|
}
|
|
127
136
|
if (nextValue.length < 2) {
|
|
137
|
+
if (hasOwn(modelValue.value, props.fprovince)) {
|
|
138
|
+
modelValue.value[props.fprovince] = _Province;
|
|
139
|
+
}
|
|
140
|
+
if (hasOwn(modelValue.value, props.fcity)) {
|
|
141
|
+
modelValue.value[props.fcity] = _City;
|
|
142
|
+
}
|
|
143
|
+
if (hasOwn(modelValue.value, props.fcounty)) {
|
|
144
|
+
modelValue.value[props.fcounty] = _County;
|
|
145
|
+
}
|
|
128
146
|
emit("changeparsing", { province: _Province, city: _City, county: _County });
|
|
129
147
|
return;
|
|
130
148
|
}
|
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! fm-dev v1.0.
|
|
1
|
+
/*! fm-dev v1.0.102 */
|
|
2
2
|
(function (global, factory) {
|
|
3
3
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('vue'), require('crypto'), require('url'), require('http'), require('https'), require('util'), require('stream'), require('assert'), require('zlib'), require('element-plus')) :
|
|
4
4
|
typeof define === 'function' && define.amd ? define(['exports', 'vue', 'crypto', 'url', 'http', 'https', 'util', 'stream', 'assert', 'zlib', 'element-plus'], factory) :
|
|
@@ -38660,10 +38660,28 @@
|
|
|
38660
38660
|
}
|
|
38661
38661
|
}
|
|
38662
38662
|
if (_Province != "" && _City != "" && _County != "") {
|
|
38663
|
+
if (hasOwn(modelValue.value, props.fprovince)) {
|
|
38664
|
+
modelValue.value[props.fprovince] = _Province;
|
|
38665
|
+
}
|
|
38666
|
+
if (hasOwn(modelValue.value, props.fcity)) {
|
|
38667
|
+
modelValue.value[props.fcity] = _City;
|
|
38668
|
+
}
|
|
38669
|
+
if (hasOwn(modelValue.value, props.fcounty)) {
|
|
38670
|
+
modelValue.value[props.fcounty] = _County;
|
|
38671
|
+
}
|
|
38663
38672
|
emit("changeparsing", { province: _Province, city: _City, county: _County });
|
|
38664
38673
|
return;
|
|
38665
38674
|
}
|
|
38666
38675
|
if (nextValue.length < 2) {
|
|
38676
|
+
if (hasOwn(modelValue.value, props.fprovince)) {
|
|
38677
|
+
modelValue.value[props.fprovince] = _Province;
|
|
38678
|
+
}
|
|
38679
|
+
if (hasOwn(modelValue.value, props.fcity)) {
|
|
38680
|
+
modelValue.value[props.fcity] = _City;
|
|
38681
|
+
}
|
|
38682
|
+
if (hasOwn(modelValue.value, props.fcounty)) {
|
|
38683
|
+
modelValue.value[props.fcounty] = _County;
|
|
38684
|
+
}
|
|
38667
38685
|
emit("changeparsing", { province: _Province, city: _City, county: _County });
|
|
38668
38686
|
return;
|
|
38669
38687
|
}
|