bug修改

fengcang
anthonyywj2 3 years ago
parent 7d76a568af
commit 9e058ff489

@ -173,13 +173,6 @@
>编辑 >编辑
</el-button </el-button
> >
<!-- <el-button-->
<!-- type="text"-->
<!-- size="small"-->
<!-- @click.native.stop="deleteClick(scope.row)"-->
<!-- >删除-->
<!-- </el-button-->
<!-- >-->
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@ -410,7 +403,7 @@ export default {
, ,
handleModifyClick(row) { handleModifyClick(row) {
this.changeEdit = 1; this.changeEdit = 1;
this.editQuery = row; this.editQuery = JSON.parse(JSON.stringify(row));
this.editChangeTypeVisible = true; this.editChangeTypeVisible = true;
this.getBusTypes(); this.getBusTypes();
} }

@ -161,7 +161,7 @@
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
layout="prev, pager, next" layout="prev, pager, next"
:total="total" :total="total"
:current-page="filterQuery.page" :current-page="query.page"
> >
</el-pagination> </el-pagination>
<!--仓库弹窗编辑页面--> <!--仓库弹窗编辑页面-->

@ -26,11 +26,6 @@
</el-row> </el-row>
</el-descriptions-item> </el-descriptions-item>
</el-descriptions>
<el-descriptions class="margin-top" title="上传至UDI自助平台单据" :column="1" :size="100" style="margin-top: 40px"
border>
<el-descriptions-item> <el-descriptions-item>
<template slot="label"> <template slot="label">
参数设置 参数设置
@ -54,6 +49,12 @@
</el-row> </el-row>
</el-descriptions-item> </el-descriptions-item>
</el-descriptions>
<el-descriptions class="margin-top" title="上传至UDI自助平台单据" :column="1" :size="100" style="margin-top: 40px"
border>
<el-descriptions-item> <el-descriptions-item>
<template slot="label"> <template slot="label">

@ -359,6 +359,7 @@
@current-change="moduleHandleCurrentChange" @current-change="moduleHandleCurrentChange"
layout="prev, pager, next" layout="prev, pager, next"
:total="selectTemplateTotal" :total="selectTemplateTotal"
:current-page="selectTemplateQuery.page"
> >
</el-pagination> </el-pagination>
</el-form> </el-form>
@ -442,7 +443,7 @@ export default {
name: "", name: "",
module: null, module: null,
page: 1, page: 1,
limit: 20 limit: 10
}, },
centerDialogVisible: false, centerDialogVisible: false,
selectTemplateList: [], selectTemplateList: [],
@ -451,7 +452,7 @@ export default {
moduleSelectQuery: { moduleSelectQuery: {
name: "", name: "",
page: 1, page: 1,
limit: 20 limit: 10
}, },
moduleSelectList: [], moduleSelectList: [],
moduleSelectTotal: 0, moduleSelectTotal: 0,
@ -508,8 +509,8 @@ export default {
this.getList(); this.getList();
}, },
moduleHandleCurrentChange(val) { moduleHandleCurrentChange(val) {
this.moduleQuery.page = val; this.selectTemplateQuery.page = val;
this.getModuleList(); this.selectTemplateGetList();
}, },
getList() { getList() {
// this.loading = true; // this.loading = true;
@ -561,7 +562,7 @@ export default {
}, },
getModuleList() { getModuleList() {
this.moduleLoading = true; this.moduleLoading = true;
systemPDFModuleList(this.moduleQuery) systemPDFModuleList(this.selectTemplateQuery)
.then(response => { .then(response => {
this.moduleLoading = false; this.moduleLoading = false;
this.moduleList = response.data.list || []; this.moduleList = response.data.list || [];
@ -621,7 +622,7 @@ export default {
type: 1, type: 1,
name: "", name: "",
page: 1, page: 1,
limit: 20 limit: 10
}; };
console.log("this.selectTemplateQuery.busRlId =" + this.selectTemplateQuery.busRlId); console.log("this.selectTemplateQuery.busRlId =" + this.selectTemplateQuery.busRlId);

Loading…
Cancel
Save