@@ -891,6 +893,15 @@ export default {
}
},
methods: {
+ reImplRequire(row, column, cellValue, index) {
+ let str = ''
+ this.attrTypeOptions.forEach((item, index) => {
+ if (item.value === cellValue) {
+ str = item.label
+ }
+ })
+ return str
+ },
formatIssueDate(str) {
const momentDate = this.$moment(str)
if (momentDate.isValid()) {