Commit 617bb851 authored by 吴冠's avatar 吴冠

更改

parent be03b19d
...@@ -22,7 +22,7 @@ export default { ...@@ -22,7 +22,7 @@ export default {
this.name = "招投标"; this.name = "招投标";
break; break;
case '/notice/inquiry': case '/notice/inquiry':
this.name = "询价告"; this.name = "询价告";
break; break;
case "/notice/bid": case "/notice/bid":
this.name = "招标公告"; this.name = "招标公告";
...@@ -63,7 +63,7 @@ export default { ...@@ -63,7 +63,7 @@ export default {
this.name = "招投标"; this.name = "招投标";
break; break;
case '/notice/inquiry': case '/notice/inquiry':
this.name = "询价告"; this.name = "询价公告告";
break; break;
case "/notice/bid": case "/notice/bid":
this.name = "招标公告"; this.name = "招标公告";
......
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
placeholder="请输入您要搜索的公告" placeholder="请输入您要搜索的公告"
v-model="input" v-model="input"
clearable> clearable>
<i slot="prefix" class="el-input__icon el-icon-search" @click="toSearch"></i>
</el-input> </el-input>
<el-button @click="toSearch">搜索</el-button> <el-button @click="toSearch">搜索</el-button>
</div> </div>
......
...@@ -163,13 +163,9 @@ import Cookies from 'js-cookie' ...@@ -163,13 +163,9 @@ import Cookies from 'js-cookie'
var Month = date.getMonth() + 1; var Month = date.getMonth() + 1;
var Day = date.getDate(); var Day = date.getDate();
var Y = date.getFullYear() + '-'; var Y = date.getFullYear() + '-';
var hh = date.getHours();
var mm = date.getMinutes();
var h = hh<10?'0'+hh+':':hh+':'
var m = mm<10?'0'+mm:mm
var M = Month < 10 ? '0' + Month + '-' : Month + '-'; var M = Month < 10 ? '0' + Month + '-' : Month + '-';
var D = Day < 10 ? '0' + Day : Day; var D = Day < 10 ? '0' + Day : Day;
return Y + M + D + " " +h + m; return Y + M + D
}, },
async getErrorList(params){ async getErrorList(params){
const {data,total} = await getErrorList(params) const {data,total} = await getErrorList(params)
......
<template> <template>
<div class="str"> <div class="home">
<div class="header flex-center"> <div class="header">
<span class="header-nav">项目名称:{{itemTitle}}</span> <span class="header-nav">项目名称:{{itemTitle}}</span>
<span class="header-nav">项目编号:{{itemCode}}</span> <span class="header-nav">项目编号:{{itemCode}}</span>
<span>发布日期:{{itemTime}}</span> <span>发布日期:{{itemTime}}</span>
</div> </div>
<h2>{{itemTitle}}</h2> <h2>{{itemTitle}}</h2>
<div class="form" v-html="contentList"> <div class="form" v-html="contentList">
<div> <div></div>
<div>公告名称:</div>
<div>{{itemTime}}</div>
</div>
<div>
<div>相关字段:</div>
<div>{{itemTitle}}</div>
</div>
<div>
<div>中标人:</div>
<div>{{itemPerson}}</div>
</div>
<div>
<div>中标价格:</div>
<div>{{winPrice}}</div>
</div>
<div>
<div>委托金额:</div>
<div>{{itemPrice}}</div>
</div>
<div>
<div>节资率:</div>
<div>{{itemCapital}}</div>
</div>
<div>
<div>其他说明:</div>
<div>{{other}}</div>
</div>
<div>
<div>公告内容:</div>
<div class="rig-content">
<div>招标人:{{itemPerson}}</div>
<div>招标代理机构:{{itemCompany}}</div>
<div>项目经理:{{itemManager}}</div>
<div>中标单位:{{itemPerson}}</div>
<div>中标金额:{{winPrice}}</div>
</div>
</div>
</div> </div>
<div class="flex-center"> <div class="flex-center" style="margin-top:30px">
<el-button @click="prev" <el-button @click="prev"
>返回</el-button >返回</el-button
> >
...@@ -58,17 +21,10 @@ import {getErrorDetails} from "@/common/list.js" ...@@ -58,17 +21,10 @@ import {getErrorDetails} from "@/common/list.js"
export default { export default {
data(){ data(){
return{ return{
contentList:[], contentList:'',
itemTitle:'定州市集中供热工程2020年预制直埋保温管及管道采购', itemTitle:'',
itemCode:'l1301000075017553011', itemCode:'',
itemTime:'2020年07月30号', itemTime:'',
itemPerson:'江丰管道集团有限公司',
winPrice:'173162元人民币',
itemPrice:'173162元人民币',
itemCapital:'1.7189484984%',
other:'无',
itemCompany:"瑞和安惠项目管理集团有限公司",
itemManager:'车经理'
} }
}, },
...@@ -79,6 +35,15 @@ export default { ...@@ -79,6 +35,15 @@ export default {
}, },
methods:{ methods:{
getTimer(dateStr){
var date = new Date(dateStr);
var Month = date.getMonth() + 1;
var Day = date.getDate();
var Y = date.getFullYear() + '-';
var M = Month < 10 ? '0' + Month + '-' : Month + '-';
var D = Day + 1 < 10 ? '0' + Day : Day;
return Y + M + D;
},
prev() { prev() {
window.history.go(-1) window.history.go(-1)
}, },
...@@ -88,6 +53,7 @@ export default { ...@@ -88,6 +53,7 @@ export default {
this.itemTitle = data.title this.itemTitle = data.title
this.itemCode = data.projectId this.itemCode = data.projectId
this.contentList = data.content this.contentList = data.content
this.itemTime = data.createTime
} }
} }
} }
...@@ -96,6 +62,7 @@ export default { ...@@ -96,6 +62,7 @@ export default {
<style scoped> <style scoped>
.header{ .header{
display: flex; display: flex;
justify-content: space-between
} }
.header-nav{ .header-nav{
margin-right: 30px; margin-right: 30px;
...@@ -105,37 +72,12 @@ h2{ ...@@ -105,37 +72,12 @@ h2{
margin-bottom: 30px; margin-bottom: 30px;
text-align: center; text-align: center;
} }
.home{
width:9.3rem
}
.form{ .form{
margin-top:50px;
margin-left:40px; margin-left:40px;
} width:9.3rem
.form>div{
display: flex;
margin-bottom: 20px;
}
.form>div:last-child{
justify-content: center;
padding-bottom: 100px;
}
.rig-content{
flex-direction: column;
}
.form>div>div:first-child{
width:92px;
height:25px;
line-height: 25px;
font-size: 10px;
color: #808080;
margin-right:20px;
}
.form>div>div:last-child{
justify-content: center;
width:100%;
height:25px;
line-height: 25px;
font-size: 10px;
color: #000000
}
.str{
width:9.2rem
} }
</style> </style>
\ No newline at end of file
...@@ -211,13 +211,9 @@ import Cookies from 'js-cookie' ...@@ -211,13 +211,9 @@ import Cookies from 'js-cookie'
var Month = date.getMonth() + 1; var Month = date.getMonth() + 1;
var Day = date.getDate(); var Day = date.getDate();
var Y = date.getFullYear() + '-'; var Y = date.getFullYear() + '-';
var hh = date.getHours();
var mm = date.getMinutes();
var h = hh<10?'0'+hh+':':hh+':'
var m = mm<10?'0'+mm:mm
var M = Month < 10 ? '0' + Month + '-' : Month + '-'; var M = Month < 10 ? '0' + Month + '-' : Month + '-';
var D = Day < 10 ? '0' + Day : Day; var D = Day < 10 ? '0' + Day : Day;
return Y + M + D + " " +h + m; return Y + M + D
}, },
async getAllList(params){ async getAllList(params){
const {data,total,code} = await getAllList(params) const {data,total,code} = await getAllList(params)
......
...@@ -157,13 +157,9 @@ import Cookies from 'js-cookie' ...@@ -157,13 +157,9 @@ import Cookies from 'js-cookie'
var Month = date.getMonth() + 1; var Month = date.getMonth() + 1;
var Day = date.getDate(); var Day = date.getDate();
var Y = date.getFullYear() + '-'; var Y = date.getFullYear() + '-';
var hh = date.getHours();
var mm = date.getMinutes();
var h = hh<10?'0'+hh+':':hh+':'
var m = mm<10?'0'+mm:mm
var M = Month < 10 ? '0' + Month + '-' : Month + '-'; var M = Month < 10 ? '0' + Month + '-' : Month + '-';
var D = Day < 10 ? '0' + Day : Day; var D = Day < 10 ? '0' + Day : Day;
return Y + M + D + " " +h + m; return Y + M + D
}, },
timeChange(e){ timeChange(e){
this.getData.beginDate = e[0].getTime() this.getData.beginDate = e[0].getTime()
......
...@@ -2,15 +2,15 @@ ...@@ -2,15 +2,15 @@
<div class="info"> <div class="info">
<div class="content"> <div class="content">
<div class="info_box"> <div class="info_box">
<div class="info_mes"> <div class="info_mes" >
<p class="left_mes"> <p >
项目名称:{{title}} 项目编号:{{code}} 项目名称:{{title}}
</p> </p>
<p class="right_mes"> <p>项目编号:{{code}}</p>
<p >
发布日期:{{date}} 发布日期:{{date}}
</p> </p>
</div> </div>
<h1>{{title}}</h1> <h1>{{title}}</h1>
<div class="content_list" v-html="contentList"> <div class="content_list" v-html="contentList">
...@@ -59,8 +59,7 @@ export default { ...@@ -59,8 +59,7 @@ export default {
title:"", title:"",
code:'', code:'',
date:'', date:'',
contentList:[], contentList:'',
fileList:[],
} }
}, },
methods:{ methods:{
...@@ -98,7 +97,6 @@ export default { ...@@ -98,7 +97,6 @@ export default {
.info { .info {
box-sizing: border-box; box-sizing: border-box;
padding: 30px; padding: 30px;
background: rgb(240, 242, 245);
width: 9.3rem; width: 9.3rem;
} }
.content{ .content{
...@@ -115,22 +113,12 @@ export default { ...@@ -115,22 +113,12 @@ export default {
.info_mes { .info_mes {
margin-bottom: 40px; margin-bottom: 40px;
display: flex; display: flex;
justify-content: center; justify-content: space-between;
} }
.info_mes p { .info_mes p {
display: inline-block; display: inline-block;
} }
.info_mes .left_mes {
margin-left:0;
margin-right: 20px;
font-size:10px ;
}
.right_mes{
font-size:10px ;
}
h1 { h1 {
display: flex; display: flex;
justify-content: center; justify-content: center;
......
...@@ -215,13 +215,9 @@ export default { ...@@ -215,13 +215,9 @@ export default {
var Month = date.getMonth() + 1; var Month = date.getMonth() + 1;
var Day = date.getDate(); var Day = date.getDate();
var Y = date.getFullYear() + '-'; var Y = date.getFullYear() + '-';
var hh = date.getHours();
var mm = date.getMinutes();
var h = hh<10?'0'+hh+':':hh+':'
var m = mm<10?'0'+mm:mm
var M = Month < 10 ? '0' + Month + '-' : Month + '-'; var M = Month < 10 ? '0' + Month + '-' : Month + '-';
var D = Day < 10 ? '0' + Day : Day; var D = Day < 10 ? '0' + Day : Day;
return Y + M + D + " " +h + m; return Y + M + D
}, },
reset(){ reset(){
this.getData.industryId = '' this.getData.industryId = ''
......
...@@ -165,13 +165,9 @@ import Cookies from 'js-cookie' ...@@ -165,13 +165,9 @@ import Cookies from 'js-cookie'
var Month = date.getMonth() + 1; var Month = date.getMonth() + 1;
var Day = date.getDate(); var Day = date.getDate();
var Y = date.getFullYear() + '-'; var Y = date.getFullYear() + '-';
var hh = date.getHours();
var mm = date.getMinutes();
var h = hh<10?'0'+hh+':':hh+':'
var m = mm<10?'0'+mm:mm
var M = Month < 10 ? '0' + Month + '-' : Month + '-'; var M = Month < 10 ? '0' + Month + '-' : Month + '-';
var D = Day < 10 ? '0' + Day : Day; var D = Day < 10 ? '0' + Day : Day;
return Y + M + D + " " +h + m; return Y + M + D
}, },
async getCadidateList(params){ async getCadidateList(params){
const {data,total} = await getCadidateList(params) const {data,total} = await getCadidateList(params)
......
<template> <template>
<div class="sty"> <div class="home">
<div class="header flex-center"> <div class="header">
<span class="header-nav">项目名称:{{itemTitle}}</span> <span class="header-nav">项目名称:{{itemTitle}}</span>
<span class="header-nav">项目编号:{{itemCode}}</span> <span class="header-nav">项目编号:{{itemCode}}</span>
<span>发布日期:{{itemTime}}</span> <span>发布日期:{{itemTime}}</span>
</div> </div>
<h2>{{itemTitle}}</h2> <h2>{{itemTitle}}</h2>
<div class="form" v-html="contentList"> <div class="form" v-html="contentList">
<div> <div></div>
<div>公告名称:</div>
<div>{{itemTime}}</div>
</div>
<div>
<div>相关字段:</div>
<div>{{itemTitle}}</div>
</div>
<div>
<div>中标人:</div>
<div>{{itemPerson}}</div>
</div>
<div>
<div>中标价格:</div>
<div>{{winPrice}}</div>
</div>
<div>
<div>委托金额:</div>
<div>{{itemPrice}}</div>
</div>
<div>
<div>节资率:</div>
<div>{{itemCapital}}</div>
</div>
<div>
<div>其他说明:</div>
<div>{{other}}</div>
</div>
<div>
<div>公告内容:</div>
<div class="rig-content">
<div>招标人:{{itemPerson}}</div>
<div>招标代理机构:{{itemCompany}}</div>
<div>项目经理:{{itemManager}}</div>
<div>中标单位:{{itemPerson}}</div>
<div>中标金额:{{winPrice}}</div>
</div>
</div>
</div> </div>
<div class="flex-center"> <div class="flex-center" style="margin-top:30px">
<el-button @click="prev" <el-button @click="prev"
>返回</el-button >返回</el-button
> >
...@@ -58,17 +21,10 @@ import {getCadidateDetails} from '@/common/list.js' ...@@ -58,17 +21,10 @@ import {getCadidateDetails} from '@/common/list.js'
export default { export default {
data(){ data(){
return{ return{
contentList:[], contentList:'',
itemTitle:'定州市集中供热工程2020年预制直埋保温管及管道采购', itemTitle:'',
itemCode:'l1301000075017553011', itemCode:'',
itemTime:'2020年07月30号', itemTime:'',
itemPerson:'江丰管道集团有限公司',
winPrice:'173162元人民币',
itemPrice:'173162元人民币',
itemCapital:'1.7189484984%',
other:'无',
itemCompany:"瑞和安惠项目管理集团有限公司",
itemManager:'车经理'
} }
}, },
...@@ -95,6 +51,7 @@ export default { ...@@ -95,6 +51,7 @@ export default {
<style scoped> <style scoped>
.header{ .header{
display: flex; display: flex;
justify-content: space-between
} }
.header-nav{ .header-nav{
margin-right: 30px; margin-right: 30px;
...@@ -104,36 +61,11 @@ h2{ ...@@ -104,36 +61,11 @@ h2{
margin-bottom: 30px; margin-bottom: 30px;
text-align: center; text-align: center;
} }
.home{
width:9.3rem
}
.form{ .form{
margin-top:50px;
margin-left:40px; margin-left:40px;
} width:9.3rem
.form>div{
display: flex;
margin-bottom: 20px;
}
.form>div:last-child{
justify-content: center;
padding-bottom: 100px;
}
.rig-content{
flex-direction: column;
}
.form>div>div:first-child{
width:92px;
height:25px;
line-height: 25px;
font-size: 10px;
color: #808080;
margin-right:20px;
}
.form>div>div:last-child{
justify-content: center;
width:100%;
height:25px;
line-height: 25px;
font-size: 10px;
color: #000000
}
.sty{
width:9.2rem
}</style> }</style>
\ No newline at end of file
...@@ -165,13 +165,9 @@ import Cookies from 'js-cookie' ...@@ -165,13 +165,9 @@ import Cookies from 'js-cookie'
var Month = date.getMonth() + 1; var Month = date.getMonth() + 1;
var Day = date.getDate(); var Day = date.getDate();
var Y = date.getFullYear() + '-'; var Y = date.getFullYear() + '-';
var hh = date.getHours();
var mm = date.getMinutes();
var h = hh<10?'0'+hh+':':hh+':'
var m = mm<10?'0'+mm:mm
var M = Month < 10 ? '0' + Month + '-' : Month + '-'; var M = Month < 10 ? '0' + Month + '-' : Month + '-';
var D = Day < 10 ? '0' + Day : Day; var D = Day < 10 ? '0' + Day : Day;
return Y + M + D + " " +h + m; return Y + M + D
}, },
async getChangeList(params){ async getChangeList(params){
const {data,total} = await getChangeList(params) const {data,total} = await getChangeList(params)
......
<template> <template>
<div class="home"> <div class="home">
<div> <div class="header">
<div class="headerflex-center"> <span class="header-nav">项目名称:{{itemTitle}}</span>
<span>项目名称:{{itemTitle}}</span> <span class="header-nav">项目编号:{{itemCode}}</span>
<span>项目编号:{{itemCode}}</span> <span>发布日期:{{itemTime}}</span>
</div> </div>
<h2>{{itemTitle}}</h2> <h2>{{itemTitle}}</h2>
<div class="home" v-html="contentList"> <div class="form" v-html="contentList">
<h3>一、项目基本情况</h3> <div></div>
<div> </div>
<div>原公告的采购项目编号:TSLT-2020-121</div> <div class="flex-center" style="margin-top:30px">
<div>原公告的采购项目名称:图书馆影视空间装修改造</div>
<div>首次公告日期:2020年07月29日</div>
</div>
<h3>二、更正信息</h3>
<div>
<div>更正事项:采购公告-采购文件</div>
<div>更正内容:原内容:P2第十项"保证金:本次不需要交保证金."此项删除.</div>
<div>更正日期:2020年08月03日</div>
</div>
<h3>三、其他补充事宜</h3>
<h3>四、凡对本次公告内容提出询问,请按以下方式联系</h3>
</div>
<div class="flex-center">
<el-button @click="prev" <el-button @click="prev"
>返回</el-button >返回</el-button
> >
</div> </div>
</div>
</div> </div>
</template> </template>
...@@ -36,9 +22,10 @@ import {getChangeDetails} from '@/common/list.js' ...@@ -36,9 +22,10 @@ import {getChangeDetails} from '@/common/list.js'
export default { export default {
data(){ data(){
return{ return{
contentList:[], contentList:'',
itemTitle:'', itemTitle:'',
itemCode:'', itemCode:'',
itemTime:''
} }
...@@ -49,6 +36,15 @@ export default { ...@@ -49,6 +36,15 @@ export default {
this.getChangeDetails(id) this.getChangeDetails(id)
}, },
methods:{ methods:{
getTimer(dateStr){
var date = new Date(dateStr);
var Month = date.getMonth() + 1;
var Day = date.getDate();
var Y = date.getFullYear() + '-';
var M = Month < 10 ? '0' + Month + '-' : Month + '-';
var D = Day + 1 < 10 ? '0' + Day : Day;
return Y + M + D;
},
prev() { prev() {
window.history.go(-1) window.history.go(-1)
}, },
...@@ -57,24 +53,31 @@ export default { ...@@ -57,24 +53,31 @@ export default {
this.itemTitle = data.title this.itemTitle = data.title
this.itemCode = data.projectId this.itemCode = data.projectId
this.contentList = data.content this.contentList = data.content
this.itemTime = data.createTime
} }
}, },
} }
</script> </script>
<style> <style>
h2{ .header{
text-align: center; display: flex;
justify-content: space-between
} }
.header>span{ .header-nav{
color:red; margin-right: 30px;
margin-bottom: 30px;
margin-left:20px
} }
h2{ h2{
margin-bottom: 50px; margin-top:30px;
margin-bottom: 30px;
text-align: center;
} }
.home{ .home{
width:9.2rem width:9.3rem
}
.form{
margin-top:50px;
margin-left:40px;
width:9.3rem
} }
</style> </style>
\ No newline at end of file
...@@ -163,13 +163,9 @@ import Cookies from 'js-cookie' ...@@ -163,13 +163,9 @@ import Cookies from 'js-cookie'
var Month = date.getMonth() + 1; var Month = date.getMonth() + 1;
var Day = date.getDate(); var Day = date.getDate();
var Y = date.getFullYear() + '-'; var Y = date.getFullYear() + '-';
var hh = date.getHours();
var mm = date.getMinutes();
var h = hh<10?'0'+hh+':':hh+':'
var m = mm<10?'0'+mm:mm
var M = Month < 10 ? '0' + Month + '-' : Month + '-'; var M = Month < 10 ? '0' + Month + '-' : Month + '-';
var D = Day < 10 ? '0' + Day : Day; var D = Day < 10 ? '0' + Day : Day;
return Y + M + D + " " +h + m; return Y + M + D
}, },
async getClerList(params){ async getClerList(params){
const {data,total} = await getClerList(params) const {data,total} = await getClerList(params)
......
<template> <template>
<div> <div class="home">
<div class="header flex-center"> <div class="header">
<span class="header-nav">项目名称:{{itemTitle}}</span> <span class="header-nav">项目名称:{{itemTitle}}</span>
<span class="header-nav">项目编号:{{itemCode}}</span> <span class="header-nav">项目编号:{{itemCode}}</span>
<span>发布日期:{{itemTime}}</span> <span>发布日期:{{itemTime}}</span>
</div> </div>
<h2>{{itemTitle}}</h2> <h2>{{itemTitle}}</h2>
<div class="form" v-html="contentList"> <div class="form" v-html="contentList">
<div> <div></div>
<div>公告名称:</div>
<div>{{itemTime}}</div>
</div>
<div>
<div>相关字段:</div>
<div>{{itemTitle}}</div>
</div>
<div>
<div>中标人:</div>
<div>{{itemPerson}}</div>
</div>
<div>
<div>中标价格:</div>
<div>{{winPrice}}</div>
</div>
<div>
<div>委托金额:</div>
<div>{{itemPrice}}</div>
</div>
<div>
<div>节资率:</div>
<div>{{itemCapital}}</div>
</div>
<div>
<div>其他说明:</div>
<div>{{other}}</div>
</div>
<div>
<div>公告内容:</div>
<div class="rig-content">
<div>招标人:{{itemPerson}}</div>
<div>招标代理机构:{{itemCompany}}</div>
<div>项目经理:{{itemManager}}</div>
<div>中标单位:{{itemPerson}}</div>
<div>中标金额:{{winPrice}}</div>
</div>
</div>
</div> </div>
<div class="flex-center"> <div class="flex-center" style="margin-top:30px">
<el-button @click="prev" <el-button @click="prev"
>返回</el-button >返回</el-button
> >
</div> </div>
</div> </div>
</template> </template>
</template>
<script> <script>
import {getClerDetailsList} from "@/common/list.js" import {getClerDetailsList} from "@/common/list.js"
export default { export default {
data(){ data(){
return{ return{
contentList:[], contentList:'',
itemTitle:'定州市集中供热工程2020年预制直埋保温管及管道采购', itemTitle:'',
itemCode:'l1301000075017553011', itemCode:'',
itemTime:'2020年07月30号', itemTime:'',
itemPerson:'江丰管道集团有限公司',
winPrice:'173162元人民币',
itemPrice:'173162元人民币',
itemCapital:'1.7189484984%',
other:'无',
itemCompany:"瑞和安惠项目管理集团有限公司",
itemManager:'车经理'
} }
}, },
...@@ -79,6 +36,15 @@ export default { ...@@ -79,6 +36,15 @@ export default {
}, },
methods:{ methods:{
getTimer(dateStr){
var date = new Date(dateStr);
var Month = date.getMonth() + 1;
var Day = date.getDate();
var Y = date.getFullYear() + '-';
var M = Month < 10 ? '0' + Month + '-' : Month + '-';
var D = Day + 1 < 10 ? '0' + Day : Day;
return Y + M + D;
},
prev() { prev() {
window.history.go(-1) window.history.go(-1)
}, },
...@@ -97,6 +63,7 @@ export default { ...@@ -97,6 +63,7 @@ export default {
<style scoped> <style scoped>
.header{ .header{
display: flex; display: flex;
justify-content: space-between
} }
.header-nav{ .header-nav{
margin-right: 30px; margin-right: 30px;
...@@ -106,34 +73,12 @@ h2{ ...@@ -106,34 +73,12 @@ h2{
margin-bottom: 30px; margin-bottom: 30px;
text-align: center; text-align: center;
} }
.home{
width:9.3rem
}
.form{ .form{
margin-top:50px;
margin-left:40px; margin-left:40px;
} width:9.3rem
.form>div{
display: flex;
margin-bottom: 20px;
}
.form>div:last-child{
justify-content: center;
padding-bottom: 100px;
}
.rig-content{
flex-direction: column;
}
.form>div>div:first-child{
width:92px;
height:25px;
line-height: 25px;
font-size: 10px;
color: #808080;
margin-right:20px;
}
.form>div>div:last-child{
justify-content: center;
width:100%;
height:25px;
line-height: 25px;
font-size: 10px;
color: #000000
} }
</style> </style>
\ No newline at end of file
...@@ -5,7 +5,6 @@ ...@@ -5,7 +5,6 @@
<div>项目名称:</div> <div>项目名称:</div>
<div>{{ formdata.itemTitle }}</div> <div>{{ formdata.itemTitle }}</div>
</div> </div>
<div class="flex"> <div class="flex">
<div>项目编号:</div> <div>项目编号:</div>
<div>{{ formdata.itemCode }}</div> <div>{{ formdata.itemCode }}</div>
...@@ -88,17 +87,12 @@ ...@@ -88,17 +87,12 @@
<!-- 此处放文件 --> <!-- 此处放文件 -->
</div> </div>
<h3>商务要求</h3> <h3>商务要求</h3>
<div class="appendix bus-require pos"> <div class="appendix bus-require pos ">
<div class="flex-center"> <div class="flex-center" style="width:100px;height:100px">
<p>商务要求</p> <p>商务要求</p>
</div> </div>
<div>{{ formdata.content }}</div> <div>{{ formdata.content }}</div>
</div> </div>
<div class="notice flex">
<h4>招标公告</h4>
<p>只有报价后才能参与投标报名</p>
</div>
<div class="Tips">图使馆招标公告(2020-07-30)</div>
<div class="button flex"> <div class="button flex">
<el-button @click="prev" <el-button @click="prev"
>返回</el-button >返回</el-button
...@@ -112,57 +106,6 @@ ...@@ -112,57 +106,6 @@
</div> </div>
</div> </div>
</div> </div>
<el-dialog :visible.sync="dialogFormVisible" title="报价">
<dataTable :table-data="tabledata" :columns="columns" :isPageobj="false" >
<el-table-column
slot="operate"
label="操作"
align="center"
fixed="right"
width="200"
>
<template slot-scope="scope">
<el-button type="text" size="small" @click="see(scope.row)"
>查看中标公告</el-button
>
</template>
</el-table-column>
</dataTable>
<div slot="footer" class="dialog-footer" style="margin-top:300px">
<el-button @click="dialogFormVisible = false">取 消</el-button>
<el-button type="primary" @click="dialogFormVisible = false"
>提交报价</el-button
>
</div>
</el-dialog>
<!-- //参加报价供应商情况 --> <!-- -->
<el-dialog
title="参加报价供应商情况"
:visible.sync="PdialogVisible"
width="50%">
<el-table
:data="tableData1"
highlight-current-row
style="width: 100%"
border stripe>
<el-table-column
type="index"
width="127px"
label="序号">
</el-table-column>
<el-table-column
label="供应商名称"
width="300px"
>
</el-table-column>
<el-table-column
label="报价时间"
width="300px"
>
</el-table-column>
</el-table>
</el-dialog>
</div> </div>
</div> </div>
</div> </div>
...@@ -191,14 +134,6 @@ export default { ...@@ -191,14 +134,6 @@ export default {
let enquiryId = window.location.href.split("?id=")[1] let enquiryId = window.location.href.split("?id=")[1]
Cookies.set("Id",enquiryId) Cookies.set("Id",enquiryId)
}, },
/* async asyncData({route}){
let id = $route.query.id
const {data} = await getenquirydetails(id)
console.log(data+'------------')
return {
formdata : data,
}
}, */
data() { data() {
return { return {
fileList:[], fileList:[],
...@@ -209,42 +144,30 @@ export default { ...@@ -209,42 +144,30 @@ export default {
currentPage:1, currentPage:1,
size:10, size:10,
formdata: { formdata: {
itemTitle: "苍南县公安局关于督查视频服务器5台在线询价公告", itemTitle: "",
itemCode: "I1301000075017553011", itemCode: "",
itemTime: "2020-10-01", itemTime: "",
area: "苍南县", area: "",
record: "无", record: "",
priority: "非紧急", priority: "",
startTime: "2020-10-02 19:02", startTime: "",
endTime: "2020-10-02 19:02", endTime: "",
Purchasing: "苍南县公安局", Purchasing: "",
purchasingpPerson: "王荔荣", purchasingpPerson: "",
phone: "13543466767", phone: "",
faxphone: "0571-88287963", faxphone: "",
price: "10000", price: "",
style: "自动成交", style: "",
Grequirements: "阿里巴巴", Grequirements: "",
Zrequirements: "阿里巴巴", Zrequirements: "",
arearequirements: "浙江省", arearequirements: "",
content: content:"",
"1、 本次招标内容为开平碉楼与村落保护规划服务(具体详见技术要求)。投标人不得将本项目中的内容拆散来投标。 2、 投标人资格要求: (1)投标人应当是具有文物保护工程勘探设计甲级资质的法人,其中其业务范围必须包含文物保护规划编制; (2)投标人应当具有世界文化遗产保护规划设计的工作经验。 3、 投标人应当在投标文件中详细列出并提供相关证明文件证明本项目的管理负责人和技术负责人的学历、职称、从事相关工作的时间,承担过类似项目名称、责任内容、完成日期以及其它业绩证明材料。 4、 投标人应当具有完整的质量保证体系。 5、 投标人应当在投标文件中提供具有文物保护工程勘探设计资格证明等文件。",
}, },
endtime: "", endtime: "",
isshow: true, isshow: true,
isshowbutton: true, isshowbutton: true,
dialogFormVisible: false, dialogFormVisible: false,
breads: ["投标管理", "在线报名", "询价公告"],
tabledata: [ tabledata: [
{
name: "大白菜",
acount: "100",
unit: "斤",
brand: "天然",
size: "周杰伦",
price: "100",
remarks: "无",
quote: "100.00",
},
], ],
columns: [ columns: [
{ {
...@@ -268,17 +191,13 @@ export default { ...@@ -268,17 +191,13 @@ export default {
prop: "specification", prop: "specification",
}, },
{ {
label: "标杆价", label: "标杆价(元)",
prop: "deliveryPlace", prop: "price",
}, },
{ {
label: "备注", label: "备注",
prop: "remark", prop: "remark",
}, },
{
label: "我的报价(元)",
prop: "price",
},
], ],
}; };
}, },
...@@ -291,9 +210,8 @@ export default { ...@@ -291,9 +210,8 @@ export default {
this.$router.push("/login/user") this.$router.push("/login/user")
}else{ }else{
let number = Cookies.get("isSupplier") let number = Cookies.get("isSupplier")
if(number ==='2'){ if(number =='2'){
let token = Cookies.get("token") let token = Cookies.get("token")
/* this.$router.push(`/supply/bid/signupOnline/seePrice?id=${this.PROid}`) */
window.open(`http://60.205.251.80:8082/#/supply/bid/signupOnline/seePrice?id=${this.PROid}&token=${token}`) window.open(`http://60.205.251.80:8082/#/supply/bid/signupOnline/seePrice?id=${this.PROid}&token=${token}`)
} }
} }
......
...@@ -217,13 +217,9 @@ export default { ...@@ -217,13 +217,9 @@ export default {
var Month = date.getMonth() + 1; var Month = date.getMonth() + 1;
var Day = date.getDate(); var Day = date.getDate();
var Y = date.getFullYear() + '-'; var Y = date.getFullYear() + '-';
var hh = date.getHours();
var mm = date.getMinutes();
var h = hh<10?'0'+hh+':':hh+':'
var m = mm<10?'0'+mm:mm
var M = Month < 10 ? '0' + Month + '-' : Month + '-'; var M = Month < 10 ? '0' + Month + '-' : Month + '-';
var D = Day < 10 ? '0' + Day : Day; var D = Day < 10 ? '0' + Day : Day;
return Y + M + D + " " +h + m; return Y + M + D
}, },
testChange(e) { testChange(e) {
......
...@@ -3,50 +3,13 @@ ...@@ -3,50 +3,13 @@
<div class="header"> <div class="header">
<span class="header-nav">项目名称:{{itemTitle}}</span> <span class="header-nav">项目名称:{{itemTitle}}</span>
<span class="header-nav">项目编号:{{itemCode}}</span> <span class="header-nav">项目编号:{{itemCode}}</span>
<span>发布日期:{{getTimer(itemTime)}}</span> <span>发布日期:{{itemTime}}</span>
</div> </div>
<h2>{{itemTitle}}</h2> <h2>{{itemTitle}}</h2>
<div class="form" v-html="contentList"> <div class="form" v-html="contentList">
<div> <div></div>
<div>公告名称:</div>
<div>{{itemTime}}</div>
</div>
<div>
<div>相关字段:</div>
<div>{{itemTitle}}</div>
</div>
<div>
<div>中标人:</div>
<div>{{itemPerson}}</div>
</div>
<div>
<div>中标价格:</div>
<div>{{winPrice}}</div>
</div>
<div>
<div>委托金额:</div>
<div>{{itemPrice}}</div>
</div>
<div>
<div>节资率:</div>
<div>{{itemCapital}}</div>
</div>
<div>
<div>其他说明:</div>
<div>{{other}}</div>
</div>
<div>
<div>公告内容:</div>
<div class="rig-content">
<div>招标人:{{itemPerson}}</div>
<div>招标代理机构:{{itemCompany}}</div>
<div>项目经理:{{itemManager}}</div>
<div>中标单位:{{itemPerson}}</div>
<div>中标金额:{{winPrice}}</div>
</div>
</div>
</div> </div>
<div class="flex-center"> <div class="flex-center" style="margin-top:30px">
<el-button @click="prev" <el-button @click="prev"
>返回</el-button >返回</el-button
> >
...@@ -59,17 +22,10 @@ import {getWindetails} from '@/common/list.js' ...@@ -59,17 +22,10 @@ import {getWindetails} from '@/common/list.js'
export default { export default {
data(){ data(){
return{ return{
contentList:[], contentList:'',
itemTitle:'定州市集中供热工程2020年预制直埋保温管及管道采购', itemTitle:'',
itemCode:'l1301000075017553011', itemCode:'',
itemTime:'2020年07月30号', itemTime:'',
itemPerson:'江丰管道集团有限公司',
winPrice:'173162元人民币',
itemPrice:'173162元人民币',
itemCapital:'1.7189484984%',
other:'无',
itemCompany:"瑞和安惠项目管理集团有限公司",
itemManager:'车经理'
} }
}, },
...@@ -107,6 +63,7 @@ export default { ...@@ -107,6 +63,7 @@ export default {
<style scoped> <style scoped>
.header{ .header{
display: flex; display: flex;
justify-content: space-between
} }
.header-nav{ .header-nav{
margin-right: 30px; margin-right: 30px;
...@@ -120,34 +77,8 @@ h2{ ...@@ -120,34 +77,8 @@ h2{
width:9.3rem width:9.3rem
} }
.form{ .form{
margin-top:50px;
margin-left:40px; margin-left:40px;
width:9.3rem width:9.3rem
} }
.form>div{
display: flex;
margin-bottom: 20px;
}
.form>div:last-child{
justify-content: center;
padding-bottom: 100px;
}
.rig-content{
flex-direction: column;
}
.form>div>div:first-child{
width:92px;
height:25px;
line-height: 25px;
font-size: 10px;
color: #808080;
margin-right:20px;
}
.form>div>div:last-child{
justify-content: center;
width:100%;
height:25px;
line-height: 25px;
font-size: 10px;
color: #000000
}
</style> </style>
\ No newline at end of file
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