Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
罗超
confucius
Commits
9675684a
Commit
9675684a
authored
Dec 06, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
2c3c5b2b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
16 deletions
+22
-16
sale-form.vue
src/components/sale/sale-form.vue
+22
-16
No files found.
src/components/sale/sale-form.vue
View file @
9675684a
...
...
@@ -45,8 +45,9 @@
margin-bottom
:
20px
;
position
:
relative
;
}
.el-select-dropdown
{
z-index
:
9999
!
important
;
.el-select-dropdown
{
z-index
:
9999
!
important
;
}
</
style
>
<
template
>
...
...
@@ -115,8 +116,8 @@
</q-input>
</div>
<div
class=
"col-6"
>
<q-select
filled
stack-label
option-value=
"Id"
option-label=
"Name"
v-model=
"objOption.TaskFinishType"
:options=
"finishTypeObj"
label=
"请选择"
dense
emit-value
map-options
/>
<q-select
filled
stack-label
option-value=
"Id"
option-label=
"Name"
v-model=
"objOption.TaskFinishType"
:options=
"finishTypeObj"
label=
"请选择"
dense
emit-value
map-options
/>
</div>
</div>
<div
class=
"row wrap"
style=
"margin-top:20px;"
>
...
...
@@ -149,21 +150,27 @@
emit-value
map-options
/>
</div>
<div
class=
"col-5 q-pr-lg"
>
<el-select
v-if=
"sItem.TaskType==2"
style=
"width:100%;"
v-model=
"sItem.TargetIdList"
multiple
collapse-tags
placeholder=
"请选择"
>
<el-option
v-for=
"mItem in CourseSubjectList"
:key=
"mItem.Id"
:label=
"mItem.SubjectName"
:value=
"mItem.Id"
>
<el-select
v-if=
"sItem.TaskType==2"
style=
"width:100%;"
v-model=
"sItem.TargetIdList"
multiple
collapse-tags
placeholder=
"请选择"
>
<el-option
v-for=
"mItem in CourseSubjectList"
:key=
"mItem.Id"
:label=
"mItem.SubjectName"
:value=
"mItem.Id"
>
</el-option>
</el-select>
<el-select
v-if=
"sItem.TaskType==3"
style=
"width:100%;"
v-model=
"sItem.TargetIdList"
multiple
collapse-tags
placeholder=
"请选择"
>
<el-option
v-for=
"mItem in TreeCategoryList"
:key=
"mItem.CateId"
:label=
"mItem.CateName"
:value=
"mItem.CateId"
>
<el-select
v-if=
"sItem.TaskType==3"
style=
"width:100%;"
v-model=
"sItem.TargetIdList"
multiple
collapse-tags
placeholder=
"请选择"
>
<el-option
v-for=
"mItem in TreeCategoryList"
:key=
"mItem.CateId"
:label=
"mItem.CateName"
:value=
"mItem.CateId"
>
</el-option>
</el-select>
<el-select
v-if=
"sItem.TaskType==4"
style=
"width:100%;"
v-model=
"sItem.TargetIdList"
multiple
collapse-tags
placeholder=
"请选择"
>
<el-option
v-for=
"mItem in CourseList"
:key=
"mItem.CourseId"
:label=
"mItem.CourseName"
:value=
"mItem.CourseId"
>
<el-select
v-if=
"sItem.TaskType==4"
style=
"width:100%;"
v-model=
"sItem.TargetIdList"
multiple
collapse-tags
placeholder=
"请选择"
>
<el-option
v-for=
"mItem in CourseList"
:key=
"mItem.CourseId"
:label=
"mItem.CourseName"
:value=
"mItem.CourseId"
>
</el-option>
</el-select>
</div>
<div
class=
"col-2 q-pr-lg"
style=
"width:19%"
>
</div>
<div
class=
"col-2"
style=
"width:14%"
>
<q-input
filled
stack-label
maxlength=
"20"
@
keyup
.
native=
"checkInteger(sItem,'TaskFinishValue')"
dense
...
...
@@ -251,7 +258,7 @@
TaskEndTime
:
""
,
//任务结束时间
DetailsList
:
[],
//任务详情
ExchangeEndTime
:
""
,
//兑换截止时间
TaskFinishType
:
1
,
//任务完成类
TaskFinishType
:
1
,
//任务完成类
},
optionTitle
:
''
,
CourseList
:
[],
...
...
@@ -296,7 +303,7 @@
this
.
objOption
.
TaskImageList
=
tempData
.
TaskImageList
;
this
.
objOption
.
TaskDesc
=
tempData
.
TaskDesc
;
this
.
objOption
.
ExchangeEndTime
=
tempData
.
ExchangeEndTimeStr
;
this
.
objOption
.
TaskFinishType
=
tempData
.
TaskFinishType
;
this
.
objOption
.
TaskFinishType
=
tempData
.
TaskFinishType
;
}
})
this
.
optionTitle
=
"修改客户任务"
...
...
@@ -310,7 +317,7 @@
this
.
objOption
.
TaskEndTime
=
''
;
this
.
objOption
.
DetailsList
=
[];
this
.
objOption
.
ExchangeEndTime
=
""
;
this
.
objOption
.
TaskFinishType
=
0
;
this
.
objOption
.
TaskFinishType
=
0
;
this
.
optionTitle
=
"新增客户任务"
}
},
...
...
@@ -435,5 +442,4 @@
}
},
}
</
script
>
</
script
>
\ No newline at end of file
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