华西海圻ELN前端工程
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
425 B

  1. //判断是否显示其他输入框
  2. export const isShowOther = (v = [], col) => {
  3. if (col && !col.otherCode) {
  4. return false
  5. }
  6. // 确保v是数组类型,以避免类型错误
  7. const arr = Array.isArray(v) ? v : [v]
  8. const otherArr = ['其他', '遮光', 'CA-QC Dilution-', '拒绝', '部分接受']
  9. //和凡哥商量,只要value为负数都显示其他
  10. return arr.some((item) => otherArr.includes(item))
  11. }