|
|
@@ -1625,7 +1625,7 @@ const showTable = (type) => {
|
|
|
}
|
|
|
const loginComboxOptions = computed(() => {
|
|
|
return loginOptions.value.map((item) => ({
|
|
|
- text: item.label,
|
|
|
+ text: `${item.login} - ${groupTypeName(item.type)} - ${t('Custom.Deposit.AvailableBalance')}${groupCurrency(item.currency)}${item.balance}`,
|
|
|
value: item.login
|
|
|
}))
|
|
|
})
|
|
|
@@ -1650,7 +1650,6 @@ 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}`,
|
|
|
disable: item.closeFunctions.includes('1')
|
|
|
}))
|
|
|
const pages = getCurrentPages()
|
|
|
@@ -1926,6 +1925,12 @@ watch(channelId, async (newVal) => {
|
|
|
setTipsAmount()
|
|
|
}
|
|
|
});
|
|
|
+
|
|
|
+watch(locale, async (newVal) => {
|
|
|
+ if (newVal) {
|
|
|
+ setTipsAmount()
|
|
|
+ }
|
|
|
+});
|
|
|
watch(isStep3, async (newVal) => {
|
|
|
if (newVal) {
|
|
|
await nextTick();
|
|
|
@@ -1935,6 +1940,7 @@ watch(isStep3, async (newVal) => {
|
|
|
formRef.value?.clearValidate();
|
|
|
}
|
|
|
});
|
|
|
+
|
|
|
// Watch
|
|
|
watch(loginValue, (login) => {
|
|
|
if (login) {
|