Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-3
Overview
Overview
Details
Activity
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
office
haoban-3
Commits
20600582
Commit
20600582
authored
Mar 22, 2022
by
crushh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: 时间限制
parent
839110c4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
6 deletions
+23
-6
taskView.vue
src/components/app/taskView.vue
+8
-2
taskRecord.vue
src/views/salesleads/trafficTask/taskRecord.vue
+8
-2
taskViewDetail.vue
src/views/salesleads/trafficTask/taskViewDetail.vue
+7
-2
No files found.
src/components/app/taskView.vue
View file @
20600582
...
...
@@ -28,7 +28,7 @@
<div
class=
"table-condition-left flex flex-align-center"
>
<el-input
placeholder=
"请输入话务任务名称"
maxlength=
"50"
v-model=
"conditionObj.searchInput"
class=
"w-264"
style=
"width: 264px;"
@
keyup
.
native
.
enter=
"toInput"
>
<i
slot=
"prefix"
class=
"el-input__icon el-icon-search"
></i>
</el-input>
<!--
<span
class=
"condition-tips font-12 color-909399 p-l-10"
>
仅包含话务任务记录
</span>
-->
<span
style=
"font-size:14px;"
class=
"m-l-10"
>
创建时间:
</span><el-date-picker
class=
"m-l-10"
v-model=
"conditionObj.dateRange"
@
change=
"changeDate"
:editable=
"false"
:value-format=
"'yyyy-MM-dd'"
type=
"daterange"
align=
"right"
unlink-panels
range-separator=
"至"
start-placeholder=
"开始日期"
end-placeholder=
"结束日期"
>
</el-date-picker>
<span
style=
"font-size:14px;"
class=
"m-l-10"
>
创建时间:
</span><el-date-picker
class=
"m-l-10"
v-model=
"conditionObj.dateRange"
:picker-options=
"pickerOptions"
@
change=
"changeDate"
:editable=
"false"
:value-format=
"'yyyy-MM-dd'"
type=
"daterange"
align=
"right"
unlink-panels
range-separator=
"至"
start-placeholder=
"开始日期"
end-placeholder=
"结束日期"
>
</el-date-picker>
</div>
<div
class=
"table-condition-right"
>
<el-button
type=
"danger"
@
click=
"multDel"
>
批量删除
</el-button>
...
...
@@ -130,7 +130,13 @@ export default {
pageSize
:
20
,
total
:
0
,
loadingBtn
:
false
,
tableRefresh
:
false
tableRefresh
:
false
,
pickerOptions
:
{
disabledDate
:
time
=>
{
const
end
=
new
Date
();
return
time
.
getTime
()
<
end
.
getTime
()
-
3600
*
1000
*
24
*
365
||
time
.
getTime
()
>
end
.
getTime
()
-
3600
*
1000
*
24
;
}
}
};
},
computed
:
{},
...
...
src/views/salesleads/trafficTask/taskRecord.vue
View file @
20600582
...
...
@@ -25,7 +25,7 @@
<el-input
placeholder=
"请输入门店名称"
maxlength=
"50"
v-model=
"conditionObj.searchInput"
class=
"w-264"
style=
"width: 264px;"
@
keyup
.
native=
"value => toInput(value, conditionObj.searchInput)"
>
<i
slot=
"prefix"
class=
"el-input__icon el-icon-search"
></i>
</el-input>
<gic-select-group
:brandId=
"brandId"
class=
"m-l-10"
style=
"min-width: 213px !important;"
:width=
"213"
:selectData=
"conditionObj.storeGroup"
@
checkGroupIds=
"checkGroupIds"
>
</gic-select-group>
<span
style=
"font-size:14px;"
class=
"m-l-10"
>
任务创建时间:
</span>
<el-date-picker
v-model=
"conditionObj.dateRange"
@
change=
"changeDate"
:editable=
"false"
:value-format=
"'yyyy-MM-dd'"
type=
"daterange"
align=
"right"
unlink-panels
range-separator=
"至"
start-placeholder=
"开始日期"
end-placeholder=
"结束日期"
>
</el-date-picker>
<el-date-picker
v-model=
"conditionObj.dateRange"
@
change=
"changeDate"
:
picker-options=
"pickerOptions"
:
editable=
"false"
:value-format=
"'yyyy-MM-dd'"
type=
"daterange"
align=
"right"
unlink-panels
range-separator=
"至"
start-placeholder=
"开始日期"
end-placeholder=
"结束日期"
>
</el-date-picker>
</div>
<div
class=
"table-condition-right"
>
<el-button
type=
"danger"
@
click=
"multDel"
>
批量删除
</el-button>
...
...
@@ -132,7 +132,13 @@ export default {
pageSize
:
20
,
total
:
0
,
loadingBtn
:
false
,
tableRefresh
:
false
tableRefresh
:
false
,
pickerOptions
:
{
disabledDate
:
time
=>
{
const
end
=
new
Date
();
return
time
.
getTime
()
<
end
.
getTime
()
-
3600
*
1000
*
24
*
365
||
time
.
getTime
()
>
end
.
getTime
()
-
3600
*
1000
*
24
;
}
}
}
;
}
,
computed
:
{
}
,
...
...
src/views/salesleads/trafficTask/taskViewDetail.vue
View file @
20600582
...
...
@@ -17,7 +17,7 @@ import taskViewDetail from '@/components/app/taskViewDetail.vue';
<div
class=
"table-condition-left"
>
<el-input
placeholder=
"请输入门店名称"
maxlength=
"50"
v-model=
"conditionObj.searchInput"
class=
"w-264"
style=
"width: 264px;"
@
keyup
.
native=
"value => toInput(value, conditionObj.searchInput)"
>
<i
slot=
"prefix"
class=
"el-input__icon el-icon-search"
></i>
</el-input>
<gic-select-group
:brandId=
"brandId"
class=
"m-l-10"
:width=
"213"
:selectData=
"conditionObj.storeGroup"
@
checkGroupIds=
"checkGroupIds"
>
</gic-select-group>
<el-date-picker
class=
"m-l-10"
v-model=
"conditionObj.dateRange"
@
change=
"changeDate"
:editable=
"false"
:value-format=
"'yyyy-MM-dd'"
type=
"daterange"
align=
"right"
unlink-panels
range-separator=
"至"
start-placeholder=
"开始日期"
end-placeholder=
"结束日期"
>
</el-date-picker>
<el-date-picker
class=
"m-l-10"
:picker-options=
"pickerOptions"
v-model=
"conditionObj.dateRange"
@
change=
"changeDate"
:editable=
"false"
:value-format=
"'yyyy-MM-dd'"
type=
"daterange"
align=
"right"
unlink-panels
range-separator=
"至"
start-placeholder=
"开始日期"
end-placeholder=
"结束日期"
>
</el-date-picker>
</div>
<div
class=
"table-condition-right"
>
<el-button
type=
"danger"
@
click=
"multDel"
>
批量删除
</el-button>
...
...
@@ -115,7 +115,12 @@ export default {
activeTab
:
'1'
,
activeBrand
:
this
.
brandId
,
// 商户(品牌) id
activeGroup
:
this
.
activeGroupId
,
// 商户(品牌) groupId
pickerOptions
:
{
disabledDate
:
time
=>
{
const
end
=
new
Date
();
return
time
.
getTime
()
<
end
.
getTime
()
-
3600
*
1000
*
24
*
365
||
time
.
getTime
()
>
end
.
getTime
()
-
3600
*
1000
*
24
;
}
},
activeId
:
'2'
,
showDialog
:
false
,
// 条件
...
...
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