6b3d617c by 任超

style:区县接入

1 parent e9a49a21
......@@ -87,7 +87,7 @@ import { getDataReportPage } from "@/api/sbbwcx.js";
export default {
name: "jsbwcx",
mixins: [tableMixin],
data() {
data () {
return {
// 开始结束日期限制
pickerOptionsStart: {
......@@ -141,7 +141,7 @@ export default {
type: "index",
width: "50",
index: this.indexMethod,
},
},
]
.concat(data.columns())
.concat([
......@@ -166,13 +166,13 @@ export default {
},
]),
// 表格列表数据
total: 0,
total: 0,
data: [{}],
},
// 分页
pageData: {
total: 0,
pageSize: 15,
pageSize: 10,
current: 1,
},
// 业务名称
......@@ -200,7 +200,7 @@ export default {
},
methods: {
// 初始化数据
queryClick() {
queryClick () {
getDataReportPage({ ...this.form, ...this.pageData }).then((res) => {
if (res.code === 200) {
let { total, records } = res.result;
......@@ -210,14 +210,14 @@ export default {
});
},
// 重置
resetForm() {
resetForm () {
this.$refs.ruleForm.resetFields();
},
featchData() {
featchData () {
this.queryClick();
},
// 详情
handleEdit() {
handleEdit () {
this.$popupDialog(
"业务报文",
"components/JsonEditor/index",
......