| | |
| | | this.characterEditOldValue = row[column.property]; |
| | | if (this.editValueList.includes(row[column.property])) { |
| | | this.$message.warning('请检查字符集是否有重复!') |
| | | } else if (row[column.property] === undefined || row[column.property] === null) { |
| | | this.$message.warning('请检查字符集是否有空值!'); |
| | | } else { |
| | | this.editValueList.push(row[column.property]); |
| | | } |
| | |
| | | this.loading = true; |
| | | // const targetObject = this.characterReleasedList.find(obj => obj.oid === this.selectValue); |
| | | // const chartValue = targetObject.name; |
| | | getList({codeRuleId: this.select, chartType: "fillerChar", chartValue: this.characterValue}).then(res => { |
| | | getList({codeRuleId: this.select, chartType: "separator", chartValue: this.characterValue}).then(res => { |
| | | console.log(res.data.data); |
| | | this.tableData = res.data.data; |
| | | this.loading = false; |