mirror of
https://github.com/doocs/md.git
synced 2024-11-24 19:10:34 +08:00
fix: update insertForm component
This commit is contained in:
parent
47847aabc4
commit
214f4ba3ae
@ -52,7 +52,10 @@
|
||||
|
||||
<script>
|
||||
import config from "../../assets/scripts/config";
|
||||
import { mapState, mapMutations } from "vuex";
|
||||
import {
|
||||
mapState,
|
||||
mapMutations
|
||||
} from "vuex";
|
||||
export default {
|
||||
props: {
|
||||
dialogFormVisible: {
|
||||
@ -87,24 +90,16 @@ export default {
|
||||
let table = "";
|
||||
let currRow = [];
|
||||
for (let i = 0; i < rows + 2; ++i) {
|
||||
table += "|";
|
||||
table += "|\t";
|
||||
currRow = [];
|
||||
for (let j = 0; j < cols; ++j) {
|
||||
let rowIdx = i;
|
||||
if (i > 1) {
|
||||
rowIdx = i - 1;
|
||||
const rowIdx = i > 1 ? i - 1 : i;
|
||||
i === 1 ?
|
||||
currRow.push("---\t") :
|
||||
currRow.push(this.tableData[`k_${rowIdx}_${j}`] || "");
|
||||
}
|
||||
|
||||
i === 1
|
||||
? currRow.push("---")
|
||||
: currRow.push(
|
||||
this.tableData[`k_${rowIdx}_${j}`]
|
||||
? this.tableData[`k_${rowIdx}_${j}`]
|
||||
: ""
|
||||
);
|
||||
}
|
||||
table += currRow.join("|");
|
||||
table += "|\n";
|
||||
table += currRow.join("\t|\t");
|
||||
table += "\t|\n";
|
||||
}
|
||||
this.tableData = {};
|
||||
this.rowNum = 1;
|
||||
@ -117,6 +112,7 @@ export default {
|
||||
handleChange(val, type) {}
|
||||
}
|
||||
};
|
||||
|
||||
</script>
|
||||
|
||||
<style lang="less">
|
||||
|
Loading…
Reference in New Issue
Block a user