9193b93f by 任超

style:区县接入

1 parent 422ef20c
......@@ -23,6 +23,7 @@ export default {
this.queryClick()
},
handleCurrentChange (val) {
console.log(val, '222222222');
this.pageData.currentPage = val
if (this.queryClick) {
this.queryClick()
......
......@@ -150,6 +150,7 @@ export default {
this.message = error
this.$refs.msg.messageShow()
}
},
async handlDatadetails (index, row) {
let { result: res, message } = await dataReporting.getQltFwFdcqYzByCondition(row.BSM_SJSB)
......
......@@ -111,7 +111,7 @@ export default {
components: {
dataDetails,
},
data() {
data () {
return {
// 开始结束日期限制
pickerOptionsStart: {
......@@ -140,7 +140,7 @@ export default {
djlx: "", // 登记类型
jcjg: "", // 检查结果
rkjg: "", //入库结果
currentPage: 1,
currentPage: 1
},
// 校验规则
rules: {
......@@ -187,29 +187,28 @@ export default {
</el-button>
<el-button type="primary">结果</el-button>
</div>
);
},
},
)
}
}
]),
// 表格列表数据
total: 0,
data: [{}],
data: [],
},
// 分页
pageData: {
total: 0,
pageSize: 10,
current: 1,
current: 1
},
// 业务名称
statusOptions: [],
title: "",
};
statusOptions: []
}
},
methods: {
// 初始化数据
queryClick() {
getReceiveDataReportPage({ ...this.form, ...this.pageData }).then(
queryClick () {
getReceiveDataReportPage({ ...this.form, ...this.formData }).then(
(res) => {
if (res.code === 200) {
let { total, records } = res.result;
......@@ -217,22 +216,20 @@ export default {
this.tableData.data = records ? records : [];
}
}
);
)
},
// 重置
resetForm() {
resetForm () {
this.$refs.ruleForm.resetFields();
},
featchData() {
this.pageData.currentPage = 1
this.queryClick();
},
// 详情
handleEdit(row) {
this.title = row.rectypeName;
this.$refs.editLog.isShow(row);
},
},
};
featchData () {
this.pageData.currentPage = 1
this.queryClick();
}
}
}
</script>
<style scoped lang="scss">
// 引入表单整体样式
......