Browse Source

修复部分显示问题

dev
qb 1 month ago
parent
commit
7de2d1b8b9
  1. 1
      src/styles/common.scss
  2. 1629
      src/views/distribution/deliverylist/distributionDeliveryListedt.vue
  3. 2
      src/views/warehouse/warehouseWaybill.vue
  4. 18
      src/views/warehouse/warehousingentry/warehouseWarehousingEntry.vue

1
src/styles/common.scss

@ -13,6 +13,7 @@
.el-card__body {
padding: 5px !important ;
height: 100%;
overflow: scroll;
}
}
.avue-crud__pagination {

1629
src/views/distribution/deliverylist/distributionDeliveryListedt.vue

File diff suppressed because it is too large Load Diff

2
src/views/warehouse/warehouseWaybill.vue

@ -484,7 +484,7 @@ export default {
{
prop: 'brand',
label: '品牌',
type: 3,
type: 2,
values: '',
width: '130',
checkarr: [],

18
src/views/warehouse/warehousingentry/warehouseWarehousingEntry.vue

@ -230,7 +230,14 @@ import { mapGetters, mapMutations } from 'vuex';
import WarehouseWarehousingDetailSub from '@/views/warehouse/warehousingentry/warehouseWarehousingDetailSub.vue';
import { exportBlob } from '@/api/common';
import { getToken } from '@/utils/auth';
import { downloadXls, handleClearTableQuery, setNodeHeight, getObjType } from '@/utils/util';
import {
downloadXls,
handleClearTableQuery,
setNodeHeight,
getObjType,
handleSelectQuery,
handleInputQuery,
} from '@/utils/util';
import dayjs from 'dayjs';
import { getDictionaryBiz } from '@/api/system/dict';
@ -620,10 +627,7 @@ export default {
console.log(index, row);
},
selectsc(index, row) {
console.log(index, row);
if (row.prop === 'conditionsName') {
this.query['conditions'] = index;
}
handleSelectQuery(index, row, this.query);
this.onLoad(this.page);
},
timesc(index, row) {
@ -638,9 +642,7 @@ export default {
this.onLoad(this.page);
},
inputsc(index, row) {
console.log(index, row);
// console.log(index, row.prop);
this.query[row.prop] = index;
handleInputQuery(index, row, this.query);
this.onLoad(this.page);
},
handleEditOwn(row) {

Loading…
Cancel
Save