6b3d617c by 任超

style:区县接入

1 parent e9a49a21
...@@ -87,7 +87,7 @@ import { getDataReportPage } from "@/api/sbbwcx.js"; ...@@ -87,7 +87,7 @@ import { getDataReportPage } from "@/api/sbbwcx.js";
87 export default { 87 export default {
88 name: "jsbwcx", 88 name: "jsbwcx",
89 mixins: [tableMixin], 89 mixins: [tableMixin],
90 data() { 90 data () {
91 return { 91 return {
92 // 开始结束日期限制 92 // 开始结束日期限制
93 pickerOptionsStart: { 93 pickerOptionsStart: {
...@@ -141,7 +141,7 @@ export default { ...@@ -141,7 +141,7 @@ export default {
141 type: "index", 141 type: "index",
142 width: "50", 142 width: "50",
143 index: this.indexMethod, 143 index: this.indexMethod,
144 }, 144 },
145 ] 145 ]
146 .concat(data.columns()) 146 .concat(data.columns())
147 .concat([ 147 .concat([
...@@ -166,13 +166,13 @@ export default { ...@@ -166,13 +166,13 @@ export default {
166 }, 166 },
167 ]), 167 ]),
168 // 表格列表数据 168 // 表格列表数据
169 total: 0, 169 total: 0,
170 data: [{}], 170 data: [{}],
171 }, 171 },
172 // 分页 172 // 分页
173 pageData: { 173 pageData: {
174 total: 0, 174 total: 0,
175 pageSize: 15, 175 pageSize: 10,
176 current: 1, 176 current: 1,
177 }, 177 },
178 // 业务名称 178 // 业务名称
...@@ -200,7 +200,7 @@ export default { ...@@ -200,7 +200,7 @@ export default {
200 }, 200 },
201 methods: { 201 methods: {
202 // 初始化数据 202 // 初始化数据
203 queryClick() { 203 queryClick () {
204 getDataReportPage({ ...this.form, ...this.pageData }).then((res) => { 204 getDataReportPage({ ...this.form, ...this.pageData }).then((res) => {
205 if (res.code === 200) { 205 if (res.code === 200) {
206 let { total, records } = res.result; 206 let { total, records } = res.result;
...@@ -210,14 +210,14 @@ export default { ...@@ -210,14 +210,14 @@ export default {
210 }); 210 });
211 }, 211 },
212 // 重置 212 // 重置
213 resetForm() { 213 resetForm () {
214 this.$refs.ruleForm.resetFields(); 214 this.$refs.ruleForm.resetFields();
215 }, 215 },
216 featchData() { 216 featchData () {
217 this.queryClick(); 217 this.queryClick();
218 }, 218 },
219 // 详情 219 // 详情
220 handleEdit() { 220 handleEdit () {
221 this.$popupDialog( 221 this.$popupDialog(
222 "业务报文", 222 "业务报文",
223 "components/JsonEditor/index", 223 "components/JsonEditor/index",
......