bug修改

fengcang
anthonyywj2 3 years ago
parent 7d76a568af
commit 9e058ff489

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

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

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

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

Loading…
Cancel
Save