eight
2024-10-31 812ffe6f989303514b45f8106f09ff902bbe0d8a
src/store/modules/checkType.ts
@@ -55,17 +55,17 @@
    },
    getCheckTypeName(type: number) {
      if (!this.isSetCheckType) {
        this.setcheckTypeMap()
        this.setCheckTypeMap()
      }
      return this.checkTypeMap[type]
    },
    getCheckTypeOptions() {
      if (!this.isSetCheckType) {
        this.setcheckTypeMap()
        this.setCheckTypeMap()
      }
      return Object.keys(this.checkTypeMap).map((key) => {
        return {
          value: key,
          value: parseInt(key, 10),
          label: this.checkTypeMap[key]
        }
      });