|
@@ -38,7 +38,7 @@
|
|
|
</template>
|
|
|
<script setup lang="ts" name="orderAcceptHistory">
|
|
|
import { onMounted, reactive, ref } from 'vue';
|
|
|
-import { FormInstance } from 'element-plus';
|
|
|
+import { FormInstance } from 'element-plus';
|
|
|
import { throttle } from '/@/utils/tools';
|
|
|
import { historyOrder } from '/@/api/business/order';
|
|
|
|
|
@@ -138,19 +138,17 @@ const dialogConfirmRepeat = (val: any) => {
|
|
|
setTimeout(() => {
|
|
|
multipleTableRef.value!.toggleRowSelection(j, true);
|
|
|
}, 0);
|
|
|
- }
|
|
|
}
|
|
|
+ }
|
|
|
}
|
|
|
};
|
|
|
// 清除重复选择
|
|
|
const clearRepeat = () => {
|
|
|
multipleTableRef.value!.clearSelection();
|
|
|
};
|
|
|
-onMounted(()=>{
|
|
|
- if(props.ruleForm.id){
|
|
|
- searchHistory();
|
|
|
- }
|
|
|
-})
|
|
|
+onMounted(() => {
|
|
|
+ searchHistory();
|
|
|
+});
|
|
|
defineExpose({
|
|
|
multipleSelection,
|
|
|
multipleTableRef,
|