|
|
@@ -78,7 +78,7 @@
|
|
|
</el-form>
|
|
|
</div>
|
|
|
<el-table size="mini" highlight-current-row stripe :data="entityList" border height="calc(100vh - 243px)" style="width: 100%" @sort-change="orderby" v-loading="tableLoading">
|
|
|
- <el-table-column label="操作" min-width="205" align="center" fixed >
|
|
|
+ <el-table-column label="操作" min-width="205" align="center" fixed="right" >
|
|
|
<template slot-scope="scope">
|
|
|
<!-- <router-link :to="'/oilsupplier/oilcontract/' + scope.row.Id + '/operation'"> -->
|
|
|
<router-link :to="'/oilcontract/contract-import/' + scope.row.Id + '/operation'">
|
|
|
@@ -104,6 +104,11 @@
|
|
|
<el-button type="text" size="small" :disabled="!evaluateBoolean || scope.row.Status === 1" style="margin-left:3px" icon="el-icon-edit-outline " @click="onNavigateEvaluate(scope.row)">创建评价</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column align="center" width="70" label="序号">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{scope.$index+(currentPage - 1) * size + 1}} </span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column v-for="column in tableColumns" :key="column.Id"
|
|
|
v-if="column.prop == 'SupplierName' || column.prop == 'SecondUnitName' || column.prop == 'ContractName' || column.prop == 'ContractNo'" :prop="column.prop" sortable :min-width="240" :label="column.label" align="center" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|