|
@@ -7,14 +7,14 @@
|
|
|
<a-row :gutter="24">
|
|
|
<a-col :md="8" :sm="8" :xxl="6">
|
|
|
<!-- <a-form-item label="项目名称"> -->
|
|
|
- <selectTable :projectId.sync="projectId"></selectTable>
|
|
|
+ <selectTable :projectId.sync="projectId" ref="selectTable"></selectTable>
|
|
|
</a-col>
|
|
|
|
|
|
<a-col :md="8" :sm="8" :xxl="6">
|
|
|
<a-form-item label="定向包名称">
|
|
|
<a-input
|
|
|
v-decorator="['name']" type="text"
|
|
|
- placeholder="请输入"
|
|
|
+ placeholder="请输入需要搜索的定向包名称"
|
|
|
/>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
@@ -761,7 +761,7 @@ export default {
|
|
|
const paramsData = {
|
|
|
templateName: data.name,
|
|
|
projectId: this.projectId,
|
|
|
- platformOs: data.status,
|
|
|
+ platformOs: data.status === 0 ? null : data.status,
|
|
|
pageNo: this.ipagination.current,
|
|
|
pageSize: this.ipagination.pageSize
|
|
|
};
|
|
@@ -942,6 +942,8 @@ export default {
|
|
|
this.form.resetFields();
|
|
|
this.projectId = undefined;
|
|
|
this.handleGetTableList({});
|
|
|
+ this.$refs.selectTable.keyValue = "";
|
|
|
+ this.$refs.selectTable.getData()
|
|
|
},
|
|
|
}
|
|
|
};
|