|
|
|
@ -127,7 +127,7 @@
|
|
|
|
|
</template>
|
|
|
|
|
<template #tools>
|
|
|
|
|
<div class="right BookTopButton">
|
|
|
|
|
<span class="tab-btn" @click="tableRefresh">
|
|
|
|
|
<span class="tab-btn" @click="tableRefreshFirst">
|
|
|
|
|
<a-icon type="redo" :style="{ fontSize: '14px', transform: 'rotate(278deg)' }" />
|
|
|
|
|
</span>
|
|
|
|
|
<span class="tab-btn" @click="tableHeaderEdit">
|
|
|
|
@ -833,6 +833,7 @@ export default {
|
|
|
|
|
spinning: false,
|
|
|
|
|
isUpload: false,
|
|
|
|
|
refshYZloading: false,
|
|
|
|
|
nowFirst:false,
|
|
|
|
|
copyMoreForm: this.$form.createForm(this, { number: '' }),
|
|
|
|
|
copyMoreFlag: false,
|
|
|
|
|
percent: 0,
|
|
|
|
@ -1692,6 +1693,15 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
tableRefresh() {
|
|
|
|
|
const data = { ...this.formRes }
|
|
|
|
|
this.nowFirst = false
|
|
|
|
|
data.multisort = this.searchData.multisort
|
|
|
|
|
this.searchData = JSON.parse(JSON.stringify(data))
|
|
|
|
|
this.init(this.searchData)
|
|
|
|
|
this.formRes = data
|
|
|
|
|
},
|
|
|
|
|
tableRefreshFirst() {
|
|
|
|
|
const data = { ...this.formRes }
|
|
|
|
|
this.nowFirst = true
|
|
|
|
|
data.multisort = this.searchData.multisort
|
|
|
|
|
this.searchData = JSON.parse(JSON.stringify(data))
|
|
|
|
|
this.init(this.searchData)
|
|
|
|
@ -1908,7 +1918,7 @@ export default {
|
|
|
|
|
query.MBLNO = arr.toString()
|
|
|
|
|
}
|
|
|
|
|
const firstFlag = this.firstFlag
|
|
|
|
|
if (firstFlag) {
|
|
|
|
|
if (firstFlag || this.nowFirst) {
|
|
|
|
|
query.firstFlag = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|