流程模版用户查询

szh-new
lijingjia 3 months ago
parent be9438a11d
commit 7da86fc8f1

@ -90,8 +90,11 @@
const open = () => {
dialogVisible.value = true
}
const onOpen = () => {
getList().then((res) => {
const changeHandle = (v, b) => {
onOpen(b)
}
const onOpen = (v) => {
getList({ queryKey: v }).then((res) => {
if (res.succeeded) {
userOrgOptions.value = res.data.map((e) => {
return {
@ -164,6 +167,7 @@
:style="{ width: '100%' }"
suffix-icon="search"
clearable
@keyup="changeHandle($event, queryForm.name)"
>
</el-input>
</template>

@ -83,10 +83,11 @@ export function rolegetList() {
})
}
// 获取用户
export function getList() {
export function getList(params) {
return request<DataResult>({
url: Api.getList,
method: 'get',
params
})
}
// 详情

Loading…
Cancel
Save