Commit e8323849 by liupeng

修改了页面样式

parent 76f5bd02
......@@ -10,7 +10,8 @@
v-for="item in bottonData"
:key="item.xzqhdmSj"
@click="searchCaseByProvince(item)"
type="primary" plain
type="primary"
plain
>{{ item.xzqhdmSj + " " + item.count }}</el-button
>
</div>
......@@ -103,6 +104,7 @@ export default {
tableLoading: false,
bottonData: [],
tableData: [],
tableArr: [],
currentPage: 1,
propdefaultFormThead: [
{
......@@ -152,22 +154,18 @@ export default {
var params = {
xszajbh: this.xszajbh,
cbxgfwbzh: this.cbxgfwbzh,
}
};
getQgAsjxxByXszajbh(params).then((res) => {
this.tableData = res.data.rows;
this.tableArr = res.data.rows;
this.bottonData = res.data.qucsj;
console.log(res);
});
},
searchCaseByProvince(item) {
var params = {
xszajbh: item.xszajbh,
cbxgfwbzh: item.cbxgfwbzh,
}
getQgAsjxxByXszajbh(params).then((res) => {
console.log(res);
this.tableData = res.data.qucsj;
});
let str = item.xzqhdmSj;
let arr = this.tableArr.filter((i) => i.xzqhdmSj.indexOf(str) >= 0);
this.tableData = arr;
},
handleSizeChange() {},
handleCurrentChange() {},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment