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
0aea5ae9
Commit
0aea5ae9
authored
Oct 23, 2020
by
吴冠
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
message
parent
3402c99d
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
81 additions
and
18 deletions
+81
-18
abortive.vue
pages/index/notice/abortive.vue
+9
-1
all.vue
pages/index/notice/all.vue
+9
-1
bid.vue
pages/index/notice/bid.vue
+9
-1
biding.vue
pages/index/notice/biding.vue
+9
-1
cadidate.vue
pages/index/notice/cadidate.vue
+9
-1
change.vue
pages/index/notice/change.vue
+9
-1
clarifies.vue
pages/index/notice/clarifies.vue
+9
-1
inquiry.vue
pages/index/notice/inquiry.vue
+9
-1
user.vue
pages/login/user.vue
+9
-10
No files found.
pages/index/notice/abortive.vue
View file @
0aea5ae9
...
@@ -142,9 +142,17 @@ import Cookies from 'js-cookie'
...
@@ -142,9 +142,17 @@ import Cookies from 'js-cookie'
methods
:
{
methods
:
{
async
queryStr
()
{
async
queryStr
()
{
console
.
log
(
this
.
getData
);
console
.
log
(
this
.
getData
);
const
{
data
,
total
}
=
await
getErrorList
(
this
.
getData
);
const
{
data
,
total
,
code
}
=
await
getErrorList
(
this
.
getData
);
this
.
priceList
=
data
;
this
.
priceList
=
data
;
this
.
total
=
total
this
.
total
=
total
if
(
code
==
200
){
if
(
total
==
0
){
this
.
$message
.
error
(
"当前查询无内容!"
)
this
.
reset
()
}
else
{
this
.
$message
.
success
(
"查询成功!"
)
}
}
},
},
reset
(){
reset
(){
this
.
getData
.
industryId
=
''
this
.
getData
.
industryId
=
''
...
...
pages/index/notice/all.vue
View file @
0aea5ae9
...
@@ -216,9 +216,17 @@ import Cookies from 'js-cookie'
...
@@ -216,9 +216,17 @@ import Cookies from 'js-cookie'
},
},
async
queryStr
()
{
async
queryStr
()
{
console
.
log
(
this
.
getData
);
console
.
log
(
this
.
getData
);
const
{
data
,
total
}
=
await
getAllList
(
this
.
getData
);
const
{
data
,
total
,
code
}
=
await
getAllList
(
this
.
getData
);
this
.
priceList
=
data
;
this
.
priceList
=
data
;
this
.
total
=
total
this
.
total
=
total
if
(
code
==
200
){
if
(
total
==
0
){
this
.
$message
.
error
(
"当前查询无内容!"
)
this
.
reset
()
}
else
{
this
.
$message
.
success
(
"查询成功!"
)
}
}
},
},
reset
(){
reset
(){
this
.
getData
.
industryId
=
''
this
.
getData
.
industryId
=
''
...
...
pages/index/notice/bid.vue
View file @
0aea5ae9
...
@@ -175,9 +175,17 @@ import Cookies from 'js-cookie'
...
@@ -175,9 +175,17 @@ import Cookies from 'js-cookie'
},
},
async
queryStr
(){
async
queryStr
(){
console
.
log
(
this
.
getData
)
console
.
log
(
this
.
getData
)
const
{
data
,
total
}
=
await
getBidingList
(
this
.
getData
)
const
{
data
,
total
,
code
}
=
await
getBidingList
(
this
.
getData
)
this
.
priceList
=
data
this
.
priceList
=
data
this
.
total
=
total
this
.
total
=
total
if
(
code
==
200
){
if
(
total
==
0
){
this
.
$message
.
error
(
"当前查询无内容!"
)
this
.
reset
()
}
else
{
this
.
$message
.
success
(
"查询成功!"
)
}
}
},
},
receiveP
(
value
){
receiveP
(
value
){
this
.
getData
.
provinceId
=
value
this
.
getData
.
provinceId
=
value
...
...
pages/index/notice/biding.vue
View file @
0aea5ae9
...
@@ -229,9 +229,17 @@ export default {
...
@@ -229,9 +229,17 @@ export default {
//查询按钮getLi
//查询按钮getLi
async
queryStr
()
{
async
queryStr
()
{
console
.
log
(
this
.
getData
);
console
.
log
(
this
.
getData
);
const
{
data
,
total
}
=
await
getWinList
(
this
.
getData
);
const
{
data
,
total
,
code
}
=
await
getWinList
(
this
.
getData
);
this
.
priceList
=
data
;
this
.
priceList
=
data
;
this
.
total
=
total
this
.
total
=
total
if
(
code
==
200
){
if
(
total
==
0
){
this
.
$message
.
error
(
"当前查询无内容!"
)
this
.
reset
()
}
else
{
this
.
$message
.
success
(
"查询成功!"
)
}
}
},
},
async
industryList
()
{
async
industryList
()
{
const
res
=
await
industryList
();
const
res
=
await
industryList
();
...
...
pages/index/notice/cadidate.vue
View file @
0aea5ae9
...
@@ -144,9 +144,17 @@ import Cookies from 'js-cookie'
...
@@ -144,9 +144,17 @@ import Cookies from 'js-cookie'
methods
:
{
methods
:
{
async
queryStr
()
{
async
queryStr
()
{
console
.
log
(
this
.
getData
);
console
.
log
(
this
.
getData
);
const
{
data
,
total
}
=
await
getCadidateList
(
this
.
getData
);
const
{
data
,
total
,
code
}
=
await
getCadidateList
(
this
.
getData
);
this
.
priceList
=
data
;
this
.
priceList
=
data
;
this
.
total
=
total
this
.
total
=
total
if
(
code
==
200
){
if
(
total
==
0
){
this
.
$message
.
error
(
"当前查询无内容!"
)
this
.
reset
()
}
else
{
this
.
$message
.
success
(
"查询成功!"
)
}
}
},
},
reset
(){
reset
(){
this
.
getData
.
industryId
=
''
this
.
getData
.
industryId
=
''
...
...
pages/index/notice/change.vue
View file @
0aea5ae9
...
@@ -144,9 +144,17 @@ import Cookies from 'js-cookie'
...
@@ -144,9 +144,17 @@ import Cookies from 'js-cookie'
methods
:
{
methods
:
{
async
queryStr
()
{
async
queryStr
()
{
console
.
log
(
this
.
getData
);
console
.
log
(
this
.
getData
);
const
{
data
,
total
}
=
await
getChangeList
(
this
.
getData
);
const
{
data
,
total
,
code
}
=
await
getChangeList
(
this
.
getData
);
this
.
priceList
=
data
;
this
.
priceList
=
data
;
this
.
total
=
total
this
.
total
=
total
if
(
code
==
200
){
if
(
total
==
0
){
this
.
$message
.
error
(
"当前查询无内容!"
)
this
.
reset
()
}
else
{
this
.
$message
.
success
(
"查询成功!"
)
}
}
},
},
reset
(){
reset
(){
this
.
getData
.
industryId
=
''
this
.
getData
.
industryId
=
''
...
...
pages/index/notice/clarifies.vue
View file @
0aea5ae9
...
@@ -142,9 +142,17 @@ import Cookies from 'js-cookie'
...
@@ -142,9 +142,17 @@ import Cookies from 'js-cookie'
methods
:
{
methods
:
{
async
queryStr
()
{
async
queryStr
()
{
console
.
log
(
this
.
getData
);
console
.
log
(
this
.
getData
);
const
{
data
,
total
}
=
await
getClerList
(
this
.
getData
);
const
{
data
,
total
,
code
}
=
await
getClerList
(
this
.
getData
);
this
.
priceList
=
data
;
this
.
priceList
=
data
;
this
.
total
=
total
this
.
total
=
total
if
(
code
==
200
){
if
(
total
==
0
){
this
.
$message
.
error
(
"当前查询无内容!"
)
this
.
reset
()
}
else
{
this
.
$message
.
success
(
"查询成功!"
)
}
}
},
},
reset
(){
reset
(){
this
.
getData
.
industryId
=
''
this
.
getData
.
industryId
=
''
...
...
pages/index/notice/inquiry.vue
View file @
0aea5ae9
...
@@ -213,9 +213,17 @@ export default {
...
@@ -213,9 +213,17 @@ export default {
//查询按钮getLi
//查询按钮getLi
async
queryStr
()
{
async
queryStr
()
{
console
.
log
(
this
.
getData
);
console
.
log
(
this
.
getData
);
const
{
data
,
total
}
=
await
getInquiryList
(
this
.
getData
);
const
{
data
,
total
,
code
}
=
await
getInquiryList
(
this
.
getData
);
this
.
priceList
=
data
;
this
.
priceList
=
data
;
this
.
total
=
total
this
.
total
=
total
if
(
code
==
200
){
if
(
total
==
0
){
this
.
$message
.
error
(
"当前查询无内容!"
)
this
.
reset
()
}
else
{
this
.
$message
.
success
(
"查询成功!"
)
}
}
},
},
async
industryList
()
{
async
industryList
()
{
const
res
=
await
industryList
();
const
res
=
await
industryList
();
...
...
pages/login/user.vue
View file @
0aea5ae9
...
@@ -157,14 +157,16 @@
...
@@ -157,14 +157,16 @@
setTimeout
(()
=>
{
setTimeout
(()
=>
{
this
.
$router
.
push
(
"/"
)
this
.
$router
.
push
(
"/"
)
},
1500
)
},
1500
)
/* this.$message.success(msg) */
}
else
{
}
else
{
this
.
$message
({
/*
this.$message({
message: msg,
message: msg,
type: 'error'
type: 'error'
});
}); */
this
.
$message
.
error
(
msg
)
}
}
//储存公司id 审核未通过时自动填充数据
//储存公司id 审核未通过时自动填充数据
if
(
code
!=
=
200
){
if
(
code
!=
200
){
this
.
$router
.
push
(
"/login/auditStatus"
)
this
.
$router
.
push
(
"/login/auditStatus"
)
Cookies
.
set
(
"companyErrorId"
,
data
.
companyId
)
Cookies
.
set
(
"companyErrorId"
,
data
.
companyId
)
}
}
...
@@ -190,19 +192,16 @@
...
@@ -190,19 +192,16 @@
console
.
log
(
data
,
code
)
console
.
log
(
data
,
code
)
if
(
code
==
200
)
{
if
(
code
==
200
)
{
Cookies
.
set
(
"token"
,
data
);
Cookies
.
set
(
"token"
,
data
);
this
.
$message
({
this
.
$message
.
success
(
msg
)
message
:
msg
,
type
:
'success'
,
duration
:
1500
});
setTimeout
(()
=>
{
setTimeout
(()
=>
{
this
.
$router
.
push
(
"/"
)
this
.
$router
.
push
(
"/"
)
},
1500
)
},
1500
)
}
else
{
}
else
{
this
.
$message
({
/*
this.$message({
message: msg,
message: msg,
type: 'error'
type: 'error'
});
}); */
this
.
$message
.
error
(
msg
)
}
}
}
}
}
catch
(
err
)
{
}
catch
(
err
)
{
...
...
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