|
@@ -34,9 +34,10 @@
|
|
|
? 'cursor: pointer;color:red;float:left;display:inline-block;text-align:left;width: 90%;'
|
|
|
: 'cursor: pointer;color:blue;float:left;display:inline-block;text-align:left;width: 90%;'
|
|
|
"
|
|
|
- ><span style="float: left; color: #afb2d8;margin-right:5px"
|
|
|
- >•</span
|
|
|
- >{{ scope.row.woTitle }}</span
|
|
|
+ >
|
|
|
+ <!-- <span style="float: left; color: #afb2d8;margin-right:5px"
|
|
|
+ >•</span> -->
|
|
|
+ {{ scope.row.woTitle }}</span
|
|
|
>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -45,9 +46,10 @@
|
|
|
label="流程名称"
|
|
|
align="center"
|
|
|
width="180"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
- <span>{{ scope.row.procName }}</span>
|
|
|
+ <span :title="scope.row.procName">{{ scope.row.procName }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
@@ -118,19 +120,20 @@
|
|
|
>
|
|
|
<el-table-column prop="woTitle" label="工单标题" align="center" :show-overflow-tooltip="true">
|
|
|
<template slot-scope="scope">
|
|
|
- <span style="float: left; color: #afb2d8;margin-right:5px"
|
|
|
+ <!-- <span style="float: left; color: #afb2d8;margin-right:5px"
|
|
|
>•</span
|
|
|
- >
|
|
|
+ > -->
|
|
|
<span
|
|
|
@click="RowDoneTitle(scope.row)"
|
|
|
+ :title="scope.row.woTitle"
|
|
|
style="cursor: pointer; color: blue; display: inline-block;float:left;"
|
|
|
>{{ scope.row.woTitle }}</span
|
|
|
>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="procName" label="流程名称" align="center" width="180">
|
|
|
+ <el-table-column prop="procName" label="流程名称" align="center" width="180" :show-overflow-tooltip="true">
|
|
|
<template slot-scope="scope">
|
|
|
- <span>{{ scope.row.procName }}</span>
|
|
|
+ <span :title="scope.row.procName">{{ scope.row.procName }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|
|
@@ -180,21 +183,22 @@
|
|
|
style="width: 100%; font-size: 16px; background: '#FaFaFa'"
|
|
|
height="442px"
|
|
|
>
|
|
|
- <el-table-column prop="woTitle" label="工单标题" align="center" :show-overflow-tooltip="true">
|
|
|
+ <el-table-column prop="woTitle" label="工单标题" align="center" :show-overflow-tooltip="true">
|
|
|
<template slot-scope="scope">
|
|
|
- <span style="float: left; color: #afb2d8;margin-right:5px"
|
|
|
+ <!-- <span style="float: left; color: #afb2d8;margin-right:5px"
|
|
|
>•</span
|
|
|
- >
|
|
|
+ > -->
|
|
|
<span
|
|
|
+ :title="scope.row.woTitle"
|
|
|
@click="RowlaunchTitle(scope.row)"
|
|
|
style="cursor: pointer; color: blue; float: left"
|
|
|
>{{ scope.row.woTitle }}</span
|
|
|
>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="procName" label="流程名称" align="center">
|
|
|
+ <el-table-column prop="procName" label="流程名称" align="center" :show-overflow-tooltip="true">
|
|
|
<template slot-scope="scope">
|
|
|
- <span>{{ scope.row.procName }}</span>
|
|
|
+ <span :title="scope.row.procName">{{ scope.row.procName }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|