フィールドの生のjsonをビューに直接表示する。

This commit is contained in:
Mouriya
2024-06-17 15:20:32 +09:00
parent 734adf9a1e
commit 5fdb23d6d5

View File

@@ -53,7 +53,7 @@
<div>アプリ : {{ item.to.app.name }}</div> <div>アプリ : {{ item.to.app.name }}</div>
<div>フィールドのコード : {{ item.to.fields[0].code }}</div> <div>フィールドのコード : {{ item.to.fields[0].code }}</div>
<div>フィールドのタイプ : {{ item.to.fields[0].type }}</div> <div>フィールドのタイプ : {{ item.to.fields[0].type }}</div>
<!-- <div>フィールドのタイプ : {{ item.to.fields[0] }}</div> --> <div>フィールド : {{ item.to.fields[0] }}</div>
</q-tooltip> </q-tooltip>
</div> </div>
</template> </template>
@@ -240,7 +240,7 @@ export default defineComponent({
config: { config: {
canInput: false, canInput: false,
buttonsConfig: [ buttonsConfig: [
{ label: '変数', color: 'green', type: 'VariableAdd' }, { label: '変数', color: 'green', type: 'VariableAdd',editable:false },
] ]
} }
}; };