|
|
@ -49,6 +49,10 @@ |
|
|
|
<el-text @click="() => ViewTransactionInformation(slotProps.scope)"> |
|
|
|
<el-text @click="() => ViewTransactionInformation(slotProps.scope)"> |
|
|
|
异动信息 |
|
|
|
异动信息 |
|
|
|
</el-text> |
|
|
|
</el-text> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-text @click="() => ViewOrderList(slotProps.scope)"> |
|
|
|
|
|
|
|
订单详情 |
|
|
|
|
|
|
|
</el-text> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</tablecmt> |
|
|
|
</tablecmt> |
|
|
@ -88,7 +92,7 @@ import dayjs from 'dayjs'; |
|
|
|
import { mapGetters } from 'vuex'; |
|
|
|
import { mapGetters } from 'vuex'; |
|
|
|
/** 获取字典 */ |
|
|
|
/** 获取字典 */ |
|
|
|
import { getDictionaryBiz } from '@/api/system/dict'; |
|
|
|
import { getDictionaryBiz } from '@/api/system/dict'; |
|
|
|
import { postPageReconciliationList, postCheckBalance, postReal } from '@/api/finance/MerchantDepositSlip'; |
|
|
|
import { postPageReconciliationList, postCheckBalance,postFindOrderDetail } from '@/api/finance/MerchantDepositSlip'; |
|
|
|
import { |
|
|
|
import { |
|
|
|
downloadXls, |
|
|
|
downloadXls, |
|
|
|
setNodeHeight, |
|
|
|
setNodeHeight, |
|
|
@ -314,7 +318,7 @@ const handleConfirm = () => { |
|
|
|
details.loadingObj.pageLoading = true; |
|
|
|
details.loadingObj.pageLoading = true; |
|
|
|
|
|
|
|
|
|
|
|
const submitData = { |
|
|
|
const submitData = { |
|
|
|
orderInfoIds: _arr, |
|
|
|
reconciliationOrderIds: _arr, |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
const res = await postCheckBalance(submitData); |
|
|
|
const res = await postCheckBalance(submitData); |
|
|
@ -354,6 +358,22 @@ const ViewTransactionInformation = ({ row }) => { |
|
|
|
query: { reconciliationOrderId: row.id }, |
|
|
|
query: { reconciliationOrderId: row.id }, |
|
|
|
}); |
|
|
|
}); |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** 查看订单列表 */ |
|
|
|
|
|
|
|
const ViewOrderList =async ({row})=>{ |
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
details.loadingObj.pageLoading = true |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const res = await postFindOrderDetail({ reconciliationOrderId: row.id }) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const {code, data} = res.data |
|
|
|
|
|
|
|
if (code !== 200) return |
|
|
|
|
|
|
|
} catch (error) { |
|
|
|
|
|
|
|
console.log('error :>> ', error); |
|
|
|
|
|
|
|
}finally{ |
|
|
|
|
|
|
|
details.loadingObj.pageLoading = false |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
</script> |
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss"> |
|
|
|
<style scoped lang="scss"> |
|
|
|