Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
so-manage-ui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
smart-operation
so-manage-ui
Commits
cc97dcb3
Commit
cc97dcb3
authored
Jul 13, 2023
by
张耀
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:
获取工单推送人员列表接口参数
parent
50022109
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
4 deletions
+20
-4
src/components/manual-distribution/form.vue
src/components/manual-distribution/form.vue
+8
-1
src/components/manual-distribution/index.vue
src/components/manual-distribution/index.vue
+10
-1
src/page/main/ticket/business-ticket-manage/index.vue
src/page/main/ticket/business-ticket-manage/index.vue
+1
-2
src/page/main/ticket/business-ticket-manage/modules/add-form.vue
...e/main/ticket/business-ticket-manage/modules/add-form.vue
+1
-0
No files found.
src/components/manual-distribution/form.vue
View file @
cc97dcb3
...
@@ -107,6 +107,10 @@ const props = defineProps({
...
@@ -107,6 +107,10 @@ const props = defineProps({
type
:
Object
,
type
:
Object
,
default
:
METHODS
,
default
:
METHODS
,
},
},
is_all
:
{
type
:
Boolean
,
default
:
false
,
},
});
});
const
form_ref
=
ref
(
null
);
const
form_ref
=
ref
(
null
);
// 表单数据
// 表单数据
...
@@ -166,7 +170,10 @@ const addTrue = ref(0);
...
@@ -166,7 +170,10 @@ const addTrue = ref(0);
// 获取远程用户列表
// 获取远程用户列表
const
userLists
=
ref
([]);
const
userLists
=
ref
([]);
const
getUserLists
=
()
=>
{
const
getUserLists
=
()
=>
{
axios
.
get
(
"
/v1/api/user/devOps
"
).
then
((
res
)
=>
{
const
params
=
{
is_all
:
props
.
is_all
||
""
,
};
axios
.
get
(
"
/v1/api/user/devOps
"
,
{
params
}).
then
((
res
)
=>
{
if
(
res
.
data
.
code
==
200
)
{
if
(
res
.
data
.
code
==
200
)
{
userLists
.
value
=
userLists
.
value
=
res
.
data
.
data
?.
map
((
e
)
=>
{
res
.
data
.
data
?.
map
((
e
)
=>
{
...
...
src/components/manual-distribution/index.vue
View file @
cc97dcb3
...
@@ -4,7 +4,12 @@
...
@@ -4,7 +4,12 @@
<GapTitle
title=
"手动下发"
></GapTitle>
<GapTitle
title=
"手动下发"
></GapTitle>
</
template
>
</
template
>
<div
class=
"manual-distribution"
>
<div
class=
"manual-distribution"
>
<Form
labelWidth=
"80px"
:methodLists=
"ORDER_METHODS"
:history=
"history"
ref=
"form"
/>
<Form
labelWidth=
"80px"
:methodLists=
"ORDER_METHODS"
:history=
"history"
:user_list_url=
"user_list_url"
ref=
"form"
/>
</div>
</div>
<
template
#footer
>
<
template
#footer
>
<el-button
size=
"default"
@
click=
"Close"
>
关闭
</el-button>
<el-button
size=
"default"
@
click=
"Close"
>
关闭
</el-button>
...
@@ -36,6 +41,10 @@ const props = defineProps({
...
@@ -36,6 +41,10 @@ const props = defineProps({
type
:
Object
,
type
:
Object
,
default
:
null
,
default
:
null
,
},
},
is_all
:
{
type
:
Boolean
,
default
:
false
,
},
});
});
const
history
=
computed
(()
=>
{
const
history
=
computed
(()
=>
{
/*
/*
...
...
src/page/main/ticket/business-ticket-manage/index.vue
View file @
cc97dcb3
...
@@ -133,8 +133,7 @@
...
@@ -133,8 +133,7 @@
</div>
</div>
</div>
</div>
</div>
</div>
<ManualDistribution
v-model:visible=
"visible"
:row=
"active_row"
:is_all=
"true"
/>
<ManualDistribution
v-model:visible=
"visible"
:row=
"active_row"
/>
</div>
</div>
<!-- 删除 -->
<!-- 删除 -->
<el-dialog
class=
"dialog_box"
title=
"删除"
v-model=
"delDialog"
width=
"420px"
>
<el-dialog
class=
"dialog_box"
title=
"删除"
v-model=
"delDialog"
width=
"420px"
>
...
...
src/page/main/ticket/business-ticket-manage/modules/add-form.vue
View file @
cc97dcb3
...
@@ -21,6 +21,7 @@
...
@@ -21,6 +21,7 @@
labelWidth=
"115px"
labelWidth=
"115px"
:methodLists=
"ORDER_METHODS"
:methodLists=
"ORDER_METHODS"
methodLabel=
"推送方式"
methodLabel=
"推送方式"
:is_all=
"true"
:history=
"history"
/>
:history=
"history"
/>
</div>
</div>
</el-form-item>
</el-form-item>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment