parent
dade120602
commit
e842bb88d8
|
@ -271,6 +271,10 @@ export default {
|
|||
type: Boolean,
|
||||
default: false,
|
||||
},
|
||||
isReferenceTable: {
|
||||
type: Boolean,
|
||||
default: false,
|
||||
},
|
||||
selectNodeIds: Array,
|
||||
selectProjectId: {
|
||||
type: String,
|
||||
|
@ -462,8 +466,10 @@ export default {
|
|||
if (!this.projectName || this.projectName === "") {
|
||||
this.getProjectName();
|
||||
}
|
||||
this.operators = this.unTrashOperators;
|
||||
this.buttons = this.unTrashButtons;
|
||||
if(!this.isReferenceTable){
|
||||
this.operators = this.unTrashOperators;
|
||||
this.buttons = this.unTrashButtons;
|
||||
}
|
||||
this.condition.filters = {status: ["Prepare", "Underway", "Completed"]};
|
||||
let orderArr = this.getSortField();
|
||||
if (orderArr) {
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
:select-project-id="projectId"
|
||||
:referenced="true"
|
||||
:trash-enable="false"
|
||||
:is-reference-table="true"
|
||||
@selection="setData"
|
||||
:custom-num="customNum"
|
||||
ref="apiScenarioList"/>
|
||||
|
|
Loading…
Reference in New Issue