Commit 3c207893 authored by 张冬's avatar 张冬

更新

parent fdfbd2b6
...@@ -17,7 +17,6 @@ ...@@ -17,7 +17,6 @@
</div> </div>
<!-- <div class="flex" v-show="signatureTime"> --> <!-- <div class="flex" v-show="signatureTime"> -->
<div class="flex" v-show="openStatus==2"> <div class="flex" v-show="openStatus==2">
openStatus==2
<p>签名倒计时:</p> <p>签名倒计时:</p>
<timeDown :remain-time="signatureTime" @countDowmEnd="signatureTimeEnd"></timeDown> <timeDown :remain-time="signatureTime" @countDowmEnd="signatureTimeEnd"></timeDown>
</div> </div>
...@@ -43,8 +42,8 @@ ...@@ -43,8 +42,8 @@
<div class="hal-right"> <div class="hal-right">
<el-button @click="isdialogue">在线对话<i class="el-icon-chat-dot-round"></i></el-button> <el-button @click="isdialogue">在线对话<i class="el-icon-chat-dot-round"></i></el-button>
<div class="button-pos"> <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==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==2" type="primary" @click="end" style="margin-top: 10px;" :disabled="!endbidButton">结束开标</el-button>
</div> </div>
</div> </div>
<!-- 在线对话 --> <!-- 在线对话 -->
......
...@@ -512,14 +512,14 @@ export default { ...@@ -512,14 +512,14 @@ export default {
}, },
// 到下一步 // 到下一步
async next() { async next() {
const valid = await this.$refs['ruleForm'].validate() const valid = this.$refs['ruleForm'].validate()
const valid1 = await this.$refs['bidBookInfoPO'].validate() const valid1 = this.$refs['bidBookInfoPO'].validate()
let valid2="" let valid2=""
if (this.ruleForm.isNeedEarnest) { if (this.ruleForm.isNeedEarnest) {
valid2 = await this.$refs['earnestInfoPO'].validate() valid2 = this.$refs['earnestInfoPO'].validate()
console.log(valid2) console.log(valid2)
} }
const valid3 = await this.$refs['contentForm'].validate() const valid3 = this.$refs['contentForm'].validate()
let isNext = '' let isNext = ''
if (this.ruleForm.isNeedEarnest) { if (this.ruleForm.isNeedEarnest) {
console.log(valid2) console.log(valid2)
......
...@@ -73,7 +73,7 @@ ...@@ -73,7 +73,7 @@
<div>项目编号:{{projectCode}}</div> <div>项目编号:{{projectCode}}</div>
<div>项目名称:{{projectName}}</div> <div>项目名称:{{projectName}}</div>
</div> </div>
<el-form ref="ruleForm" :model="ruleForm" :rules="rules" label-width="150px" class="demo-ruleForm"> <el-form ref="ruleForm1" :model="ruleForm" :rules="rules" label-width="150px" class="demo-ruleForm">
<el-form-item label="供应商规格要求" prop="supplierScale"> <el-form-item label="供应商规格要求" prop="supplierScale">
<el-input v-model.trim="ruleForm.supplierScale" placeholder="请输入" maxlength="30"></el-input> <el-input v-model.trim="ruleForm.supplierScale" placeholder="请输入" maxlength="30"></el-input>
</el-form-item> </el-form-item>
...@@ -101,7 +101,7 @@ ...@@ -101,7 +101,7 @@
<div> <div>
<div class="describe">商务要求</div> <div class="describe">商务要求</div>
<div class="form"> <div class="form">
<el-form ref="ruleForm" :model="ruleForm" :rules="rules" label-width="100px" class="demo-ruleForm"> <el-form ref="ruleForm2" :model="ruleForm" :rules="rules" label-width="100px" class="demo-ruleForm">
<el-form-item label="商务要求" prop="commercialRequirements"> <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-input v-model.trim="ruleForm.commercialRequirements" :rows="4" style="width: 60%;" placeholder="请输入" type="textarea" maxlength="300"></el-input>
</el-form-item> </el-form-item>
...@@ -320,9 +320,11 @@ export default { ...@@ -320,9 +320,11 @@ export default {
//提交表单 //提交表单
async submit() { async submit() {
try { 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) console.log(valid)
if (valid) { if (valid&valid1&valid2) {
let ruleForm=this.ruleForm; let ruleForm=this.ruleForm;
ruleForm.projectId=localStorage.getItem("projectId") ruleForm.projectId=localStorage.getItem("projectId")
const { const {
......
<template> <template>
<div class="content"> <div class="content">
<breadCrumb :breads="breads"></breadCrumb> <breadCrumb :breads="breads"></breadCrumb>
<priceDetail></priceDetail> <priceDetail>
<div class="notice flex"> <slot>
<h4>招标公告</h4> <div class="notice flex">
<p>只有报价后才能参与投标报名</p> <h4>招标公告</h4>
</div> <p>只有报价后才能参与投标报名</p>
<div class="Tips"> </div>
图使馆招标公告(2020-07-30) <div class="centerButton">
</div> <el-button type="primary" @click="dialogFormVisible = true">我要报价</el-button>
<div class="centerButton"> <el-button type="primary" @click="see">查看报价供应商情况</el-button>
<el-button type="primary" @click="dialogFormVisible = true">我要报价</el-button> </div>
<el-button type="primary" @click="see">查看报价供应商情况</el-button> </slot>
</div> </priceDetail>
<!-- 报价弹窗 --> <!-- 报价弹窗 -->
<el-dialog :visible.sync="dialogFormVisible" title="报价" width="60%"> <el-dialog :visible.sync="dialogFormVisible" title="报价" width="60%">
<dataTable :table-data="commoditylist" :columns="commoditycolumns"> <dataTable :table-data="commoditylist" :columns="commoditycolumns">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment