diff --git a/src/api/advance-boot/bearingCapacity.ts b/src/api/advance-boot/bearingCapacity.ts
index b7907bac..27fe67a0 100644
--- a/src/api/advance-boot/bearingCapacity.ts
+++ b/src/api/advance-boot/bearingCapacity.ts
@@ -15,7 +15,6 @@ export function addUse(data) {
method: 'post',
data
})
-
}
//承载能力评估用户编辑
export function updateUse(data) {
@@ -47,6 +46,22 @@ export function queyDetail() {
method: 'post'
})
}
+// 用户新增承载能力评估策略(电弧炉)
+export function adddhl(data) {
+ return createAxios({
+ url: '/advance-boot/carrycapacity/adddhl',
+ method: 'post',
+ data
+ })
+}
+
+//承载能力评估策略初始化查询(电弧炉)
+export function queyDetailDhl() {
+ return createAxios({
+ url: '/advance-boot/carrycapacity/queyDetailDhl',
+ method: 'post'
+ })
+}
//用户新增承载能力评估策略
export function addCarryc(data) {
return createAxios({
diff --git a/src/components/table/header/index.vue b/src/components/table/header/index.vue
index 233fc16d..d9791efc 100644
--- a/src/components/table/header/index.vue
+++ b/src/components/table/header/index.vue
@@ -17,7 +17,7 @@
-
+
@@ -110,9 +110,8 @@ const handlerHeight = () => {
).height as string
}
const computedSearchRow = () => {
-
if (!headerForm.value.$el) return
-
+
// 清空headerFormSecond.value.$el下的元素
while (headerFormSecond.value.$el.firstChild) {
headerForm.value.$el.appendChild(headerFormSecond.value.$el.firstChild)
@@ -135,7 +134,6 @@ const computedSearchRow = () => {
} else {
showUnfoldButton.value = false
}
-
}
const showSelect = ref(false)
@@ -163,10 +161,13 @@ const setInterval = (val: any) => {
datePickerRef.value.setInterval(val)
}
-defineExpose({ onComSearch, areaRef, setDatePicker ,setInterval,datePickerRef})
+defineExpose({ onComSearch, areaRef, setDatePicker, setInterval, datePickerRef })
-
+