|
@@ -14,6 +14,7 @@ import { computed, shallowRef, toRaw, PropType, watch } from 'vue'
|
|
|
import { ElMessage } from 'element-plus'
|
|
import { ElMessage } from 'element-plus'
|
|
|
import { useRequest } from '@/hooks/request'
|
|
import { useRequest } from '@/hooks/request'
|
|
|
import { getBankInfoByCusBank } from '@/services/api/bank'
|
|
import { getBankInfoByCusBank } from '@/services/api/bank'
|
|
|
|
|
+import { i18n } from '@/stores'
|
|
|
|
|
|
|
|
const props = defineProps({
|
|
const props = defineProps({
|
|
|
cusbankid: String,
|
|
cusbankid: String,
|
|
@@ -22,7 +23,7 @@ const props = defineProps({
|
|
|
},
|
|
},
|
|
|
placeholder: {
|
|
placeholder: {
|
|
|
type: String,
|
|
type: String,
|
|
|
- default: '请输入'
|
|
|
|
|
|
|
+ default: i18n.global.t('common.pleaseenter')
|
|
|
}
|
|
}
|
|
|
})
|
|
})
|
|
|
|
|
|