Commit 8f38083a authored by 张冬's avatar 张冬

询价和Ui小改

parent 765d4028
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<div> <div>
<div class="content"> <div class="content">
<dataTable :columns="columns" :page-obj="pageObj" :breads="breads" url="/tender-earnest/list"> <dataTable :columns="columns" :page-obj="pageObj" :breads="breads" url="/tender-earnest/list">
<el-table-column slot="createTime" label="提交审核时间" align="center" width="100"> <el-table-column slot="createTime" label="提交审核时间" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<div>{{scope.row.createTime?scope.row.createTime:"无"}}</div> <div>{{scope.row.createTime?scope.row.createTime:"无"}}</div>
</template> </template>
......
...@@ -16,14 +16,15 @@ ...@@ -16,14 +16,15 @@
<div><span>*</span>澄清问题内容:</div> <div><span>*</span>澄清问题内容:</div>
<div>{{ detail.content }}</div> <div>{{ detail.content }}</div>
</div> </div>
<div v-if="detail.accessoryList" class="flex"> <div class="flex">
<div><span>*</span>澄清问题附件:</div> <div>澄清问题附件:</div>
<ul> <ul v-if="detail.accessoryList!==undefined&& detail.accessoryList.length>0">
<li v-for="(item,index) in detail.accessoryList" :key="index"> <li v-for="(item,index) in detail.accessoryList" :key="index">
<span>{{ item.fileName }}</span> <span>{{ item.fileName }}</span>
<el-button @click="download(item.accessoryUrl)">下载</el-button> <el-button @click="download(item.accessoryUrl)">下载</el-button>
</li> </li>
</ul> </ul>
<div></div>
</div> </div>
</div> </div>
<h3 class="title">澄清内容</h3> <h3 class="title">澄清内容</h3>
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<div> <div>
<div class="content"> <div class="content">
<dataTable :columns="columns" :page-obj="pageObj" :breads="breads" url="/tender-bidbook/operation"> <dataTable :columns="columns" :page-obj="pageObj" :breads="breads" url="/tender-bidbook/operation">
<el-table-column slot="updateTime" label="提交审核时间" align="center" width="100"> <el-table-column slot="updateTime" label="提交审核时间" align="center" >
<template slot-scope="scope"> <template slot-scope="scope">
<div>{{scope.row.updateTime?scope.row.updateTime:"无"}}</div> <div>{{scope.row.updateTime?scope.row.updateTime:"无"}}</div>
</template> </template>
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<dataBreadcrumb :breads="breads"></dataBreadcrumb> <dataBreadcrumb :breads="breads"></dataBreadcrumb>
<changeNav :navs="navs"></changeNav> <changeNav :navs="navs"></changeNav>
<div> <div>
<div class="message"> <div class="message form">
<div class="flex-between"> <div class="flex-between">
<div>项目编号:{{projectCode}}</div> <div>项目编号:{{projectCode}}</div>
<div style="margin-right: 100px;">项目名称:{{projectName}}</div> <div style="margin-right: 100px;">项目名称:{{projectName}}</div>
...@@ -163,7 +163,8 @@ ...@@ -163,7 +163,8 @@
<style scoped> <style scoped>
.message { .message {
width: 60%; width: 80%;
margin:0 auto
} }
.message>div { .message>div {
......
This diff is collapsed.
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
</div> </div>
<candidate v-if="type == 2"></candidate> <candidate v-if="type == 2"></candidate>
<div class="content" v-else> <div class="content" v-else>
<div class="message"> <div class="message form">
<div class="flex-between"> <div class="flex-between">
<div>项目编号:{{ projectCode }}</div> <div>项目编号:{{ projectCode }}</div>
<div>项目名称:{{ projectName }}</div> <div>项目名称:{{ projectName }}</div>
...@@ -175,7 +175,8 @@ export default { ...@@ -175,7 +175,8 @@ export default {
<style scoped> <style scoped>
.message { .message {
width: 60%; width: 80%;
margin:0 auto
} }
.message > div { .message > div {
......
...@@ -171,7 +171,7 @@ import dataTable from '@components/nopageTable.vue'; ...@@ -171,7 +171,7 @@ import dataTable from '@components/nopageTable.vue';
import dataBreadcrumb from '@components/dataBreadcrumb.vue'; import dataBreadcrumb from '@components/dataBreadcrumb.vue';
import citySelect from '@components/citySelect/citySelect.vue'; import citySelect from '@components/citySelect/citySelect.vue';
import singleUpload from '@components/Upload/Upload.vue'; import singleUpload from '@components/Upload/Upload.vue';
import { createEnquiry } from '@api/purchaser/bid'; import { createEnquiry,editEnquiry } from '@api/purchaser/bid';
import { getTime } from '@utils/time'; import { getTime } from '@utils/time';
import { commoditylist, inqueryinfo } from '@api/common/list'; import { commoditylist, inqueryinfo } from '@api/common/list';
......
...@@ -149,19 +149,19 @@ export default { ...@@ -149,19 +149,19 @@ export default {
modulars: [ modulars: [
{ {
id: 14, id: 14,
label: '中标候选人公示', label: '发布中标候选人公示',
url: '/purchaser/bid/bidSure/publicity', url: '/purchaser/bid/bidSure/publicity',
bright: false bright: false
}, },
{ {
id: 15, id: 15,
label: '确认中标人', label: '发布中标人公示',
url: '/purchaser/bid/bidSure/determine', url: '/purchaser/bid/bidSure/determine',
bright: false bright: false
}, },
{ {
id: 16, id: 16,
label: '中标公告', label: '发布中标公告',
url: '/purchaser/bid/bidSure/notice', url: '/purchaser/bid/bidSure/notice',
bright: false bright: false
}, },
...@@ -249,30 +249,30 @@ export default { ...@@ -249,30 +249,30 @@ export default {
}, },
jump(mods) { jump(mods) {
if (mods.bright) { if (mods.bright) {
if (mods.label == '项目终止') { if (mods.label == '项目终止') {
this.$confirm('确定要终止吗?', '提示', { this.$confirm('确定要终止吗?', '提示', {
type: 'warning' type: 'warning'
})
.then(async () => {
let projectId = localStorage.getItem('projectId');
const { msg, code } = await projectEnd(projectId);
if (code == 200) {
this.$message({
message: msg,
type: 'success',
duration: 1500
});
setTimeout(() => {
this.$router.go(-1);
}, 1500);
} else {
this.$message.error(msg);
}
}) })
.catch(() => {}); .then(async () => {
} else { let projectId = localStorage.getItem('projectId');
this.$router.push(mods.url); const { msg, code } = await projectEnd(projectId);
} if (code == 200) {
this.$message({
message: msg,
type: 'success',
duration: 1500
});
setTimeout(() => {
this.$router.go(-1);
}, 1500);
} else {
this.$message.error(msg);
}
})
.catch(() => {});
} else {
this.$router.push(mods.url);
}
} }
}, },
async getprojectConsole() { async getprojectConsole() {
......
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