|
@@ -144,12 +144,12 @@ const rowLockingClick = async (row) => {
|
|
|
//重新计算报表
|
|
|
|
|
|
const rowRecalculateClick = async (row) => {
|
|
|
- row.recalculateLoading.value = true
|
|
|
+ row.recalculateLoading = true
|
|
|
const { error, code, msg } = await mainApi.recalculate({
|
|
|
reportId: row.id,
|
|
|
type:0,
|
|
|
})
|
|
|
- row.recalculateLoading.value = false
|
|
|
+ row.recalculateLoading = false
|
|
|
if (!error && code === 200) {
|
|
|
window.$message.success('操作成功')
|
|
|
getTableData().then()
|