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
3c207893
Commit
3c207893
authored
Oct 09, 2020
by
张冬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
更新
parent
fdfbd2b6
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
16 deletions
+16
-16
bidOpenhal.vue
src/pages/purchaser/bid/bidOpen/bidOpenhal.vue
+2
-3
message.vue
src/pages/purchaser/bid/releaseProject/message.vue
+4
-4
inquiryAnnouncement.vue
src/pages/purchaser/bid/reviewed/inquiryAnnouncement.vue
+6
-4
seePrice.vue
src/pages/supply/bid/signupOnline/seePrice.vue
+4
-5
No files found.
src/pages/purchaser/bid/bidOpen/bidOpenhal.vue
View file @
3c207893
...
...
@@ -17,7 +17,6 @@
</div>
<!--
<div
class=
"flex"
v-show=
"signatureTime"
>
-->
<div
class=
"flex"
v-show=
"openStatus==2"
>
openStatus==2
<p>
签名倒计时:
</p>
<timeDown
:remain-time=
"signatureTime"
@
countDowmEnd=
"signatureTimeEnd"
></timeDown>
</div>
...
...
@@ -43,8 +42,8 @@
<div
class=
"hal-right"
>
<el-button
@
click=
"isdialogue"
>
在线对话
<i
class=
"el-icon-chat-dot-round"
></i></el-button>
<div
class=
"button-pos"
>
<el-button
v-if=
"openStatus==1"
type=
"primary"
@
click=
"confirm"
style=
"margin-left: 10px;"
:disabled=
"openbidButton"
>
立即开标
</el-button>
<el-button
v-if=
"openStatus==2"
type=
"primary"
@
click=
"end"
style=
"margin-top: 10px;"
:disabled=
"endbidButton"
>
结束开标
</el-button>
<el-button
v-if=
"openStatus==1"
type=
"primary"
@
click=
"confirm"
style=
"margin-left: 10px;"
:disabled=
"
!
openbidButton"
>
立即开标
</el-button>
<el-button
v-if=
"openStatus==2"
type=
"primary"
@
click=
"end"
style=
"margin-top: 10px;"
:disabled=
"
!
endbidButton"
>
结束开标
</el-button>
</div>
</div>
<!-- 在线对话 -->
...
...
src/pages/purchaser/bid/releaseProject/message.vue
View file @
3c207893
...
...
@@ -512,14 +512,14 @@ export default {
},
// 到下一步
async
next
()
{
const
valid
=
await
this
.
$refs
[
'ruleForm'
].
validate
()
const
valid1
=
await
this
.
$refs
[
'bidBookInfoPO'
].
validate
()
const
valid
=
this
.
$refs
[
'ruleForm'
].
validate
()
const
valid1
=
this
.
$refs
[
'bidBookInfoPO'
].
validate
()
let
valid2
=
""
if
(
this
.
ruleForm
.
isNeedEarnest
)
{
valid2
=
await
this
.
$refs
[
'earnestInfoPO'
].
validate
()
valid2
=
this
.
$refs
[
'earnestInfoPO'
].
validate
()
console
.
log
(
valid2
)
}
const
valid3
=
await
this
.
$refs
[
'contentForm'
].
validate
()
const
valid3
=
this
.
$refs
[
'contentForm'
].
validate
()
let
isNext
=
''
if
(
this
.
ruleForm
.
isNeedEarnest
)
{
console
.
log
(
valid2
)
...
...
src/pages/purchaser/bid/reviewed/inquiryAnnouncement.vue
View file @
3c207893
...
...
@@ -73,7 +73,7 @@
<div>
项目编号:
{{
projectCode
}}
</div>
<div>
项目名称:
{{
projectName
}}
</div>
</div>
<el-form
ref=
"ruleForm"
:model=
"ruleForm"
:rules=
"rules"
label-width=
"150px"
class=
"demo-ruleForm"
>
<el-form
ref=
"ruleForm
1
"
:model=
"ruleForm"
:rules=
"rules"
label-width=
"150px"
class=
"demo-ruleForm"
>
<el-form-item
label=
"供应商规格要求"
prop=
"supplierScale"
>
<el-input
v-model
.
trim=
"ruleForm.supplierScale"
placeholder=
"请输入"
maxlength=
"30"
></el-input>
</el-form-item>
...
...
@@ -101,7 +101,7 @@
<div>
<div
class=
"describe"
>
商务要求
</div>
<div
class=
"form"
>
<el-form
ref=
"ruleForm"
:model=
"ruleForm"
:rules=
"rules"
label-width=
"100px"
class=
"demo-ruleForm"
>
<el-form
ref=
"ruleForm
2
"
:model=
"ruleForm"
:rules=
"rules"
label-width=
"100px"
class=
"demo-ruleForm"
>
<el-form-item
label=
"商务要求"
prop=
"commercialRequirements"
>
<el-input
v-model
.
trim=
"ruleForm.commercialRequirements"
:rows=
"4"
style=
"width: 60%;"
placeholder=
"请输入"
type=
"textarea"
maxlength=
"300"
></el-input>
</el-form-item>
...
...
@@ -320,9 +320,11 @@ export default {
//提交表单
async
submit
()
{
try
{
const
valid
=
await
this
.
$refs
[
'ruleForm'
].
validate
()
const
valid
=
this
.
$refs
[
'ruleForm'
].
validate
()
const
valid1
=
this
.
$refs
[
'ruleForm1'
].
validate
()
const
valid2
=
this
.
$refs
[
'ruleForm2'
].
validate
()
console
.
log
(
valid
)
if
(
valid
)
{
if
(
valid
&
valid1
&
valid2
)
{
let
ruleForm
=
this
.
ruleForm
;
ruleForm
.
projectId
=
localStorage
.
getItem
(
"projectId"
)
const
{
...
...
src/pages/supply/bid/signupOnline/seePrice.vue
View file @
3c207893
<
template
>
<div
class=
"content"
>
<breadCrumb
:breads=
"breads"
></breadCrumb>
<priceDetail></priceDetail>
<priceDetail>
<slot>
<div
class=
"notice flex"
>
<h4>
招标公告
</h4>
<p>
只有报价后才能参与投标报名
</p>
</div>
<div
class=
"Tips"
>
图使馆招标公告(2020-07-30)
</div>
<div
class=
"centerButton"
>
<el-button
type=
"primary"
@
click=
"dialogFormVisible = true"
>
我要报价
</el-button>
<el-button
type=
"primary"
@
click=
"see"
>
查看报价供应商情况
</el-button>
</div>
</slot>
</priceDetail>
<!-- 报价弹窗 -->
<el-dialog
:visible
.
sync=
"dialogFormVisible"
title=
"报价"
width=
"60%"
>
<dataTable
:table-data=
"commoditylist"
:columns=
"commoditycolumns"
>
...
...
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