文言修正

This commit is contained in:
xiaozhe.ma
2024-12-10 20:10:37 +09:00
parent c684105c2c
commit 8e0a9287e9
3 changed files with 8 additions and 8 deletions

View File

@@ -151,7 +151,7 @@ class dbapp(crudbase):
flow.flowid = flowhistory.flowid flow.flowid = flowhistory.flowid
flow.eventid=flowhistory.eventid flow.eventid=flowhistory.eventid
flow.name=flowhistory.name flow.name=flowhistory.name
flow.content=flow.content flow.content=flowhistory.content
flow.updateuserid=userid flow.updateuserid=userid
db.add(flow) db.add(flow)
db.commit() db.commit()

View File

@@ -114,8 +114,8 @@ const deleteDialog = ref(false);
const deleteUserLoading = ref(false); const deleteUserLoading = ref(false);
const actionList = [ const actionList = [
{ label: '設定', icon: 'account_tree', action: toEditFlowPage }, { label: 'フローの編集', icon: 'account_tree', action: toEditFlowPage },
{ label: '履歴', icon: 'history', action: showHistory }, { label: 'バージョンの切替', icon: 'history', action: showHistory },
{ separator: true }, { separator: true },
{ label: '削除', icon: 'delete_outline', class: 'text-red', action: removeRow }, { label: '削除', icon: 'delete_outline', class: 'text-red', action: removeRow },
]; ];

View File

@@ -122,12 +122,12 @@
</q-card-section> </q-card-section>
<q-card-section v-else class="row items-center"> <q-card-section v-else class="row items-center">
<q-icon name="error" color="negative" size="2em" /> <q-icon name="error" color="negative" size="2em" />
<span class="q-ml-sm">ドメイン利用権限が存在しキャンセルする必要がある</span> <span class="q-ml-sm">ドメインは使用中です削除してもよろしいですか</span>
</q-card-section> </q-card-section>
<q-card-actions align="right"> <q-card-actions align="right">
<q-btn flat label="Cancel" color="primary" v-close-popup /> <q-btn flat label="キャンセル" color="primary" v-close-popup />
<q-btn v-if="deleteLoadingState > 0" label="処理に行く" color="primary" v-close-popup @click="openShareDg(editId)" /> <q-btn v-if="deleteLoadingState > 0" label="実行" color="primary" v-close-popup @click="openShareDg(editId)" />
<q-btn flat v-else label="OK" :disabled="deleteLoadingState" color="primary" v-close-popup @click="deleteDomain()" /> <q-btn flat v-else label="OK" :disabled="deleteLoadingState" color="primary" v-close-popup @click="deleteDomain()" />
</q-card-actions> </q-card-actions>
</q-card> </q-card>
@@ -196,7 +196,7 @@ const shareDg = ref(false);
const shareDomain = ref<IDomainOwnerDisplay>({} as IDomainOwnerDisplay); const shareDomain = ref<IDomainOwnerDisplay>({} as IDomainOwnerDisplay);
const activeOptions = [ const activeOptions = [
{ value: 0, label: '全状態' }, { value: 0, label: 'すべて' },
{ value: 1, label: '使用' }, { value: 1, label: '使用' },
{ value: 2, label: '未使用'} { value: 2, label: '未使用'}
] ]