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
4ce57196
Commit
4ce57196
authored
Jan 17, 2022
by
crushh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: 去除任务视图详情逾期下拉
parent
6a764aa5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
39 deletions
+4
-39
index.js
config/index.js
+1
-1
api.js
src/api/api.js
+2
-1
taskViewDetail.vue
src/views/salesleads/trafficTask/taskViewDetail.vue
+1
-37
No files found.
config/index.js
View file @
4ce57196
...
...
@@ -18,7 +18,7 @@ module.exports = {
// Paths
assetsSubDirectory
:
'static'
,
assetsPublicPath
:
'/haoban-3/'
,
//
proxyTable: proxyConfig.proxyList,
proxyTable
:
proxyConfig
.
proxyList
,
// Various Dev Server settings
// host: '0.0.0.0', // can be overwritten by process.env.HOST
...
...
src/api/api.js
View file @
4ce57196
...
...
@@ -23,9 +23,10 @@ import { Message } from 'element-ui';
Vue
.
axios
.
defaults
.
timeout
=
500000
;
// let local = window.location.origin;
// eslint-disable-next-line
let
local
=
process
.
env
.
NODE_ENV
==
'development'
?
'http
s://www.gicdev.com/
'
:
''
;
let
local
=
process
.
env
.
NODE_ENV
==
'development'
?
'http
://localhost:8006
'
:
''
;
/* if (local.indexOf('localhost') != -1) {
local = 'https://www.gicdev.com';
http://localhost:8006
} */
let
axiosPromiseArr
=
[];
//储存cancel toke
let
pending
=
[];
//声明一个数组用于存储每个ajax请求的取消函数和ajax标识
...
...
src/views/salesleads/trafficTask/taskViewDetail.vue
View file @
4ce57196
...
...
@@ -17,9 +17,6 @@ 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-select
v-model=
"conditionObj.isOverTime"
placeholder=
"请选择"
class=
"w-135 m-l-10"
@
change=
"changeSelect"
>
<el-option
v-for=
"item in overOptions"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
>
</el-option>
</el-select>
<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>
</div>
<div
class=
"table-condition-right"
>
...
...
@@ -153,44 +150,11 @@ export default {
total
:
0
,
loadingBtn
:
false
,
tableRefresh
:
false
,
exportDialog
:
false
,
overOptions
:
[
{
label
:
'所有逾期情况'
,
value
:
''
},
{
label
:
'逾期未失效'
,
value
:
'2'
},
{
label
:
'逾期已失效'
,
value
:
'3'
},
{
label
:
'已逾期'
,
value
:
'1'
},
{
label
:
'未逾期'
,
value
:
'0'
}
]
exportDialog
:
false
};
},
computed
:
{},
methods
:
{
changeSelect
(
e
)
{
const
that
=
this
;
if
(
!
e
)
{
that
.
$store
.
dispatch
(
'changeSales'
,
[]);
}
else
{
that
.
$store
.
dispatch
(
'changeSales'
,
e
);
}
that
.
currentPage
=
1
;
that
.
getTableList
();
},
beforeExportExcel
()
{
if
(
!
this
.
multipleSelection
.
length
)
{
showMsg
.
showmsg
(
'请选择门店'
,
'warning'
);
...
...
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