This commit is contained in:
xd 2024-07-24 14:53:58 +08:00
parent 874990b2da
commit 64ba5ddc1e
1 changed files with 11 additions and 1 deletions

View File

@ -174,6 +174,16 @@
<el-table-column label="招标代理" align="center" prop="bidAgency" width="250px" /> <el-table-column label="招标代理" align="center" prop="bidAgency" width="250px" />
<el-table-column label="授权代表" align="center" prop="bidAuthorizedRepresentative" width="100px" /> <el-table-column label="授权代表" align="center" prop="bidAuthorizedRepresentative" width="100px" />
<el-table-column label="制标人" align="center" prop="bidZbr" width="100px" /> <el-table-column label="制标人" align="center" prop="bidZbr" width="100px" />
<el-table-column label="技术协助状态" align="center" prop="bidJsxzApprovalStatus" width="150px" v-if="checkRole(['BID'])">
<template slot-scope="scope">
<dict-tag :options="dict.type.bid_jsxz_approval_status" :value="scope.row.bidJsxzApprovalStatus" v-if="scope.row.bidJsxzApprovalStatus!=0"/>
</template>
</el-table-column>
<el-table-column label="核价协助状态" align="center" prop="bidHjApprovalStatus" width="150px" v-if="checkRole(['BID'])">
<template slot-scope="scope">
<dict-tag :options="dict.type.bid_hj_approval_status" :value="scope.row.bidHjApprovalStatus" v-if="scope.row.bidHjApprovalStatus!=0"/>
</template>
</el-table-column>
<el-table-column label="创建人" align="center" prop="createName" width="150px"/> <el-table-column label="创建人" align="center" prop="createName" width="150px"/>
<el-table-column label="创建时间" align="center" prop="createTime" width="160"> <el-table-column label="创建时间" align="center" prop="createTime" width="160">
<template slot-scope="scope"> <template slot-scope="scope">
@ -239,7 +249,7 @@
<el-col :span="10"> <el-col :span="10">
<el-form-item label="原报名编号" prop="bidRegistrationNumber"> <el-form-item label="原报名编号" prop="bidRegistrationNumber">
<el-input v-model="form.bidRegistrationNumber" placeholder="请输入原报名编号" :disabled="true"> <el-input v-model="form.bidRegistrationNumber" placeholder="请输入原报名编号" :disabled="true">
<el-button slot="append" icon="el-icon-search" @click="openZgys" v-if="this.form.bidApprovalStatus == '0' || this.form.bidApprovalStatus == null"/> <el-button slot="append" icon="el-icon-search" @click="openZgys" v-if="(this.form.bidApprovalStatus == '0' || this.form.bidApprovalStatus == null)&&this.form.bidHasRegistration==0"/>
</el-input> </el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>