Merge remote-tracking branch 'origin/0.8.X' into 0.8.X
This commit is contained in:
@@ -65,7 +65,8 @@
|
|||||||
|
|
||||||
<!-- 异常统计 -->
|
<!-- 异常统计 -->
|
||||||
<el-descriptions title="异常统计" :column="4" border>
|
<el-descriptions title="异常统计" :column="4" border>
|
||||||
<el-descriptions-item v-for="item in abSummary" :key="item.label" :label="item.label">{{ item.value }}</el-descriptions-item>
|
<el-descriptions-item v-for="item in abSummary" :key="item.label" :label="item.label">{{ item.value
|
||||||
|
}}</el-descriptions-item>
|
||||||
</el-descriptions>
|
</el-descriptions>
|
||||||
|
|
||||||
<el-descriptions title="明细信息" :column="3" border>
|
<el-descriptions title="明细信息" :column="3" border>
|
||||||
@@ -312,16 +313,27 @@ export default {
|
|||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
getLossList() {
|
async getLossList() {
|
||||||
this.loading = true
|
this.loading = true
|
||||||
listPendingAction({
|
const res1 = await listPendingAction({
|
||||||
actionType: 11, // 酸轧工序
|
actionType: 11, // 酸轧工序
|
||||||
pageSize: 999,
|
pageSize: 999,
|
||||||
pageNum: 1,
|
pageNum: 1,
|
||||||
startTime: this.queryParams.byCreateTimeStart,
|
startTime: this.queryParams.byCreateTimeStart,
|
||||||
endTime: this.queryParams.byCreateTimeEnd,
|
endTime: this.queryParams.byCreateTimeEnd,
|
||||||
}).then(res => {
|
})
|
||||||
const actions = res.rows
|
const res2 = await listPendingAction({
|
||||||
|
// actionStatus: 2,
|
||||||
|
warehouseId: this.queryParams.planId,
|
||||||
|
// actionType: 401,
|
||||||
|
actionType: 200, // 分条工序
|
||||||
|
pageSize: 999,
|
||||||
|
pageNum: 1,
|
||||||
|
startTime: this.queryParams.byCreateTimeStart,
|
||||||
|
endTime: this.queryParams.byCreateTimeEnd,
|
||||||
|
updateBy: 'suanzhakuguan',
|
||||||
|
})
|
||||||
|
const actions = res1.rows.concat(res2.rows)
|
||||||
const coilIds = actions.map(item => item.coilId).join(',')
|
const coilIds = actions.map(item => item.coilId).join(',')
|
||||||
console.log(coilIds)
|
console.log(coilIds)
|
||||||
if (!coilIds) {
|
if (!coilIds) {
|
||||||
@@ -342,7 +354,6 @@ export default {
|
|||||||
this.lossList = res.rows
|
this.lossList = res.rows
|
||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
})
|
|
||||||
},
|
},
|
||||||
// 导出
|
// 导出
|
||||||
exportData() {
|
exportData() {
|
||||||
|
|||||||
@@ -334,16 +334,27 @@ export default {
|
|||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
getLossList() {
|
async getLossList() {
|
||||||
this.loading = true
|
this.loading = true
|
||||||
listPendingAction({
|
const res1 = await listPendingAction({
|
||||||
actionType: 11, // 酸轧工序
|
actionType: 11, // 酸轧工序
|
||||||
pageSize: 999,
|
pageSize: 999,
|
||||||
pageNum: 1,
|
pageNum: 1,
|
||||||
startTime: this.queryParams.byCreateTimeStart,
|
startTime: this.queryParams.byCreateTimeStart,
|
||||||
endTime: this.queryParams.byCreateTimeEnd,
|
endTime: this.queryParams.byCreateTimeEnd,
|
||||||
}).then(res => {
|
})
|
||||||
const actions = res.rows
|
const res2 = await listPendingAction({
|
||||||
|
// actionStatus: 2,
|
||||||
|
warehouseId: this.queryParams.planId,
|
||||||
|
// actionType: 401,
|
||||||
|
actionType: 200, // 分条工序
|
||||||
|
pageSize: 999,
|
||||||
|
pageNum: 1,
|
||||||
|
startTime: this.queryParams.byCreateTimeStart,
|
||||||
|
endTime: this.queryParams.byCreateTimeEnd,
|
||||||
|
updateBy: 'suanzhakuguan',
|
||||||
|
})
|
||||||
|
const actions = res1.rows.concat(res2.rows)
|
||||||
const coilIds = actions.map(item => item.coilId).join(',')
|
const coilIds = actions.map(item => item.coilId).join(',')
|
||||||
console.log(coilIds)
|
console.log(coilIds)
|
||||||
if (!coilIds) {
|
if (!coilIds) {
|
||||||
@@ -364,7 +375,6 @@ export default {
|
|||||||
this.lossList = res.rows
|
this.lossList = res.rows
|
||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
})
|
|
||||||
},
|
},
|
||||||
// 导出
|
// 导出
|
||||||
exportData() {
|
exportData() {
|
||||||
|
|||||||
@@ -389,16 +389,27 @@ export default {
|
|||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
getLossList() {
|
async getLossList() {
|
||||||
this.loading = true
|
this.loading = true
|
||||||
listPendingAction({
|
const res1 = await listPendingAction({
|
||||||
actionType: 11, // 酸轧工序
|
actionType: 11, // 酸轧工序
|
||||||
pageSize: 999,
|
pageSize: 999,
|
||||||
pageNum: 1,
|
pageNum: 1,
|
||||||
startTime: this.queryParams.byCreateTimeStart,
|
startTime: this.queryParams.byCreateTimeStart,
|
||||||
endTime: this.queryParams.byCreateTimeEnd,
|
endTime: this.queryParams.byCreateTimeEnd,
|
||||||
}).then(res => {
|
})
|
||||||
const actions = res.rows
|
const res2 = await listPendingAction({
|
||||||
|
// actionStatus: 2,
|
||||||
|
warehouseId: this.queryParams.planId,
|
||||||
|
// actionType: 401,
|
||||||
|
actionType: 200, // 分条工序
|
||||||
|
pageSize: 999,
|
||||||
|
pageNum: 1,
|
||||||
|
startTime: this.queryParams.byCreateTimeStart,
|
||||||
|
endTime: this.queryParams.byCreateTimeEnd,
|
||||||
|
updateBy: 'suanzhakuguan',
|
||||||
|
})
|
||||||
|
const actions = res1.rows.concat(res2.rows)
|
||||||
const coilIds = actions.map(item => item.coilId).join(',')
|
const coilIds = actions.map(item => item.coilId).join(',')
|
||||||
console.log(coilIds)
|
console.log(coilIds)
|
||||||
if (!coilIds) {
|
if (!coilIds) {
|
||||||
@@ -406,7 +417,7 @@ export default {
|
|||||||
message: '暂无数据',
|
message: '暂无数据',
|
||||||
type: 'warning',
|
type: 'warning',
|
||||||
})
|
})
|
||||||
this.list = []
|
this.lossList = []
|
||||||
this.loading = false
|
this.loading = false
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -419,7 +430,6 @@ export default {
|
|||||||
this.lossList = res.rows
|
this.lossList = res.rows
|
||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
})
|
|
||||||
},
|
},
|
||||||
// 导出
|
// 导出
|
||||||
exportData() {
|
exportData() {
|
||||||
|
|||||||
@@ -318,16 +318,27 @@ export default {
|
|||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
getLossList() {
|
async getLossList() {
|
||||||
this.loading = true
|
this.loading = true
|
||||||
listPendingAction({
|
const res1 = await listPendingAction({
|
||||||
actionType: 11, // 酸轧工序
|
actionType: 11, // 酸轧工序
|
||||||
pageSize: 9999,
|
pageSize: 999,
|
||||||
pageNum: 1,
|
pageNum: 1,
|
||||||
startTime: this.queryParams.byCreateTimeStart,
|
startTime: this.queryParams.byCreateTimeStart,
|
||||||
endTime: this.queryParams.byCreateTimeEnd,
|
endTime: this.queryParams.byCreateTimeEnd,
|
||||||
}).then(res => {
|
})
|
||||||
const actions = res.rows
|
const res2 = await listPendingAction({
|
||||||
|
// actionStatus: 2,
|
||||||
|
warehouseId: this.queryParams.planId,
|
||||||
|
// actionType: 401,
|
||||||
|
actionType: 200, // 分条工序
|
||||||
|
pageSize: 999,
|
||||||
|
pageNum: 1,
|
||||||
|
startTime: this.queryParams.byCreateTimeStart,
|
||||||
|
endTime: this.queryParams.byCreateTimeEnd,
|
||||||
|
updateBy: 'suanzhakuguan',
|
||||||
|
})
|
||||||
|
const actions = res1.rows.concat(res2.rows)
|
||||||
const coilIds = actions.map(item => item.coilId).join(',')
|
const coilIds = actions.map(item => item.coilId).join(',')
|
||||||
console.log(coilIds)
|
console.log(coilIds)
|
||||||
if (!coilIds) {
|
if (!coilIds) {
|
||||||
@@ -348,7 +359,6 @@ export default {
|
|||||||
this.lossList = res.rows
|
this.lossList = res.rows
|
||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
})
|
|
||||||
},
|
},
|
||||||
// 导出
|
// 导出
|
||||||
exportData() {
|
exportData() {
|
||||||
|
|||||||
@@ -179,9 +179,9 @@ export default {
|
|||||||
this.planList = res.rows
|
this.planList = res.rows
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
getList() {
|
async getList() {
|
||||||
this.loading = true
|
this.loading = true
|
||||||
listPendingAction({
|
const res1 = await listPendingAction({
|
||||||
// actionStatus: 2,
|
// actionStatus: 2,
|
||||||
warehouseId: this.queryParams.planId,
|
warehouseId: this.queryParams.planId,
|
||||||
// actionType: 401,
|
// actionType: 401,
|
||||||
@@ -190,8 +190,19 @@ export default {
|
|||||||
pageNum: 1,
|
pageNum: 1,
|
||||||
startTime: this.queryParams.byCreateTimeStart,
|
startTime: this.queryParams.byCreateTimeStart,
|
||||||
endTime: this.queryParams.byCreateTimeEnd,
|
endTime: this.queryParams.byCreateTimeEnd,
|
||||||
}).then(res => {
|
})
|
||||||
const actions = res.rows
|
const res2 = await listPendingAction({
|
||||||
|
// actionStatus: 2,
|
||||||
|
warehouseId: this.queryParams.planId,
|
||||||
|
// actionType: 401,
|
||||||
|
actionType: 200, // 分条工序
|
||||||
|
pageSize: 999,
|
||||||
|
pageNum: 1,
|
||||||
|
startTime: this.queryParams.byCreateTimeStart,
|
||||||
|
endTime: this.queryParams.byCreateTimeEnd,
|
||||||
|
updateBy: 'suanzhakuguan',
|
||||||
|
})
|
||||||
|
const actions = res1.rows.concat(res2.rows)
|
||||||
const coilIds = actions.map(item => item.coilId).join(',')
|
const coilIds = actions.map(item => item.coilId).join(',')
|
||||||
console.log(coilIds)
|
console.log(coilIds)
|
||||||
if (!coilIds) {
|
if (!coilIds) {
|
||||||
@@ -212,7 +223,6 @@ export default {
|
|||||||
this.list = res.rows
|
this.list = res.rows
|
||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
})
|
|
||||||
},
|
},
|
||||||
// 导出
|
// 导出
|
||||||
exportData() {
|
exportData() {
|
||||||
|
|||||||
@@ -65,7 +65,8 @@
|
|||||||
|
|
||||||
<!-- 异常统计 -->
|
<!-- 异常统计 -->
|
||||||
<el-descriptions title="异常统计" :column="4" border>
|
<el-descriptions title="异常统计" :column="4" border>
|
||||||
<el-descriptions-item v-for="item in abSummary" :key="item.label" :label="item.label">{{ item.value }}</el-descriptions-item>
|
<el-descriptions-item v-for="item in abSummary" :key="item.label" :label="item.label">{{ item.value
|
||||||
|
}}</el-descriptions-item>
|
||||||
</el-descriptions>
|
</el-descriptions>
|
||||||
|
|
||||||
<el-descriptions title="明细信息" :column="3" border>
|
<el-descriptions title="明细信息" :column="3" border>
|
||||||
@@ -298,16 +299,27 @@ export default {
|
|||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
getLossList() {
|
async getLossList() {
|
||||||
this.loading = true
|
this.loading = true
|
||||||
listPendingAction({
|
const res1 = await listPendingAction({
|
||||||
actionType: 501, // 镀锌工序
|
actionType: 501, // 镀锌工序
|
||||||
pageSize: 999,
|
pageSize: 999,
|
||||||
pageNum: 1,
|
pageNum: 1,
|
||||||
startTime: this.queryParams.byCreateTimeStart,
|
startTime: this.queryParams.byCreateTimeStart,
|
||||||
endTime: this.queryParams.byCreateTimeEnd,
|
endTime: this.queryParams.byCreateTimeEnd,
|
||||||
}).then(res => {
|
})
|
||||||
const actions = res.rows
|
const res2 = await listPendingAction({
|
||||||
|
// actionStatus: 2,
|
||||||
|
warehouseId: this.queryParams.planId,
|
||||||
|
// actionType: 401,
|
||||||
|
actionType: 200, // 分条工序
|
||||||
|
pageSize: 999,
|
||||||
|
pageNum: 1,
|
||||||
|
startTime: this.queryParams.byCreateTimeStart,
|
||||||
|
endTime: this.queryParams.byCreateTimeEnd,
|
||||||
|
updateBy: 'duxinkuguan',
|
||||||
|
})
|
||||||
|
const actions = res1.rows.concat(res2.rows)
|
||||||
const coilIds = actions.map(item => item.coilId).join(',')
|
const coilIds = actions.map(item => item.coilId).join(',')
|
||||||
console.log(coilIds)
|
console.log(coilIds)
|
||||||
if (!coilIds) {
|
if (!coilIds) {
|
||||||
@@ -328,7 +340,6 @@ export default {
|
|||||||
this.lossList = res.rows
|
this.lossList = res.rows
|
||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
})
|
|
||||||
},
|
},
|
||||||
// 导出
|
// 导出
|
||||||
exportData() {
|
exportData() {
|
||||||
|
|||||||
@@ -320,16 +320,27 @@ export default {
|
|||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
getLossList() {
|
async getLossList() {
|
||||||
this.loading = true
|
this.loading = true
|
||||||
listPendingAction({
|
const res1 = await listPendingAction({
|
||||||
actionType: 501, // 镀锌工序
|
actionType: 501, // 镀锌工序
|
||||||
pageSize: 999,
|
pageSize: 999,
|
||||||
pageNum: 1,
|
pageNum: 1,
|
||||||
startTime: this.queryParams.byCreateTimeStart,
|
startTime: this.queryParams.byCreateTimeStart,
|
||||||
endTime: this.queryParams.byCreateTimeEnd,
|
endTime: this.queryParams.byCreateTimeEnd,
|
||||||
}).then(res => {
|
})
|
||||||
const actions = res.rows
|
const res2 = await listPendingAction({
|
||||||
|
// actionStatus: 2,
|
||||||
|
warehouseId: this.queryParams.planId,
|
||||||
|
// actionType: 401,
|
||||||
|
actionType: 200, // 分条工序
|
||||||
|
pageSize: 999,
|
||||||
|
pageNum: 1,
|
||||||
|
startTime: this.queryParams.byCreateTimeStart,
|
||||||
|
endTime: this.queryParams.byCreateTimeEnd,
|
||||||
|
updateBy: 'duxinkuguan',
|
||||||
|
})
|
||||||
|
const actions = res1.rows.concat(res2.rows)
|
||||||
const coilIds = actions.map(item => item.coilId).join(',')
|
const coilIds = actions.map(item => item.coilId).join(',')
|
||||||
console.log(coilIds)
|
console.log(coilIds)
|
||||||
if (!coilIds) {
|
if (!coilIds) {
|
||||||
@@ -337,7 +348,7 @@ export default {
|
|||||||
message: '暂无数据',
|
message: '暂无数据',
|
||||||
type: 'warning',
|
type: 'warning',
|
||||||
})
|
})
|
||||||
this.lossList = []
|
this.list = []
|
||||||
this.loading = false
|
this.loading = false
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -350,7 +361,6 @@ export default {
|
|||||||
this.lossList = res.rows
|
this.lossList = res.rows
|
||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
})
|
|
||||||
},
|
},
|
||||||
// 导出
|
// 导出
|
||||||
exportData() {
|
exportData() {
|
||||||
|
|||||||
@@ -376,16 +376,27 @@ export default {
|
|||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
getLossList() {
|
async getLossList() {
|
||||||
this.loading = true
|
this.loading = true
|
||||||
listPendingAction({
|
const res1 = await listPendingAction({
|
||||||
actionType: 501, // 镀锌工序
|
actionType: 501, // 镀锌工序
|
||||||
pageSize: 999,
|
pageSize: 999,
|
||||||
pageNum: 1,
|
pageNum: 1,
|
||||||
startTime: this.queryParams.byCreateTimeStart,
|
startTime: this.queryParams.byCreateTimeStart,
|
||||||
endTime: this.queryParams.byCreateTimeEnd,
|
endTime: this.queryParams.byCreateTimeEnd,
|
||||||
}).then(res => {
|
})
|
||||||
const actions = res.rows
|
const res2 = await listPendingAction({
|
||||||
|
// actionStatus: 2,
|
||||||
|
warehouseId: this.queryParams.planId,
|
||||||
|
// actionType: 401,
|
||||||
|
actionType: 200, // 分条工序
|
||||||
|
pageSize: 999,
|
||||||
|
pageNum: 1,
|
||||||
|
startTime: this.queryParams.byCreateTimeStart,
|
||||||
|
endTime: this.queryParams.byCreateTimeEnd,
|
||||||
|
updateBy: 'duxinkuguan',
|
||||||
|
})
|
||||||
|
const actions = res1.rows.concat(res2.rows)
|
||||||
const coilIds = actions.map(item => item.coilId).join(',')
|
const coilIds = actions.map(item => item.coilId).join(',')
|
||||||
console.log(coilIds)
|
console.log(coilIds)
|
||||||
if (!coilIds) {
|
if (!coilIds) {
|
||||||
@@ -406,7 +417,6 @@ export default {
|
|||||||
this.lossList = res.rows
|
this.lossList = res.rows
|
||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
})
|
|
||||||
},
|
},
|
||||||
// 导出
|
// 导出
|
||||||
exportData() {
|
exportData() {
|
||||||
|
|||||||
@@ -302,16 +302,27 @@ export default {
|
|||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
getLossList() {
|
async getLossList() {
|
||||||
this.loading = true
|
this.loading = true
|
||||||
listPendingAction({
|
const res1 = await listPendingAction({
|
||||||
actionType: 501, // 镀锌工序
|
actionType: 501, // 镀锌工序
|
||||||
pageSize: 9999,
|
pageSize: 999,
|
||||||
pageNum: 1,
|
pageNum: 1,
|
||||||
startTime: this.queryParams.byCreateTimeStart,
|
startTime: this.queryParams.byCreateTimeStart,
|
||||||
endTime: this.queryParams.byCreateTimeEnd,
|
endTime: this.queryParams.byCreateTimeEnd,
|
||||||
}).then(res => {
|
})
|
||||||
const actions = res.rows
|
const res2 = await listPendingAction({
|
||||||
|
// actionStatus: 2,
|
||||||
|
warehouseId: this.queryParams.planId,
|
||||||
|
// actionType: 401,
|
||||||
|
actionType: 200, // 分条工序
|
||||||
|
pageSize: 999,
|
||||||
|
pageNum: 1,
|
||||||
|
startTime: this.queryParams.byCreateTimeStart,
|
||||||
|
endTime: this.queryParams.byCreateTimeEnd,
|
||||||
|
updateBy: 'duxinkuguan',
|
||||||
|
})
|
||||||
|
const actions = res1.rows.concat(res2.rows)
|
||||||
const coilIds = actions.map(item => item.coilId).join(',')
|
const coilIds = actions.map(item => item.coilId).join(',')
|
||||||
console.log(coilIds)
|
console.log(coilIds)
|
||||||
if (!coilIds) {
|
if (!coilIds) {
|
||||||
@@ -319,7 +330,7 @@ export default {
|
|||||||
message: '暂无数据',
|
message: '暂无数据',
|
||||||
type: 'warning',
|
type: 'warning',
|
||||||
})
|
})
|
||||||
this.lossList = []
|
this.list = []
|
||||||
this.loading = false
|
this.loading = false
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -332,7 +343,6 @@ export default {
|
|||||||
this.lossList = res.rows
|
this.lossList = res.rows
|
||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
})
|
|
||||||
},
|
},
|
||||||
// 导出
|
// 导出
|
||||||
exportData() {
|
exportData() {
|
||||||
|
|||||||
@@ -179,9 +179,9 @@ export default {
|
|||||||
this.planList = res.rows
|
this.planList = res.rows
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
getList() {
|
async getList() {
|
||||||
this.loading = true
|
this.loading = true
|
||||||
listPendingAction({
|
const res1 = await listPendingAction({
|
||||||
// actionStatus: 2,
|
// actionStatus: 2,
|
||||||
warehouseId: this.queryParams.planId,
|
warehouseId: this.queryParams.planId,
|
||||||
// actionType: 401,
|
// actionType: 401,
|
||||||
@@ -190,8 +190,19 @@ export default {
|
|||||||
pageNum: 1,
|
pageNum: 1,
|
||||||
startTime: this.queryParams.byCreateTimeStart,
|
startTime: this.queryParams.byCreateTimeStart,
|
||||||
endTime: this.queryParams.byCreateTimeEnd,
|
endTime: this.queryParams.byCreateTimeEnd,
|
||||||
}).then(res => {
|
})
|
||||||
const actions = res.rows
|
const res2 = await listPendingAction({
|
||||||
|
// actionStatus: 2,
|
||||||
|
warehouseId: this.queryParams.planId,
|
||||||
|
// actionType: 401,
|
||||||
|
actionType: 200, // 分条工序
|
||||||
|
pageSize: 999,
|
||||||
|
pageNum: 1,
|
||||||
|
startTime: this.queryParams.byCreateTimeStart,
|
||||||
|
endTime: this.queryParams.byCreateTimeEnd,
|
||||||
|
updateBy: 'duxinkuguan',
|
||||||
|
})
|
||||||
|
const actions = res1.rows.concat(res2.rows)
|
||||||
const coilIds = actions.map(item => item.coilId).join(',')
|
const coilIds = actions.map(item => item.coilId).join(',')
|
||||||
console.log(coilIds)
|
console.log(coilIds)
|
||||||
if (!coilIds) {
|
if (!coilIds) {
|
||||||
@@ -212,7 +223,6 @@ export default {
|
|||||||
this.list = res.rows
|
this.list = res.rows
|
||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
})
|
|
||||||
},
|
},
|
||||||
// 导出
|
// 导出
|
||||||
exportData() {
|
exportData() {
|
||||||
|
|||||||
Reference in New Issue
Block a user