|
@@ -50,6 +50,12 @@
|
|
<p v-if="scope.row.personnelEmail">邮箱:{{ scope.row.personnelEmail }}</p>
|
|
<p v-if="scope.row.personnelEmail">邮箱:{{ scope.row.personnelEmail }}</p>
|
|
<p v-if="scope.row.departmentName">部门:{{ scope.row.departmentName }}</p>
|
|
<p v-if="scope.row.departmentName">部门:{{ scope.row.departmentName }}</p>
|
|
<p v-if="scope.row.positionName">职位:{{ scope.row.positionName }}</p>
|
|
<p v-if="scope.row.positionName">职位:{{ scope.row.positionName }}</p>
|
|
|
|
+ <p v-if="scope.row.versionName">
|
|
|
|
+ <el-link type="primary" @click="checkVersionMessage(scope.row)">版本名称:{{ scope.row.versionName }}</el-link>
|
|
|
|
+ </p>
|
|
|
|
+ <p v-if="scope.row.versionNum">
|
|
|
|
+ <el-link type="primary" @click="checkVersionMessage(scope.row)">版本号:{{ scope.row.versionNum }}</el-link>
|
|
|
|
+ </p>
|
|
</template>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
<div v-else v-html="$commonJS.getColumnData(scope.row,item)"></div>
|
|
<div v-else v-html="$commonJS.getColumnData(scope.row,item)"></div>
|
|
@@ -257,6 +263,18 @@ export default {
|
|
message.close()
|
|
message.close()
|
|
})
|
|
})
|
|
},
|
|
},
|
|
|
|
+ //查看版本详情
|
|
|
|
+ checkVersionMessage(row){
|
|
|
|
+ if(!row.versionId){
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ this.$router.push({
|
|
|
|
+ path: '/administrator/versionDetail',
|
|
|
|
+ query: {
|
|
|
|
+ id: row.id
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ },
|
|
},
|
|
},
|
|
};
|
|
};
|
|
</script>
|
|
</script>
|