|
@@ -98,7 +98,7 @@
|
|
|
<div
|
|
|
v-if='row.glsmsImage'
|
|
|
style='cursor:pointer;color: #0091ff;'
|
|
|
- @click.prevent='clickPic(row.glsmsImage)'
|
|
|
+ @click.stop='clickPic(row.glsmsImage)'
|
|
|
>{{row.glsmsImage.length+'张'}}</div>
|
|
|
<div v-else>{{'---'}}</div>
|
|
|
</template>
|
|
@@ -111,7 +111,8 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column prop='wonum' label='工单编号' show-overflow-tooltip resizable width='80'>
|
|
|
<template slot-scope='{row}'>
|
|
|
- <div style='cursor:pointer;color: #0091ff;'>{{row.wonum || '--'}}</div>
|
|
|
+ <div v-if='row.wonum' @click.stop='staff' style='cursor:pointer;color: #0091ff;'>{{row.wonum}}</div>
|
|
|
+ <div v-else>{{'--'}}</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
@@ -179,6 +180,10 @@ export default {
|
|
|
window.open(`http://gcgl.wanda.cn/maximo/ui/?event=loadapp&value=JXWO&uniqueid=${row.workorderid}`, true)
|
|
|
}
|
|
|
},
|
|
|
+ //跳转工单编号
|
|
|
+ staff(row) {
|
|
|
+ window.open(`http://gcgl.wanda.cn/maximo/ui/?event=loadapp&value=JXWO&uniqueid=${row.wonum}`, true)
|
|
|
+ },
|
|
|
//多余输入框监听
|
|
|
confirm(wonum) {
|
|
|
this.wonum = wonum
|