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

更新

parent fdfbd2b6
......@@ -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>
<!-- 在线对话 -->
......
......@@ -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)
......
......@@ -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="ruleForm1" :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="ruleForm2" :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 {
......
<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">
......
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