PropertyList

This commit is contained in:
2023-08-09 22:44:06 +09:00
parent be05c0879f
commit e1a6af7e57
7 changed files with 176 additions and 105 deletions

View File

@@ -0,0 +1,30 @@
<template>
<div>
</div>
</template>
<script lang="ts">
import {defineComponent,reactive} from 'vue';
import {KintoneEvent} from "../models/kintone";
export default defineComponent({
setup(props, ctx) {
const events = reactive<KintoneEvent[]>(
[
{
screen:"レコード追加画面",
type:"app.record.create.show",
name:"レコード追加画面を表示した後"
},
{
screen:"レコード追加画面",
type:"app.record.create.show",
name:"レコード追加画面を表示した後"
}
]
);
},
});
</script>
<style lang="scss">
</style>

View File

View File

@@ -0,0 +1,8 @@
export interface KintoneEvent{
screen:string,
type:string,
name:string
}

View File

@@ -9,7 +9,7 @@
</div>
<div style="min-height: 100vh;">
<div class="q-pa-md">
<q-btn-dropdown split color="primary" label="ルール新規作成" size="lg">
<!-- <q-btn-dropdown split color="primary" label="ルール新規作成" size="lg">
<q-list>
<q-item v-for="action in actions" clickable v-close-popup @click="onItemClick" :key="action">
<q-item-section>
@@ -17,10 +17,10 @@
</q-item-section>
</q-item>
</q-list>
</q-btn-dropdown>
</q-btn-dropdown> -->
</div>
<div class="q-pa-md">
<q-select v-model="model" :options="options" label="Standard"/>
<q-select v-model="model" :options="options" label="ダイアログ選択"/>
<q-btn :label="model+'選択'" color="primary" @click="showDg()" />
<show-dialog v-model:visible="show" :name="model" @close="closeDg">
<template v-if="model=='アプリ'">

View File

@@ -1,6 +1,17 @@
{
"extends": "@quasar/app-vite/tsconfig-preset",
"compilerOptions": {
"baseUrl": "."
"baseUrl": ".",
"paths": {
"src/*": ["src/*"],
"app/*": ["*"],
"components/*": ["src/components/*"],
"layouts/*": ["src/layouts/*"],
"pages/*": ["src/pages/*"],
"assets/*": ["src/assets/*"],
"boot/*": ["src/boot/*"],
"stores/*": ["src/stores/*"],
"models/*":["scr/models/*"]
}
}
}
}