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.
@@ -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.filter(item => item.dicValue === '201') || []
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) {