imeik-bizui 1.9.8 → 2.0.0
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/bizui/src/FieldApplyDeparmentSelect/index.vue +1 -1
- package/dist/bizui/src/FieldExpertSelect/index.vue +1 -1
- package/dist/imeik-bizui.common.js +105 -115
- package/dist/imeik-bizui.common.js.gz +0 -0
- package/dist/imeik-bizui.css +1 -1
- package/dist/imeik-bizui.css.gz +0 -0
- package/dist/imeik-bizui.umd.js +105 -115
- package/dist/imeik-bizui.umd.js.gz +0 -0
- package/dist/imeik-bizui.umd.min.js +4 -4
- package/dist/imeik-bizui.umd.min.js.gz +0 -0
- package/package.json +1 -1
|
@@ -269,7 +269,7 @@ export default {
|
|
|
269
269
|
if (res.code === 200) {
|
|
270
270
|
getTagModelUrl(res?.data[0]?.tagValueUrl).then((valData) => {
|
|
271
271
|
if (valData.code === 200) {
|
|
272
|
-
this.options = valData?.data
|
|
272
|
+
this.options = valData?.data || []
|
|
273
273
|
this.$nextTick(() => {
|
|
274
274
|
callback && callback()
|
|
275
275
|
})
|
|
@@ -388,7 +388,7 @@ export default {
|
|
|
388
388
|
} else if (!item.costAmount) {
|
|
389
389
|
res && showMessage && this.$message.warning('请检查费用金额')
|
|
390
390
|
res = false
|
|
391
|
-
} else if (this.checkIdentity(item.shenfenList_new) && !item.identity) {
|
|
391
|
+
} else if (!this.checkIdentity(item.shenfenList_new) && !item.identity) {
|
|
392
392
|
res && showMessage && this.$message.warning('请检查活动参与身份')
|
|
393
393
|
res = false
|
|
394
394
|
} else if (this.checkStandardAmountsIsBeyond(item) && !item.remark) {
|