feat: enable responsible user filtering and enhance button states for improved UX
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 10s
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 10s
This commit is contained in:
parent
5ec924fe14
commit
4d8eebdd04
2 changed files with 3 additions and 0 deletions
|
|
@ -143,6 +143,7 @@ async function openRequestListDialog() {
|
||||||
page: 1,
|
page: 1,
|
||||||
pageSize: 999,
|
pageSize: 999,
|
||||||
incomplete: true,
|
incomplete: true,
|
||||||
|
responsibleOnly: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
if (ret) {
|
if (ret) {
|
||||||
|
|
|
||||||
|
|
@ -153,6 +153,7 @@ watch(
|
||||||
@click="prev"
|
@click="prev"
|
||||||
/>
|
/>
|
||||||
<MainButton
|
<MainButton
|
||||||
|
:disabled="selected.length === 0"
|
||||||
icon="mdi-check"
|
icon="mdi-check"
|
||||||
color="207 96% 32%"
|
color="207 96% 32%"
|
||||||
solid
|
solid
|
||||||
|
|
@ -164,6 +165,7 @@ watch(
|
||||||
</MainButton>
|
</MainButton>
|
||||||
<SaveButton
|
<SaveButton
|
||||||
v-if="step === Step.Configure"
|
v-if="step === Step.Configure"
|
||||||
|
:disabled="form.responsibleUserId === ''"
|
||||||
id="btn-save"
|
id="btn-save"
|
||||||
solid
|
solid
|
||||||
@click="$emit('submit', { form, selected })"
|
@click="$emit('submit', { form, selected })"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue