询价报价修改
This commit is contained in:
parent
f214efc8f7
commit
6f23c070a7
|
|
@ -72,7 +72,7 @@
|
|||
<span v-if="scope.row.bidStatus==3">已选中</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" align="center" width="180" class-name="small-padding fixed-width" v-if="baseInfo.status==2">
|
||||
<el-table-column label="操作" align="center" width="180" class-name="small-padding fixed-width" v-if="baseInfo.status>2">
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
size="mini"
|
||||
|
|
|
|||
|
|
@ -120,13 +120,13 @@
|
|||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-edit" v-if="scope.row.status==2"
|
||||
icon="el-icon-edit" v-if="scope.row.status!=1"
|
||||
@click="handelBidPrice(scope.row)"
|
||||
>查看报价</el-button>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-edit" v-if="scope.row.status==2"
|
||||
icon="el-icon-edit" v-if="scope.row.status!=1"
|
||||
@click="handleView(scope.row)"
|
||||
>详情</el-button>
|
||||
<el-button
|
||||
|
|
|
|||
|
|
@ -35,12 +35,13 @@
|
|||
</el-table-column>
|
||||
<el-table-column label="询价单号" align="center" prop="inquiryCode" :show-overflow-tooltip="true" />
|
||||
<el-table-column label="询价标题" align="center" prop="title" :show-overflow-tooltip="true" />
|
||||
<el-table-column label="询价状态" align="center" prop="inquiryState" :show-overflow-tooltip="true" width="100">
|
||||
<el-table-column label="询价状态" align="center" prop="status" :show-overflow-tooltip="true" width="100">
|
||||
<template slot-scope="scope">
|
||||
<span v-if="scope.row.inquiryState==1">未开始</span>
|
||||
<span v-if="scope.row.inquiryState==2">进行中</span>
|
||||
<span v-if="scope.row.inquiryState==3">已结束</span>
|
||||
<span v-if="scope.row.inquiryState==4">已取消</span>
|
||||
<span v-if="scope.row.status==1">待提交</span>
|
||||
<span v-if="scope.row.status==2">已决价</span>
|
||||
<span v-if="scope.row.status==3">进行中</span>
|
||||
<span v-if="scope.row.status==4">未决标</span>
|
||||
<span v-if="scope.row.status==5">已取消</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="报价开始时间" align="center" prop="startTime" :show-overflow-tooltip="true" />
|
||||
|
|
@ -56,13 +57,13 @@
|
|||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-edit" v-if="scope.row.status==2"
|
||||
icon="el-icon-edit" v-if="scope.row.status==3"
|
||||
@click="handleUpdate(scope.row)"
|
||||
>报价</el-button>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-edit" v-if="scope.row.status>2"
|
||||
icon="el-icon-edit" v-if="scope.row.status>3"
|
||||
@click="handleView(scope.row)"
|
||||
>详情</el-button>
|
||||
</template>
|
||||
|
|
|
|||
Loading…
Reference in New Issue