Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
W
web-site
Project
Project
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
张冬
web-site
Commits
7184ee5a
Commit
7184ee5a
authored
Oct 08, 2020
by
吴冠
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
查询时间区域重置优化
parent
ee24ec66
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
17 additions
and
16 deletions
+17
-16
common.css
assets/css/common.css
+0
-7
index.vue
pages/index/index.vue
+1
-1
abortive.vue
pages/index/notice/abortive.vue
+1
-0
all.vue
pages/index/notice/all.vue
+1
-0
bid.vue
pages/index/notice/bid.vue
+1
-0
biding.vue
pages/index/notice/biding.vue
+4
-3
cadidate.vue
pages/index/notice/cadidate.vue
+1
-0
change.vue
pages/index/notice/change.vue
+1
-0
clarifies.vue
pages/index/notice/clarifies.vue
+1
-0
inquiry.vue
pages/index/notice/inquiry.vue
+4
-3
request.js
utils/request.js
+2
-2
No files found.
assets/css/common.css
View file @
7184ee5a
...
...
@@ -75,9 +75,3 @@ fieldset, img { border: 0; }
color
:
rgba
(
0
,
0
,
0
,
1
);
font-weight
:
bold
;
}
\ No newline at end of file
.page-enter-active
,
.page-leave-active
{
transition
:
opacity
0.5s
;
}
.page-enter
,
.page-leave-active
{
opacity
:
0
;
}
\ No newline at end of file
pages/index/index.vue
View file @
7184ee5a
...
...
@@ -15,7 +15,7 @@
<img
src=
"~/assets/css/7.png"
v-show=
"!showDefault"
>
</div>
<div
class=
"login-title"
>
{{
userName
}}
</div>
<div
class=
"login-button"
@
click=
"loginuser"
v-show=
"showDefault"
>
用户登录
?
</div>
<div
class=
"login-button"
@
click=
"loginuser"
v-show=
"showDefault"
>
用户登录
</div>
<div
class=
"login-button"
@
click=
"Merchant"
>
商家入驻
</div>
<div
class=
"login-button"
@
click=
"checkout"
v-show=
"!showDefault"
>
退出
</div>
</div>
...
...
pages/index/notice/abortive.vue
View file @
7184ee5a
...
...
@@ -118,6 +118,7 @@ import {getErrorList} from '@/common/list.js'
this
.
interTimerPicker
=
''
this
.
$refs
.
mychild
.
clear
()
this
.
getData
.
title
=
''
this
.
getErrorList
(
this
.
getData
)
},
changeTime
(
e
){
this
.
getData
.
beginDate
=
e
[
0
].
getTime
()
...
...
pages/index/notice/all.vue
View file @
7184ee5a
...
...
@@ -121,6 +121,7 @@ import {getAllList,getNoticeType} from '@/common/list.js'
this
.
interTimerPicker
=
''
this
.
$refs
.
mychild
.
clear
()
this
.
getData
.
title
=
''
this
.
getAllList
(
this
.
getData
)
},
changeTime
(
e
){
this
.
getData
.
beginDate
=
e
[
0
].
getTime
()
...
...
pages/index/notice/bid.vue
View file @
7184ee5a
...
...
@@ -141,6 +141,7 @@ import citySelect from "@/components/citySelect.vue";
this
.
interTimerPicker
=
''
this
.
$refs
.
mychild
.
clear
()
this
.
getData
.
title
=
''
this
.
getBidingList
(
this
.
getData
)
},
async
queryStr
(){
console
.
log
(
this
.
getData
)
...
...
pages/index/notice/biding.vue
View file @
7184ee5a
...
...
@@ -101,9 +101,9 @@ export default {
beginDate
:
""
,
endDate
:
""
,
title
:
""
,
provinceId
:
"
1
"
,
cityId
:
"
1
"
,
districtId
:
"
1
"
,
provinceId
:
""
,
cityId
:
""
,
districtId
:
""
,
size
:
10
,
currentPage
:
1
,
},
...
...
@@ -193,6 +193,7 @@ export default {
this
.
interTimerPicker
=
''
this
.
$refs
.
mychild
.
clear
()
this
.
getData
.
title
=
''
this
.
getWinList
(
this
.
getData
)
},
//查询按钮getLi
async
queryStr
()
{
...
...
pages/index/notice/cadidate.vue
View file @
7184ee5a
...
...
@@ -120,6 +120,7 @@ import {getCadidateList} from '@/common/list.js'
this
.
interTimerPicker
=
''
this
.
$refs
.
mychild
.
clear
()
this
.
getData
.
title
=
''
this
.
getCadidateList
(
this
.
getData
)
},
changeTime
(
e
){
this
.
getData
.
beginDate
=
e
[
0
].
getTime
()
...
...
pages/index/notice/change.vue
View file @
7184ee5a
...
...
@@ -120,6 +120,7 @@ import {getChangeList} from '@/common/list.js'
this
.
interTimerPicker
=
''
this
.
$refs
.
mychild
.
clear
()
this
.
getData
.
title
=
''
this
.
getChangeList
(
this
.
getData
)
},
changeTime
(
e
){
this
.
getData
.
beginDate
=
e
[
0
].
getTime
()
...
...
pages/index/notice/clarifies.vue
View file @
7184ee5a
...
...
@@ -118,6 +118,7 @@ import {getClerList} from '@/common/list.js'
this
.
interTimerPicker
=
''
this
.
$refs
.
mychild
.
clear
()
this
.
getData
.
title
=
''
this
.
getClerList
(
this
.
getData
)
},
changeTime
(
e
){
this
.
getData
.
beginDate
=
e
[
0
].
getTime
()
...
...
pages/index/notice/inquiry.vue
View file @
7184ee5a
...
...
@@ -157,9 +157,9 @@ export default {
beginDate
:
""
,
endDate
:
""
,
title
:
""
,
provinceId
:
"
1
"
,
cityId
:
"
1
"
,
districtId
:
"
1
"
,
provinceId
:
""
,
cityId
:
""
,
districtId
:
""
,
size
:
10
,
currentPage
:
1
,
},
...
...
@@ -223,6 +223,7 @@ export default {
this
.
interTimerPicker
=
''
this
.
$refs
.
mychild
.
clear
()
this
.
getData
.
title
=
''
this
.
getInquiryList
(
this
.
getData
)
},
async
getInquiryList
(
params
)
{
const
{
data
,
total
}
=
await
getInquiryList
(
params
);
...
...
utils/request.js
View file @
7184ee5a
...
...
@@ -7,8 +7,8 @@ import requestUrl from '../utils/Domain.js'
// 创建axios实例
const
service
=
axios
.
create
({
/* baseURL: */
/* 'http://60.205.251.80:8082/apis', */
// api的base_url
baseURL
:
'http://192.168.3.35:8085/apis'
,
baseURL
:
'http://60.205.251.80:8082/apis'
,
/* baseURL: 'http://192.168.3.35:8085/apis' */
timeout
:
35000
// 请求超时时间
})
...
...
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