|
@@ -179,7 +179,6 @@
|
|
|
|
|
|
<script setup>
|
|
|
import { nextTick, ref, watch } from 'vue'
|
|
|
-
|
|
|
import { isNumberReg, keepdecimal } from '~uti/tools'
|
|
|
import HcBillBaseModal from './addBillBaseModal.vue'
|
|
|
import qualityRleation from './qualityRleation.vue'
|
|
@@ -394,6 +393,7 @@ const treeNodeTap = ({ data, keys }) => {
|
|
|
ischangeByGetNode.value = false
|
|
|
getNodeDivide(data.id)
|
|
|
getCurrentNodeAllFormData(data.id)
|
|
|
+ getGetWbsFiles(data.id)
|
|
|
}
|
|
|
|
|
|
//获取工程划分
|
|
@@ -410,6 +410,12 @@ const getNodeDivide = async (nodeId) => {
|
|
|
})
|
|
|
}
|
|
|
|
|
|
+//获取附件
|
|
|
+const getGetWbsFiles = async (id) => {
|
|
|
+ const { data } = await mainApi.addGetWbsFiles(id)
|
|
|
+ baseForm.value.fileList = getArrValue(data)
|
|
|
+}
|
|
|
+
|
|
|
//获取变更令
|
|
|
const ischangeByGetNode = ref(false)
|
|
|
const getNodeToken = async () => {
|