Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
W
web-purchase
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-purchase
Commits
c3fcf32f
Commit
c3fcf32f
authored
Oct 26, 2020
by
张冬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
项目信息编辑
parent
68675847
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
17 additions
and
16 deletions
+17
-16
citySelect.vue
src/components/citySelect/citySelect.vue
+3
-12
bondList.vue
src/pages/purchaser/bid/bidStage/bondList/bondList.vue
+2
-1
detail.vue
src/pages/purchaser/bid/bidStage/bondList/detail.vue
+4
-0
detail.vue
src/pages/purchaser/bid/bidStage/tenderFeelist/detail.vue
+4
-0
tenderFeelist.vue
...es/purchaser/bid/bidStage/tenderFeelist/tenderFeelist.vue
+2
-1
common.js
src/utils/common.js
+2
-2
No files found.
src/components/citySelect/citySelect.vue
View file @
c3fcf32f
...
...
@@ -17,18 +17,9 @@ import { cityList } from '@/api/common/list';
// import arrAll from './area.js'
export
default
{
props
:
{
provinceId
:
{
type
:
String
,
default
:
''
},
cityId
:
{
type
:
String
,
default
:
''
},
districtId
:
{
type
:
String
,
default
:
''
}
provinceId
:
[
"Number"
,
"String"
],
cityId
:
[
"Number"
,
"String"
],
districtId
:
[
"Number"
,
"String"
]
},
data
()
{
return
{
...
...
src/pages/purchaser/bid/bidStage/bondList/bondList.vue
View file @
c3fcf32f
...
...
@@ -73,7 +73,8 @@
query
:
{
type
:
"examine"
,
feeId
:
row
.
feeId
,
state
:
row
.
feeStatus
state
:
row
.
feeStatus
,
companyId
:
row
.
companyId
}
})
},
...
...
src/pages/purchaser/bid/bidStage/bondList/detail.vue
View file @
c3fcf32f
...
...
@@ -123,6 +123,7 @@ export default {
},
data
()
{
return
{
companyId
:
""
,
dialogFormVisible
:
false
,
state
:
''
,
breads
:
[
'招标管理'
,
'招标项目管理'
,
'工作台'
],
...
...
@@ -168,6 +169,7 @@ export default {
form
.
aduit
=
2
;
form
.
id
=
this
.
feeId
;
form
.
projectId
=
localStorage
.
getItem
(
"projectId"
)
form
.
companyId
=
this
.
companyId
const
{
code
,
msg
}
=
await
aduit
(
form
);
if
(
code
===
200
)
{
this
.
$message
({
...
...
@@ -193,6 +195,7 @@ export default {
form
.
aduit
=
1
;
form
.
id
=
this
.
feeId
;
form
.
projectId
=
localStorage
.
getItem
(
"projectId"
)
form
.
companyId
=
this
.
companyId
const
{
code
,
msg
}
=
await
aduit
(
form
);
if
(
code
===
200
)
{
this
.
$message
({
...
...
@@ -220,6 +223,7 @@ export default {
this
.
title
=
'查看'
;
}
let
feeId
=
this
.
$route
.
query
.
feeId
;
this
.
companyId
=
this
.
$route
.
query
.
companyId
;
this
.
feeId
=
feeId
;
this
.
getearnestDetail
();
}
...
...
src/pages/purchaser/bid/bidStage/tenderFeelist/detail.vue
View file @
c3fcf32f
...
...
@@ -155,6 +155,7 @@ export default {
},
data
()
{
return
{
companyId
:
""
,
state
:
''
,
dialogFormVisible
:
false
,
breads
:
[
'招标管理'
,
'招标项目管理'
,
'工作台'
],
...
...
@@ -199,6 +200,7 @@ export default {
form
.
aduit
=
2
;
form
.
id
=
this
.
feeId
;
form
.
projectId
=
localStorage
.
getItem
(
"projectId"
)
form
.
companyId
=
this
.
companyId
const
{
code
,
msg
}
=
await
operationAduit
(
form
);
if
(
code
===
200
)
{
this
.
$message
({
...
...
@@ -224,6 +226,7 @@ export default {
form
.
aduit
=
1
;
form
.
id
=
this
.
feeId
;
form
.
projectId
=
localStorage
.
getItem
(
"projectId"
)
form
.
companyId
=
this
.
companyId
const
{
code
,
msg
}
=
await
operationAduit
(
form
);
if
(
code
===
200
)
{
this
.
$message
({
...
...
@@ -252,6 +255,7 @@ export default {
}
let
feeId
=
this
.
$route
.
query
.
feeId
;
this
.
feeId
=
feeId
;
this
.
companyId
=
this
.
$route
.
query
.
companyId
;
this
.
getBidbookDetail
();
}
};
...
...
src/pages/purchaser/bid/bidStage/tenderFeelist/tenderFeelist.vue
View file @
c3fcf32f
...
...
@@ -69,7 +69,8 @@
query
:
{
type
:
"examine"
,
feeId
:
row
.
feeId
,
state
:
row
.
condition
state
:
row
.
condition
,
companyId
:
row
.
companyId
}
})
},
...
...
src/utils/common.js
View file @
c3fcf32f
...
...
@@ -18,8 +18,8 @@ export function getSearchString(key) {
export
function
down
(
url
)
{
window
.
open
(
url
)
}
//
export let requestUrl = 'http://192.168.3.35:8085';
export
let
requestUrl
=
'http://60.205.251.80:8082'
;
export
let
requestUrl
=
'http://192.168.3.35:8085'
;
//
export let requestUrl = 'http://60.205.251.80:8082';
// export let homeUrl = 'http://localhost:3000';
export
let
homeUrl
=
'http://60.205.251.80:8081'
;
...
...
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