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
acaaa56d
Commit
acaaa56d
authored
Jul 12, 2023
by
张耀
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'zy' into dev
parents
f9b4416e
68858d51
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
6 deletions
+7
-6
src/page/main/forewarning/indicator-config/detail/index.vue
src/page/main/forewarning/indicator-config/detail/index.vue
+4
-4
src/page/main/ticket/business-ticket-manage/modules/add-form.vue
...e/main/ticket/business-ticket-manage/modules/add-form.vue
+2
-1
src/page/main/ticket/business-ticket-manage/modules/by-week.vue
...ge/main/ticket/business-ticket-manage/modules/by-week.vue
+1
-1
No files found.
src/page/main/forewarning/indicator-config/detail/index.vue
View file @
acaaa56d
...
...
@@ -44,7 +44,7 @@
<Info
:labelData=
"rule_label"
:valueData=
"rule_data"
>
<
template
#alert_rule_type
="{
valueData
}"
>
<span>
{{
ruleTypeOptions
[
valueData
.
alert_rule_type
]
}}
{{
ruleTypeOptions
[
valueData
.
alert_rule_type
]
?.
label
||
""
}}
</span>
</
template
>
</Info>
...
...
@@ -129,6 +129,8 @@ const rule_data = ref({});
const
ruleTypeOptions
=
ref
({});
const
getRuleTypeOptions
=
async
()
=>
{
ruleTypeOptions
.
value
=
await
GetRuleTypeOptions
();
console
.
log
(
"
ruleTypeOptions.value:
"
,
ruleTypeOptions
.
value
);
getInfoData
();
};
const
advanced_label
=
[
[
...
...
@@ -209,8 +211,7 @@ const getInfoData = () => {
check_period
:
check_period
+
"
分钟
"
,
};
rule_data
.
value
=
{
// alert_rule_type: alert_rule_type,
alert_rule_type
:
"
1
"
,
alert_rule_type
:
alert_rule_type
,
};
}
else
{
ElMessage
.
error
(
res
.
data
.
data
);
...
...
@@ -219,7 +220,6 @@ const getInfoData = () => {
};
onBeforeMount
(()
=>
{
getRuleTypeOptions
();
getInfoData
();
});
</
script
>
...
...
src/page/main/ticket/business-ticket-manage/modules/add-form.vue
View file @
acaaa56d
<
template
>
<div
class=
"add-form"
>
<el-form
:model=
"state.form"
ref=
"form"
:rules=
"state.rules"
label-width=
"11
0
px"
>
<el-form
:model=
"state.form"
ref=
"form"
:rules=
"state.rules"
label-width=
"11
5
px"
>
<el-form-item
label=
"工单名称"
prop=
"ticket_name"
>
<el-input
v-model=
"state.form.ticket_name"
:disabled=
"isEdit"
placeholder=
"请输入工单名称"
></el-input>
</el-form-item>
...
...
@@ -18,6 +18,7 @@
<ManualDistributionForm
ref=
"manual_distribution_form"
:noElLabel=
"false"
labelWidth=
"115px"
:methodLists=
"ORDER_METHODS"
methodLabel=
"推送方式"
:history=
"history"
/>
...
...
src/page/main/ticket/business-ticket-manage/modules/by-week.vue
View file @
acaaa56d
<
template
>
<el-form
:model=
"state.form"
ref=
"form"
:rules=
"rules"
label-width=
"11
0
px"
>
<el-form
:model=
"state.form"
ref=
"form"
:rules=
"rules"
label-width=
"11
5
px"
>
<el-form-item
label=
"按周 (多选)"
prop=
"week_days"
>
<el-select
v-model=
"state.form.week_days"
:multiple=
"true"
placeholder=
"请选择"
style=
"flex: 1"
>
<el-option
v-for=
"item in weekDayOptions"
:key=
"item.id"
:label=
"item.name"
:value=
"item.id"
>
</el-option>
...
...
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