|
@@ -4,21 +4,17 @@
|
|
|
<el-row :style="{ padding: '12px' }">
|
|
|
<el-col :span="12">
|
|
|
<i class="el-icon-search"></i>
|
|
|
- <span :style="{ padding: '4px' }">筛选搜索</span>
|
|
|
+ <span :style="{ padding: '4px' }">筛选发行商 </span>
|
|
|
</el-col>
|
|
|
<el-col :span="12" :style="{ textAlign: 'right' }">
|
|
|
- <el-button>重置</el-button>
|
|
|
+ <el-button @click="empty">重置</el-button>
|
|
|
<el-button type="primary" @click="search">查询搜索</el-button>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-row :style="{ marginLeft: '32px' }">
|
|
|
<el-form inline>
|
|
|
- <el-form-item label="发行方编号: ">
|
|
|
- <el-input
|
|
|
- placeholder="请输入发行方编号"
|
|
|
- clearable
|
|
|
- v-model="issuerId"
|
|
|
- ></el-input>
|
|
|
+ <el-form-item label="发行方ID: ">
|
|
|
+ <el-input placeholder="筛选发行方ID" clearable v-model="issuerID"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
</el-row>
|
|
@@ -84,7 +80,7 @@ export default {
|
|
|
tableData: [], // 具体数据
|
|
|
total: 1, // 数据个数
|
|
|
|
|
|
- issuerId:'' //发行商ID
|
|
|
+ issuerID:'' //发行商ID
|
|
|
|
|
|
};
|
|
|
},
|
|
@@ -92,6 +88,9 @@ export default {
|
|
|
this.getpublishList();
|
|
|
},
|
|
|
methods: {
|
|
|
+ empty(){
|
|
|
+ this.issuerID=''
|
|
|
+ },
|
|
|
search() {
|
|
|
if(this.issuerId){
|
|
|
searchPublish(issuerId).then((res)=>{
|