|
|
@@ -76,14 +76,17 @@
|
|
|
<el-dropdown-item>
|
|
|
<kt-button label="协议历史记录" :size="overSize" type="text" perms="agreement:input:historyRecord"
|
|
|
@click="historyRecord(scope.$index, scope.row)" />
|
|
|
+ @click="historyRecord(scope.$index, scope.row)" />
|
|
|
</el-dropdown-item>
|
|
|
<el-dropdown-item>
|
|
|
<kt-button label="产品费用" :size="overSize" type="text" perms="agreement:input:productCost"
|
|
|
@click="productCost(scope.$index, scope.row)" />
|
|
|
+ @click="productCost(scope.$index, scope.row)" />
|
|
|
</el-dropdown-item>
|
|
|
<el-dropdown-item>
|
|
|
<kt-button label="承保规则" :size="overSize" type="text" perms="agreement:input:underwritingRules"
|
|
|
@click="underwritingRulesButton(scope.$index, scope.row)" />
|
|
|
+ @click="underwritingRulesButton(scope.$index, scope.row)" />
|
|
|
</el-dropdown-item>
|
|
|
</el-dropdown-menu>
|
|
|
</el-dropdown>
|
|
|
@@ -2230,6 +2233,15 @@ export default {
|
|
|
|
|
|
// 右侧列表的方法End
|
|
|
//-- formatter begin--
|
|
|
+ operatorTypeFormatter(row, column) {
|
|
|
+ let operatorType = row.operatorType;
|
|
|
+ switch (operatorType) {
|
|
|
+ case "add":
|
|
|
+ return '新增'
|
|
|
+ case "update":
|
|
|
+ return '修改'
|
|
|
+ }
|
|
|
+ },
|
|
|
operatorTypeFormatter(row, column) {
|
|
|
let operatorType = row.operatorType;
|
|
|
switch (operatorType) {
|