|
@@ -116,7 +116,11 @@
|
|
|
:header-cell-style="tableHeaderCellStyle" show-summary :span-method="arraySpanMethod" border
|
|
:header-cell-style="tableHeaderCellStyle" show-summary :span-method="arraySpanMethod" border
|
|
|
:cell-class-name="selectStyle" style="width: 100%" :icorePanelShown="100"
|
|
:cell-class-name="selectStyle" style="width: 100%" :icorePanelShown="100"
|
|
|
:icore-filter-flag="icoreFilterFlag">
|
|
:icore-filter-flag="icoreFilterFlag">
|
|
|
- <el-table-column type="index" label="NO" fixed="left" align="center" width="45"></el-table-column>
|
|
|
|
|
|
|
+ <el-table-column label="NO" fixed="left" align="center" width="45">
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <span :style="{ color: scope.row && scope.row.MSG_RES_FLAG === '失败' ? 'red' : '' }">{{ scope.$index + 1 }}</span>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
<el-table-column type="selection" width="45" fixed="left" align="center"></el-table-column>
|
|
<el-table-column type="selection" width="45" fixed="left" align="center"></el-table-column>
|
|
|
<!-- <el-table-column sortable show-overflow-tooltip align="center" width="135" prop="CONTRACT_NO" label="合同号"></el-table-column>-->
|
|
<!-- <el-table-column sortable show-overflow-tooltip align="center" width="135" prop="CONTRACT_NO" label="合同号"></el-table-column>-->
|
|
|
<el-table-column sortable show-overflow-tooltip align="center" min-width="120" prop="RECEIVED_DATE"
|
|
<el-table-column sortable show-overflow-tooltip align="center" min-width="120" prop="RECEIVED_DATE"
|
|
@@ -284,7 +288,13 @@
|
|
|
@selection-change="searchFollow2" highlight-current-row :summary-method="getSummaries"
|
|
@selection-change="searchFollow2" highlight-current-row :summary-method="getSummaries"
|
|
|
:header-cell-style="tableHeaderCellStyle" show-summary :span-method="arraySpanMethod2" border
|
|
:header-cell-style="tableHeaderCellStyle" show-summary :span-method="arraySpanMethod2" border
|
|
|
style="width: 100%" :icorePanelShown="100" :icore-filter-flag="icoreFilterFlag">
|
|
style="width: 100%" :icorePanelShown="100" :icore-filter-flag="icoreFilterFlag">
|
|
|
- <el-table-column type="index" label="NO" fixed="left" align="center" width="45"></el-table-column>
|
|
|
|
|
|
|
+ <el-table-column label="NO" fixed="left" align="center" width="45">
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <span :style="{ color: scope.row && scope.row.MSG_RES_FLAG === '失败' ? 'red' : '' }">
|
|
|
|
|
+ {{ scope.$index + 1 }}
|
|
|
|
|
+ </span>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
<el-table-column type="selection" width="45" fixed="left" align="center"></el-table-column>
|
|
<el-table-column type="selection" width="45" fixed="left" align="center"></el-table-column>
|
|
|
<!-- <el-table-column sortable show-overflow-tooltip align="center" width="135" prop="CONTRACT_NO" label="合同号"></el-table-column>-->
|
|
<!-- <el-table-column sortable show-overflow-tooltip align="center" width="135" prop="CONTRACT_NO" label="合同号"></el-table-column>-->
|
|
|
<el-table-column sortable show-overflow-tooltip align="center" min-width="100" prop="releaseValid"
|
|
<el-table-column sortable show-overflow-tooltip align="center" min-width="100" prop="releaseValid"
|
|
@@ -391,6 +401,14 @@
|
|
|
label="修改人"></el-table-column>
|
|
label="修改人"></el-table-column>
|
|
|
<el-table-column sortable show-overflow-tooltip align="center" min-width="125px" prop="UPDATE_TIME"
|
|
<el-table-column sortable show-overflow-tooltip align="center" min-width="125px" prop="UPDATE_TIME"
|
|
|
label="修改时间"></el-table-column>
|
|
label="修改时间"></el-table-column>
|
|
|
|
|
+ <el-table-column sortable show-overflow-tooltip align="center" min-width="125px" prop="MSG_RES_FLAG"
|
|
|
|
|
+ label="电文发送状态">
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <el-tooltip class="item" effect="dark" :content="scope.row.MSG_RES_DETAIL" placement="top">
|
|
|
|
|
+ <span>{{ scope.row.MSG_RES_FLAG }}</span>
|
|
|
|
|
+ </el-tooltip>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
</el-table>
|
|
</el-table>
|
|
|
<div class="common-foot-style">
|
|
<div class="common-foot-style">
|
|
|
<el-pagination @size-change="handleSizeChangeMain2" @current-change="handleCurrentChangeMain2"
|
|
<el-pagination @size-change="handleSizeChangeMain2" @current-change="handleCurrentChangeMain2"
|