feat: There is no way the, bug #52396
This commit is contained in:
@@ -44,7 +44,7 @@
|
||||
<el-table-column type="selection" min-width="5%" align="center"/>
|
||||
<el-table-column
|
||||
label="序号"
|
||||
width="50"
|
||||
min-width="50"
|
||||
align="center">
|
||||
<template slot-scope="scope">
|
||||
{{scope.$index + 1}}
|
||||
@@ -52,14 +52,14 @@
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
label="企标编号"
|
||||
width="150">
|
||||
min-width="150">
|
||||
<template slot-scope="scope">
|
||||
<a v-if="scope.row.standCode" class="table-jump" @click="handlePreview(scope.row)" :title="scope.row.standCode">{{ scope.row.standCode | ellipsis }}</a>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
label="企标名称"
|
||||
width="300">
|
||||
min-width="300">
|
||||
<template slot-scope="scope">
|
||||
<a v-if="scope.row.standName" class="table-jump" @click="handlePreview(scope.row)" :title="scope.row.standName">{{ scope.row.standName | ellipsis }}</a>
|
||||
</template>
|
||||
@@ -67,7 +67,7 @@
|
||||
<el-table-column
|
||||
prop="qcdw"
|
||||
label="起草单位"
|
||||
width="120">
|
||||
min-width="120">
|
||||
<template slot-scope="scope">
|
||||
<span v-if="scope.row.qcdw" :title="scope.row.qcdw">{{ scope.row.qcdw | ellipsis2 }}</span>
|
||||
</template>
|
||||
@@ -75,7 +75,7 @@
|
||||
<el-table-column
|
||||
prop="qcrbuss"
|
||||
label="起草人"
|
||||
width="120">
|
||||
min-width="120">
|
||||
<template slot-scope="scope">
|
||||
<span v-if="scope.row.qcrbuss" :title="scope.row.qcrbuss">{{ scope.row.qcrbuss | ellipsis2 }}</span>
|
||||
</template>
|
||||
@@ -83,19 +83,19 @@
|
||||
<el-table-column
|
||||
prop="issueTime"
|
||||
label="发布日期"
|
||||
width="120">
|
||||
min-width="120">
|
||||
<template slot-scope="scope">{{ formatIssueDate(scope.row.issueTime)}}</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="reviewTime"
|
||||
label="复审日期"
|
||||
width="120">
|
||||
min-width="120">
|
||||
<template slot-scope="scope">{{ formatIssueDate(scope.row.reviewTime) }}</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="reviewResults"
|
||||
label="复审结果"
|
||||
width="100">
|
||||
min-width="100">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ filterOp(scope.row.reviewResults) }}</span>
|
||||
</template>
|
||||
@@ -103,7 +103,7 @@
|
||||
<el-table-column
|
||||
prop="bussFsSubUser1Name"
|
||||
label="对接人"
|
||||
width="180"
|
||||
min-width="180"
|
||||
align="center">
|
||||
<template slot-scope="scope">
|
||||
<el-form-item
|
||||
@@ -115,7 +115,7 @@
|
||||
</el-form-item>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column fixed="right" label="操作" align="center" width="50">
|
||||
<el-table-column fixed="right" label="操作" align="center" min-width="50">
|
||||
<template slot-scope="scope">
|
||||
<div @click.stop style="display: inline-block">
|
||||
<el-dropdown trigger="click" @command="handleCommand">
|
||||
|
||||
Reference in New Issue
Block a user