Merged PR 82: feat:アクション選択UIの改善
以下の内容を改修しました。 1.TASK581:アクションのカテゴリおよび並び順を設定できるようにする 2.各アクションは対応イベント以外に設置できないようにする 3.DB構造を変更しました。 * action: categoryidとnosort列追加 * category: アクションのカテゴリマスタ追加 * eventaction: アクションごと設置できないイベントIDを登録 4.デプロイの際、scripts\kintoneToolDB_20240820_update.sqlを実行してDBを更新してください。 Related work items: #524, #581
This commit is contained in:
@@ -41,7 +41,7 @@
|
||||
</template>
|
||||
</q-input>
|
||||
</template>
|
||||
<action-select ref="appDg" name="model" :filter="filter" type="single"></action-select>
|
||||
<action-select ref="appDg" name="model" :filter="filter" type="single" @clearFilter="onClearFilter" ></action-select>
|
||||
</ShowDialog>
|
||||
|
||||
</q-page>
|
||||
@@ -198,7 +198,7 @@ const onSaveFlow = async () => {
|
||||
if (targetFlow === undefined) {
|
||||
$q.notify({
|
||||
type: 'negative',
|
||||
caption: "エラー",
|
||||
caption: 'エラー',
|
||||
message: `編集中のフローがありません。`
|
||||
});
|
||||
return;
|
||||
@@ -241,6 +241,10 @@ const fetchData = async () => {
|
||||
}
|
||||
}
|
||||
|
||||
const onClearFilter=()=>{
|
||||
filter.value='';
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
authStore.toggleLeftMenu();
|
||||
fetchData();
|
||||
|
||||
Reference in New Issue
Block a user