|
@@ -429,6 +429,10 @@ export default {
|
|
|
if(this.$route.path === '/addMixedSheet' && !this.$route.query.id) this.initData();
|
|
|
},
|
|
|
methods: {
|
|
|
+ //获取字母对应下标
|
|
|
+ getColumnHeaderIndex(code){
|
|
|
+ return code.charCodeAt() - 65;
|
|
|
+ },
|
|
|
getCellIndices(table, startRow, endRow, startCol, endCol) {
|
|
|
const indices = [];
|
|
|
for (let i = startRow; i <= endRow; i++) {
|