|
@@ -91,11 +91,14 @@ onMounted(() => {
|
|
|
}
|
|
|
matchingType()
|
|
|
const tableId = getStoreValue('tableId')
|
|
|
+ if (tableId) {
|
|
|
Object.keys(tableId).forEach(key => {
|
|
|
- if (key === props.keyname) {
|
|
|
- placeholder.value = tableId[key]
|
|
|
- }
|
|
|
- })
|
|
|
+ if (key === props.keyname) {
|
|
|
+ placeholder.value = tableId[key]
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
})
|
|
|
|