|
|
@@ -1698,7 +1698,8 @@ const showTable = () => {
|
|
|
const loginComboxOptions = computed(() => {
|
|
|
return loginOptions.value.map((item) => ({
|
|
|
text: item.label,
|
|
|
- value: item.login
|
|
|
+ value: item.login,
|
|
|
+ disable: item.disable,
|
|
|
}))
|
|
|
})
|
|
|
const creditCardOptions = computed(() => {
|
|
|
@@ -1723,7 +1724,8 @@ const getDateList = async () => {
|
|
|
if (res.code == Code.StatusOK) {
|
|
|
loginOptions.value = res.data.map(item => ({
|
|
|
...item,
|
|
|
- label: `${item.login} - ${groupTypeName(item.type)} - ${t('Custom.Deposit.AvailableBalance')}${groupCurrency(item.currency)}${item.balance}`
|
|
|
+ label: `${item.login} - ${groupTypeName(item.type)} - ${t('Custom.Deposit.AvailableBalance')}${groupCurrency(item.currency)}${item.balance}`,
|
|
|
+ disable: item.closeFunctions.includes('1')
|
|
|
}))
|
|
|
const pages = getCurrentPages()
|
|
|
const route = pages[pages.length - 1].$page?.options || {}
|