|
@@ -445,7 +445,7 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { detailExcel, excelType,wbstree, getWbsTypeList,} from '@/api/exctab/excelmodel';
|
|
|
+import { excelType} from '@/api/exctab/excelmodel';
|
|
|
import {
|
|
|
updateBatchNodeTableInfo,
|
|
|
selectByNodeTable,
|
|
@@ -583,7 +583,6 @@ export default {
|
|
|
id:2
|
|
|
}
|
|
|
],
|
|
|
-
|
|
|
curEleTable:{},
|
|
|
eleReg: /(-|>|<|≥|≤|±|【】)?([^≥≤±【】]*)/,
|
|
|
editEleList:[],
|
|
@@ -660,7 +659,7 @@ export default {
|
|
|
console.log(node);
|
|
|
const parentId = (node.level === 0) ? 12345678910 : node.data.id;
|
|
|
|
|
|
- tabTypeLazyTreeAll({parentId,current:1,size:200}).then(res => {
|
|
|
+ tabTypeLazyTreeAll({parentId,current:1}).then(res => {
|
|
|
resolve(res.data.data.records.map(item => {
|
|
|
return {
|
|
|
...item,
|
|
@@ -861,7 +860,7 @@ export default {
|
|
|
//刷新左边树形数据
|
|
|
refreshTreeData(){
|
|
|
const parentId =12345678910
|
|
|
- tabTypeLazyTreeAll({parentId,current:1,size:200}).then(res => {
|
|
|
+ tabTypeLazyTreeAll({parentId,current:1}).then(res => {
|
|
|
this.treeData=res.data.data.records;
|
|
|
this.$nextTick(()=>{
|
|
|
//树默认展开
|