|
@@ -209,10 +209,17 @@ const startCreat = () => {
|
|
|
} else if (props.tableType === "dianjian") {
|
|
|
commonTableType.value = "OP_CHECK";
|
|
|
nextTick(() => {
|
|
|
- commonTableRef.value?.startSelect();
|
|
|
+ commonTableRef.value?.startSelect({
|
|
|
+ operationId: route.params.id
|
|
|
+ });
|
|
|
commonTableRef.value?.mergeOption({
|
|
|
selection: true,
|
|
|
reserveSelection: true,
|
|
|
+ header: false,
|
|
|
+ selectable: function (row, index) {
|
|
|
+ return row.isSelect;
|
|
|
+
|
|
|
+ },
|
|
|
});
|
|
|
});
|
|
|
} else if (props.tableType === "ESOP") {
|