Browse Source

修复部分bug

dev
qb 14 hours ago
parent
commit
38fb9a5a0c
  1. 2
      src/option/finance/WaybillAudit.js
  2. 10
      src/page/login/index.vue
  3. 59
      src/views/distribution/deliverylist/distributionDeliveryListedt.vue

2
src/option/finance/WaybillAudit.js

@ -843,7 +843,7 @@ export const columnList = [
{
prop: 'signUserName',
label: '签收人',
type: 1,
type: 2,
values: '',
width: '150',
checkarr: [],

10
src/page/login/index.vue

@ -31,9 +31,9 @@
</div>
</div>
</div>
<div class="index_footer">
<p>&copy;2024 货无忧 All Rights Reserved 成都数联物科信息技术有限公司</p>
</div>
<div class="index_footer">
<p>© 2023-2025 由成都数联物科信息技术有限公司提供技术支持</p>
</div>
</div>
</template>
<script>
@ -148,11 +148,11 @@ export default {
<style lang="scss">
@import '@/styles/login.scss';
.index_footer{
.index_footer {
position: fixed;
bottom: 0;
width: 100%;
p{
p {
text-align: center;
color: #999;
}

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

@ -219,7 +219,7 @@
@inputTxt="inputscPackage"
@timeCheck="timesc"
@btnCheck="btnsc"
@selectCheck="selectsc"
@selectCheck="selectPackage"
@selection="selectionChange"
>
<template #default="slotProps">
@ -981,7 +981,7 @@ import { compressImageBlob } from '@/components/IMGcompressor/imgcompressor.js';
import { showOrderPackgeCode } from '@/api/distribution/distributionStockArticle';
import { exportBlob } from '@/api/common';
import DeleteWarningDialog from '@/components/popupnotification/popupnotification.vue';
import { downloadXls } from '@/utils/util';
import { downloadXls, handleSelectQuery } from '@/utils/util';
import { dateNow } from '@/utils/date';
import NProgress from 'nprogress';
import { showInventoryPackgeCode } from '@/api/distribution/distributionStockList';
@ -1795,10 +1795,19 @@ export default {
{
prop: 'orderPackageGroundingStatusName',
label: '上架状态',
type: 1,
type: 3,
values: '',
width: '80',
checkarr: [],
checkarr: [
{
label: '待上架',
value: '10',
},
{
label: '已上架',
value: '20',
},
],
fixed: false,
sortable: true,
head: false,
@ -1806,25 +1815,34 @@ export default {
{
prop: 'orderPackageStockupStatusName',
label: '备货状态',
type: 1,
values: '',
width: '80',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'orderPackageReservationStatusName',
label: '预约状态',
type: 1,
type: 3,
values: '',
width: '80',
checkarr: [],
checkarr: [
{
label: '待备货',
value: '10',
},
{
label: '已备货',
value: '20',
},
],
fixed: false,
sortable: true,
head: false,
},
// {
// prop: 'orderPackageReservationStatusName',
// label: '',
// type: 1,
// values: '',
// width: '80',
// checkarr: [],
// fixed: false,
// sortable: true,
// head: false,
// },
{
prop: 'orderPackageLoadingStatusName',
label: '装车状态',
@ -3758,6 +3776,13 @@ export default {
this.handlePackage(this.page);
},
selectPackage(index, row) {
console.log('index', index);
console.log('row', row);
handleSelectQuery(index, row, this.packageQuery);
this.handlePackage(this.page);
},
inputscClient(index, row) {
console.log('index', index);
console.log('row', row);

Loading…
Cancel
Save