|
|
@@ -66,6 +66,7 @@
|
|
|
id="rebateSetTable"
|
|
|
:data="entityList"
|
|
|
size="mini"
|
|
|
+ v-loading="loading"
|
|
|
border
|
|
|
height="calc(100vh - 243px)"
|
|
|
style="width: 100%"
|
|
|
@@ -776,6 +777,7 @@ export default {
|
|
|
SupplierName: '',
|
|
|
dialogVisibleCertsSub: false,
|
|
|
dialogVisibleSubFile: false,
|
|
|
+ loading: false,
|
|
|
HSEOptions: [
|
|
|
{
|
|
|
value: '',
|
|
|
@@ -1103,6 +1105,7 @@ export default {
|
|
|
this.currentPage = 1
|
|
|
this.dialogVisible = false
|
|
|
}
|
|
|
+ this.loading = true
|
|
|
let myCreateOn = []
|
|
|
// 解析时间
|
|
|
if (this.CreateOn != null && this.CreateOn.length === 2) {
|
|
|
@@ -1125,6 +1128,7 @@ export default {
|
|
|
.then(res => {
|
|
|
this.entityList = res.data.items
|
|
|
this.currentItemCount = res.data.currentItemCount
|
|
|
+ this.loading = false
|
|
|
})
|
|
|
.catch(err => {
|
|
|
console.error(err)
|