|
|
@@ -149,6 +149,10 @@
|
|
|
<el-table-column min-width="180" align="center" label="创建时间" prop="createDate"></el-table-column>
|
|
|
<el-table-column label="操作" width="180" align="center" fixed="right">
|
|
|
<template #default="scope">
|
|
|
+ <@shiro.hasPermission name="tf:enterpriseProducts:view">
|
|
|
+ <el-link type="primary" :underline="false" @click="openlist(scope.row.id,scope.row.enterpriseName)">产品管理</el-link>
|
|
|
+ </@shiro.hasPermission>
|
|
|
+
|
|
|
<@shiro.hasPermission name="tf:enterprise:update">
|
|
|
<el-link type="primary" :underline="false" @click="save(scope.row.id)">编辑</el-link>
|
|
|
</@shiro.hasPermission>
|
|
|
@@ -411,6 +415,14 @@
|
|
|
ms.util.openSystemUrl("/tf/enterprise/form.do");
|
|
|
}
|
|
|
},
|
|
|
+ //产品管理
|
|
|
+ openlist:function(id,name){
|
|
|
+ window.parent.indexVue.open({
|
|
|
+ id: "E-"+id,
|
|
|
+ modelTitle: "产品管理-"+name,
|
|
|
+ modelUrl: "/tf/enterpriseProducts/index.do?id=" + id,
|
|
|
+ })
|
|
|
+ },
|
|
|
|
|
|
//pageSize改变时会触发
|
|
|
sizeChange:function(pagesize) {
|