询价报价修改

This commit is contained in:
lizhenhua 2025-08-07 16:51:18 +08:00
parent f214efc8f7
commit 6f23c070a7
3 changed files with 11 additions and 10 deletions

View File

@ -72,7 +72,7 @@
<span v-if="scope.row.bidStatus==3">已选中</span> <span v-if="scope.row.bidStatus==3">已选中</span>
</template> </template>
</el-table-column> </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"> <template slot-scope="scope">
<el-button <el-button
size="mini" size="mini"

View File

@ -120,13 +120,13 @@
<el-button <el-button
size="mini" size="mini"
type="text" 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)" @click="handelBidPrice(scope.row)"
>查看报价</el-button> >查看报价</el-button>
<el-button <el-button
size="mini" size="mini"
type="text" 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)" @click="handleView(scope.row)"
>详情</el-button> >详情</el-button>
<el-button <el-button

View File

@ -35,12 +35,13 @@
</el-table-column> </el-table-column>
<el-table-column label="询价单号" align="center" prop="inquiryCode" :show-overflow-tooltip="true" /> <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="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"> <template slot-scope="scope">
<span v-if="scope.row.inquiryState==1">未开始</span> <span v-if="scope.row.status==1">待提交</span>
<span v-if="scope.row.inquiryState==2">进行中</span> <span v-if="scope.row.status==2">已决价</span>
<span v-if="scope.row.inquiryState==3">已结束</span> <span v-if="scope.row.status==3">进行中</span>
<span v-if="scope.row.inquiryState==4">已取消</span> <span v-if="scope.row.status==4">未决标</span>
<span v-if="scope.row.status==5">已取消</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="报价开始时间" align="center" prop="startTime" :show-overflow-tooltip="true" /> <el-table-column label="报价开始时间" align="center" prop="startTime" :show-overflow-tooltip="true" />
@ -56,13 +57,13 @@
<el-button <el-button
size="mini" size="mini"
type="text" 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)" @click="handleUpdate(scope.row)"
>报价</el-button> >报价</el-button>
<el-button <el-button
size="mini" size="mini"
type="text" 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)" @click="handleView(scope.row)"
>详情</el-button> >详情</el-button>
</template> </template>