Browse Source

明细+明细查询,字段设置bug修改

noToken
安虹睿 2 years ago
parent
commit
1c3829874e
  1. 5
      PC/InterFace.Dash/src/components/commonTabel-drawer/index.vue
  2. 3
      PC/InterFace.Dash/src/components/filterForDetailPage/index.vue
  3. 2
      PC/InterFace.Dash/src/mixins/TableMixins.js
  4. 2
      PC/InterFace.Dash/src/views/menuList/AsnMstr.vue
  5. 1
      PC/InterFace.Dash/src/views/menuList/PoMstr.vue
  6. 1
      PC/InterFace.Dash/src/views/menuList/ReceiptMstr.vue
  7. 1
      PC/InterFace.Dash/src/views/menuList/ReturnMstr.vue

5
PC/InterFace.Dash/src/components/commonTabel-drawer/index.vue

@ -69,6 +69,7 @@
@rowDrop="rowDrop"
:searchOverallCoverHeight="'calc(100vh - 345px)'"
:rowSource="'detail_api'"
:rowMaxHeight="rowMaxHeight"
:totalCount="totalCountForDetail"
:MaxResultCount="MaxResultCount"
@sortChange="sortChangeForDetail"
@ -179,6 +180,10 @@ export default {
LoadingMixins,
],
props: {
rowMaxHeight:{
type:String,
default:'calc(90vh - 450px)'
},
//
buttonOperationList_left:{
type: Array,

3
PC/InterFace.Dash/src/components/filterForDetailPage/index.vue

@ -229,6 +229,7 @@ mounted(){
},
methods: {
rowDropForDetail(data,type){
this.listColumns = data
this.$emit("rowDropForDetail", data,type)
},
//
@ -262,7 +263,7 @@ methods: {
//
let _parentName = this.URLOption_detailList.substr(0,this.URLOption_detailList.indexOf('/'))
let _Columns = this.initApiColumnsForDto(res.items[0],_parentName)
this.listColumns = this.initTableColumns(_Columns)
this.listColumns = this.initTableColumns(_Columns,'detailPage_api')
//
if(res){
this.Loading.tableLoading = false

2
PC/InterFace.Dash/src/mixins/TableMixins.js

@ -189,7 +189,7 @@ export const tableMixins = {
.then(res=>{
// 表头处理
let _parentName = this.URLOption_detailList.substr(0,this.URLOption_detailList.indexOf('/'))
this.apiColumns_DetailsTable = this.initTableColumns(this.initApiColumnsForDto(res.details[0],_parentName))
this.apiColumns_DetailsTable = this.initTableColumns(this.initApiColumnsForDto(res.details[0],_parentName),'detail_api')
// 打印使用的全部数据存储
this.tableDataDetails = JSON.parse(JSON.stringify(res))
this.propsData = res

2
PC/InterFace.Dash/src/views/menuList/AsnMstr.vue

@ -48,9 +48,7 @@
:buttonOperationList_left="operationButtonsDetail"
></curren-Drawer>
<!-- 明细查询页面 -->
<!-- :listColumns="apiColumns_DetailsPage" -->
<filterForDetailPage
@rowDropForDetail="rowDrop"
v-if="filterForDetailShow"
:parentColumns="apiColumns_Table"
@closeDialog="changeFilterForDetailShow"

1
PC/InterFace.Dash/src/views/menuList/PoMstr.vue

@ -49,7 +49,6 @@
></curren-Drawer>
<!-- 明细查询页面 -->
<filterForDetailPage
@rowDropForDetail="rowDrop"
v-if="filterForDetailShow"
:parentColumns="apiColumns_Table"
@closeDialog="changeFilterForDetailShow"

1
PC/InterFace.Dash/src/views/menuList/ReceiptMstr.vue

@ -49,7 +49,6 @@
></curren-Drawer>
<!-- 明细查询页面 -->
<filterForDetailPage
@rowDropForDetail="rowDrop"
v-if="filterForDetailShow"
:parentColumns="apiColumns_Table"
@closeDialog="changeFilterForDetailShow"

1
PC/InterFace.Dash/src/views/menuList/ReturnMstr.vue

@ -49,7 +49,6 @@
></curren-Drawer>
<!-- 明细查询页面 -->
<filterForDetailPage
@rowDropForDetail="rowDrop"
v-if="filterForDetailShow"
:parentColumns="apiColumns_Table"
@closeDialog="changeFilterForDetailShow"

Loading…
Cancel
Save