qb 7 months ago
parent
commit
4c17c2f999
  1. 22
      src/api/distribution/SeparateTheList.js
  2. 76
      src/components/Tableexportcomponent/Tableexportcomponent.vue
  3. 137
      src/components/popupnotification/popupnotification.vue
  4. 47
      src/option/distribution/SeparateTheList.js
  5. 191
      src/option/distribution/SeparateTheListInfo.js
  6. 10
      src/views/basicdata/brand/basicClient.vue
  7. 145
      src/views/distribution/deliverylist/distributionDeliveryListedt.vue
  8. 102
      src/views/distribution/inventory/delivery/SeparateTheList.vue
  9. 41
      src/views/distribution/inventory/delivery/SeparateTheListInfo.vue
  10. 21
      src/views/distribution/inventory/distrilbutionBillLadingList.vue
  11. 29
      src/views/financialsector/CustomerBaseprice.vue

22
src/api/distribution/SeparateTheList.js

@ -35,10 +35,18 @@ export const $_canceltask = params => {
};
// 子任务详情
export const $_gettaskdetail= params => {
return request({
url: '/api/logpm-distribution/split-order-task/get-task-detail',
method: 'get',
params,
});
};
export const $_gettaskdetail = params => {
return request({
url: '/api/logpm-distribution/split-order-task/get-task-detail',
method: 'get',
params,
});
};
// 撤销总任务
export const $_cancelalltask = params => {
return request({
url: '/api/logpm-distribution/split-order-task/cancel-all-task',
method: 'post',
params,
});
};

76
src/components/Tableexportcomponent/Tableexportcomponent.vue

@ -1,6 +1,6 @@
<template>
<div class="el_TablePage">
<span> 表格导出名称 </span>
<span>表格导出名称</span>
<el-input
v-model="exportFileName"
placeholder="请输入导出的表格名称"
@ -11,17 +11,12 @@
:data="transferData"
:titles="['可选字段', '已选字段']"
:filterable="true"
value-key="prop"
:props="{
key: 'prop',
label: 'label',
}"
>
</el-transfer>
:props="transferProps"
/>
<div class="el_TablePage_btn">
<el-button type="primary" @click="exportToExcel">
<el-icon><Download /></el-icon></el-button
>
<el-icon><Download /></el-icon>
</el-button>
</div>
</div>
</template>
@ -30,6 +25,8 @@
import { ref, computed } from 'vue';
import { ElMessage } from 'element-plus';
import * as XLSX from 'xlsx';
import { Download } from '@element-plus/icons-vue';
//
const props = defineProps({
data: {
@ -42,26 +39,44 @@ const props = defineProps({
},
});
const index = props.menuData.findIndex(item => item.label === '序号');
if (index !== -1) {
props.menuData.splice(index, 1);
}
// menuData 便 setup
const menuData = ref([...props.menuData]);
//
const removeColumn = (columnLabel) => {
const index = menuData.value.findIndex(item => item.label === columnLabel);
if (index !== -1) {
menuData.value.splice(index, 1);
}
};
// ''
removeColumn('序号');
removeColumn('操作');
removeColumn('复选框');
const exportFileName = ref('');
//
const checkedColumns = ref([]);
// el-transfer
const transferData = computed(() => {
if (Array.isArray(props.menuData)) {
return props.menuData.map(item => ({
if (Array.isArray(menuData.value)) {
return menuData.value.map(item => ({
...item,
key: item.prop,
}));
} else {
console.error('menuData 不是一个数组:', props.menuData);
console.error('menuData 不是一个数组:', menuData.value);
return [];
}
});
// el-transfer props
const transferProps = {
key: 'key',
label: 'label',
};
// Excel
const exportToExcel = () => {
if (checkedColumns.value.length === 0) {
ElMessage.warning('请选择要导出的字段');
@ -74,8 +89,9 @@ const exportToExcel = () => {
});
return;
}
const selectedColumns = transferData.value.filter(item =>
checkedColumns.value.includes(item.prop)
checkedColumns.value.includes(item.key)
);
const headers = selectedColumns.map(col => col.label);
const fields = selectedColumns.map(col => col.prop);
@ -114,32 +130,20 @@ const fillEmptyCells = (data) => {
const rowCount = data.length;
const colCount = data[0].length;
//
for (let col = 0; col < colCount; col++) {
let lastNonEmptyValue = '';
let inFillSection = false;
for (let row = 0; row < rowCount; row++) {
if (data[row][0] !== '') { // A
inFillSection = true;
if (data[row][col] !== '') { //
lastNonEmptyValue = data[row][col];
} else if (lastNonEmptyValue !== '') { //
data[row][col] = lastNonEmptyValue; //
}
} else if (inFillSection) { // A
if (lastNonEmptyValue !== '') {
data[row][col] = lastNonEmptyValue; //
}
} else { // A
lastNonEmptyValue = '';
inFillSection = false;
if (data[row][col] !== '') {
lastNonEmptyValue = data[row][col];
} else {
data[row][col] = lastNonEmptyValue;
}
}
}
return data;
};
//
const applyStyles = (worksheet, data) => {
const rowCount = data.length;
@ -195,4 +199,4 @@ const applyStyles = (worksheet, data) => {
text-align: right;
margin-top: 10px;
}
</style>
</style>

137
src/components/popupnotification/popupnotification.vue

@ -0,0 +1,137 @@
<template>
<div class="popupnotification">
<el-dialog
v-model="props.modelValue"
v-bind="{
width,
closeOnClickModal,
showClose,
}"
>
<!-- 标题 -->
<template #title>
<div class="el_dialog_title">
<el-icon><WarnTriangleFilled /></el-icon>
<span>{{ title }}</span>
</div>
</template>
<el-text class="mx-1" size="large"
><strong>仔细阅读</strong>以下内容此操作<strong>不可撤销</strong></el-text
>
<!-- 内容主体 -->
<div class="el_content">
<el-icon class="el_content_icon"><InfoFilled /></el-icon>
<slot name="content"></slot>
</div>
<!-- 页脚 -->
<template #footer>
<div class="dialog-footer">
<el-button @click="onClose">{{ cancelButtonText }}</el-button>
<el-button @click="onConfirm" class="el_delte_button" type="primary">
<el-icon><QuestionFilled /></el-icon>{{ confirmButtonText }}
</el-button>
</div>
</template>
</el-dialog>
</div>
</template>
<script setup>
import { defineProps, defineEmits } from 'vue';
const props = defineProps({
width: {
type: String,
default: '500',
validator: value => !isNaN(Number(value)), //
},
closeOnClickModal: {
type: Boolean,
default: false,
},
showClose: {
type: Boolean,
default: false,
},
title: {
type: String,
default: '删除警告提示!',
},
cancelButtonText: {
type: String,
default: '关闭窗口',
},
confirmButtonText: {
type: String,
default: '确定删除',
},
confirmLoading: {
type: Boolean,
default: true,
},
modelValue: {
type: Boolean,
default: false,
},
});
const emit = defineEmits(['close', 'confirm']);
const onClose = () => {
emit('close');
};
const onConfirm = () => {
emit('confirm');
};
</script>
<style scoped lang="scss">
.popupnotification {
:deep(.el-dialog) {
border: 1px dashed #f44336;
border-radius: 6px;
.el_dialog_title {
display: flex;
box-shadow: 0px 1px #f44336 !important;
align-items: center;
border-bottom: 1px solid #ff5722;
border-radius: 1.25em;
padding: 0 0.25em;
i {
color: #ff0000;
margin-right: 0.5em;
}
}
.el_delte_button {
color: white;
background-color: #f44336;
border: 1px solid #e91e63;
span {
align-items: flex-end;
}
}
.el-dialog__body {
padding-top: 0.5em;
}
.el_content {
margin-top: 1em;
border: 1px dashed #f44336;
padding: 2em;
border-radius: 0.25em;
position: relative;
.el_content_icon {
position: absolute;
top: -0.8em;
right: -0.5em;
font-size: 1.5em;
color: #f44336;
}
}
}
}
</style>

47
src/option/distribution/SeparateTheList.js

@ -12,14 +12,14 @@ export const columnList = [
label: '序号',
type: 12,
values: '',
width: 40,
width: 50,
fixed: true,
},
{
prop: 'no',
label: '拆单任务编号',
type: 1,
type: 2,
values: '',
width: '150',
fixed: true,
@ -29,7 +29,7 @@ export const columnList = [
{
prop: 'orderCode',
label: '原订单编号',
type: 1,
type: 2,
values: '',
width: '150',
fixed: true,
@ -58,7 +58,7 @@ export const columnList = [
},
{
prop: 'stateNameS',
prop: 'stateName',
label: '拆单任务状态',
type: 3,
values: '',
@ -66,14 +66,45 @@ export const columnList = [
fixed: true,
sortable: true,
head: false,
checkarr: [
{
label: '未完成',
value: 0,
},
{
label: '已完成',
value: 1,
},
{
label: '已撤销',
value: 2,
},
],
},
// 1.2.3
// 未完成 已完成 已撤销
{
prop: 'createTime',
label: '创建时间',
type: 1,
type: 4,
values: '',
width: '150',
fixed: true,
sortable: true,
head: false,
},
{
prop: 'finishUsername',
label: '创建人',
type: 2,
values: '',
width: '150',
fixed: true,
sortable: true,
head: false,
},
{
prop: 'finishTime',
label: '完成时间',
type: 2,
values: '',
width: '150',
fixed: true,

191
src/option/distribution/SeparateTheListInfo.js

@ -19,7 +19,7 @@ export const columnList = [
{
prop: 'newOrderCode',
label: '拆单订单号',
type: 1,
type: 2,
values: '',
width: '150',
fixed: false,
@ -29,7 +29,7 @@ export const columnList = [
{
prop: 'orderCode',
label: '原订单编号',
type: 1,
type: 2,
values: '',
width: '150',
fixed: false,
@ -66,13 +66,27 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
checkarr: [
{
label: '未完成',
value: 1,
},
{
label: '已完成',
value: 2,
},
{
label: '已撤回',
value: 3,
},
],
},
// 1.2.3
// 未完成 已完成 已撤销
{
prop: 'customerName',
label: '客户姓名',
type: 1,
type: 2,
values: '',
width: '150',
fixed: false,
@ -82,7 +96,7 @@ export const columnList = [
{
prop: 'customerTelephone',
label: '客户电话',
type: 1,
type: 2,
values: '',
width: '150',
fixed: false,
@ -92,7 +106,7 @@ export const columnList = [
{
prop: 'customerAddress',
label: '客户地址',
type: 1,
type: 2,
values: '',
width: '150',
fixed: false,
@ -132,124 +146,55 @@ export const columnList = [
},
];
/** 详情 */
export const TccolumnList = [
{
prop: '',
label: '序号',
type: 12,
values: '',
width: '50',
fixed: true,
},
{
prop: '',
label: '序号',
type: 12,
values: '',
width: '50',
fixed: true,
},
{
prop: 'orderCode',
label: '包条码',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
{
prop: 'orderCode',
label: '物料编码',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
{
prop: 'taskNumber',
label: '拆单件数',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
{
prop: 'number',
label: '已拆件数',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
{
prop: 'stateNameS',
label: '拆单状态',
type: 3,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
// 1.2.3
// 未完成 已完成 已撤销
{
prop: 'customerName',
label: '客户姓名',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
{
prop: 'customerTelephone',
label: '客户电话',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
{
prop: 'customerAddress',
label: '客户地址',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
{
prop: 'finishTime',
label: '完成时间',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
{
prop: 'createUser',
label: '操作人',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
];
{
prop: 'packageCode',
label: '包条码',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
{
prop: 'materielNo',
label: '物料编码',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
{
prop: 'materiel',
label: '物料名称',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
{
prop: 'category',
label: '品类',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
];

10
src/views/basicdata/brand/basicClient.vue

@ -1395,6 +1395,9 @@ export default {
this.onLoad(this.page);
},
handleSubmit(from) {
if(!this.form.typeServiceList.includes('3')){
delete this.form.businessType
}
console.log('上传的集合。。', JSON.parse(JSON.stringify(this.fileList)));
if (this.title == '编辑' && this.bianji == false) {
console.log('编辑1111');
@ -1467,10 +1470,11 @@ export default {
this.$refs[from].validate(async valid => {
if (valid) {
try {
this.loadingObj.submitLoading = true;
console.log('修改提交的数据:', this.form);
this.loadingObj.submitLoading = true;
console.log('修改提交的数据:', this.form);
// this.form.typeService = !!this.form.typeService ? parseInt(this.form.typeService) : undefined;
this.form.bladeRegionCityId = this.form.bladeRegionProvinceId[1];
this.form.bladeRegionAreaId = this.form.bladeRegionProvinceId[2];
this.form.bladeRegionProvinceId = this.form.bladeRegionProvinceId[0];

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

@ -964,6 +964,29 @@
</div>
</template>
</el-dialog>
<!-- 备货删除提示 -->
<DeleteWarningDialog
:modelValue="popupnotification"
:width="'600'"
title="取消计划警告!"
confirmButtonText="确认取消"
@close="handleDialogClose"
@confirm="handleDialogConfirm"
>
<template #content>
<el-text class="mx-1" size="large">
<el-icon><StarFilled /></el-icon>
数据存在<strong>已备货</strong>状态,<strong>仔细核验数据</strong>,避免误操作<br />
如果核验无误请继续执行...
</el-text>
</template>
</DeleteWarningDialog>
</basic-container>
</template>
@ -994,6 +1017,7 @@ import {
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 { dateNow } from '@/utils/date';
import NProgress from 'nprogress';
@ -1023,10 +1047,16 @@ import { setNodeHeight } from '@/utils/util.js';
import { AbnormalReview } from '@/option/distribution/DeliveryExceptionReview.js';
import print from '@/utils/print';
import { useStore } from 'vuex';
import { Delete, Edit, Search, Share, Upload } from '@element-plus/icons-vue'
export default {
components: {
DeleteWarningDialog
},
data() {
return {
DataRwo:{},
popupnotification:false,//
Deleteloading:false,
ViRejectselect: [
{
value: true,
@ -4573,7 +4603,58 @@ export default {
},
});
},
//
Cancelstocking(data){
this.loading = true;
cancelReservationPackage(data)
.then(res => {
if (res.data.code === 200) {
this.$message.success(res.data.msg);
this.getReservationInventoryPackageListInfo(this.page);
}
})
.catch(error => {
console.log(error);
}).finally(()=>{
this.loading = false;
});
},
//
confirmdelete(){
},
//
handleDialogClose(){
this.popupnotification=false
},
//
handleDialogConfirm(){
this.loading = true; //
let data = {
deliveryId: this.deliveryId,
reservationId: this.wid,
type: 2,
packageIds:'',
};
if(this.selectionList.length){
data.packageIds= this.selectionList.map(item => item.id).join(',');//
}else{
data.packageIds= this.DataRwo.id;//
}
this.Cancelstocking(data)
this.popupnotification=false;
},
//
cancelReservationInventoryPackage(row) {
this.DataRwo=row
console.log(row)
if(row.stockStatus ==20 || row.stockStatusName =="已备货"){
this.popupnotification=true
return
}
this.$confirm('是否计划取消?')
.then(() => {
this.loading = true; //
@ -4583,17 +4664,7 @@ export default {
type: 2,
packageIds: row.id,
};
this.loading = true;
cancelReservationPackage(data)
.then(res => {
if (res.data.code === 200) {
this.$message.success(res.data.msg);
this.getReservationInventoryPackageListInfo(this.page);
}
})
.catch(res => {
this.loading = false;
});
this.Cancelstocking(data)
})
.catch(() => {});
},
@ -5013,6 +5084,13 @@ export default {
});
return;
}
//
let StockupState= this.selectionList.find(item=>item.stockStatus == 20 || item.stockStatusName =="已备货")
if(StockupState){
this.popupnotification=true
return
}
this.$confirm('是否进行批量计划取消?')
.then(() => {
this.loading = true; //
@ -5614,6 +5692,8 @@ export default {
this.loading = false;
});
},
//
handleSignone(row) {
if (row.isHaveAbnormalPackage == 2) {
@ -5936,4 +6016,45 @@ export default {
align-items: center;
justify-content: center;
}
// :deep(.popupnotification){
// .el_dialog_title{
// display: flex;
// align-items: center;
// border-bottom: 1px solid #FF5722;
// padding-bottom: 5px;
// border-radius: 21px;
// padding: 0 4px;
// i{
// color: #ff0000;
// margin-right: 8px;
// }
// }
// .el_delte_button{
// color: white;
// background-color: #F44336;
// border: 1px solid #E91E63;
// span{
// align-items: flex-end;
// }
// }
// .el-dialog__body{
// padding-top: 8px;
// }
// .el_content{
// margin-top: 10px;
// border: 1px dashed #F44336;
// padding: 31px;
// border-radius: 4px;
// position: relative;
// .el_content_icon{
// position: absolute;
// top: -13px;
// right: -8px;
// font-size: 26px;
// color: #F44336;
// }
// }
// }
</style>

102
src/views/distribution/inventory/delivery/SeparateTheList.vue

@ -5,15 +5,37 @@
<div v-h5uShow="!search">
<!-- 查询模块 -->
<el-form :inline="true" :model="query" class="header_search">
<el-form-item label="车牌号:" class="el-times">
<el-input v-model="query.stockupArea" clearable placeholder="请输入车牌号"></el-input>
<el-form-item label="客户名称:" class="el-times">
<el-input
v-model.trim="query.customerName"
clearable
placeholder="请输入客户名称"
></el-input>
</el-form-item>
<el-form-item label="有效状态">
<el-select class="w100" v-model="query.value" clearable placeholder="有效状态">
<el-option label="有效" value="item.value" />
<el-option label="作废" value="item.value" />
</el-select>
<el-form-item label="订单编号">
<el-input
v-model.trim="query.on"
clearable
placeholder="请输入订单编号"
></el-input>
</el-form-item>
<el-form-item label="原订单编号">
<el-input
v-model.trim="query.orderCode"
clearable
placeholder="请输入车牌号"
></el-input>
</el-form-item>
<el-form-item label="拆单创建时间">
<el-date-picker
v-model="query.createTime"
type="daterange"
range-separator="到"
start-placeholder="开始日期"
end-placeholder="结束日期"
value-format="YYYY-MM-DD"
/>
</el-form-item>
<!-- 查询按钮 -->
@ -52,7 +74,7 @@
<template v-if="slotProps.scope.column.label === '操作'">
<el-text @click="handleView(slotProps.scope.row)"> </el-text>
<el-text @click="determine(slotProps.scope.row)"> 完成任务 </el-text>
<el-text @click="handleDelete(false, slotProps.scope.row)"> </el-text>
<el-text @click="handleDelete(slotProps.scope.row)"> </el-text>
</template>
</template>
</tablecmt>
@ -108,7 +130,11 @@ import { columnList } from '@/option/distribution/SeparateTheList.js';
import { useStore } from 'vuex';
import { useRouter } from 'vue-router';
import { ElMessage, ElMessageBox } from 'element-plus';
import { $_alltasklist, $_finishalltask } from '@/api/distribution/SeparateTheList';
import {
$_alltasklist,
$_finishalltask,
$_cancelalltask,
} from '@/api/distribution/SeparateTheList';
//
const $router = useRouter();
@ -236,7 +262,6 @@ const searchChange = () => {
/** 清空表单 */
const searchReset = () => {
details.query = {};
details.stockupDate = [];
details.page.currentPage = 1;
handleClearTableQuery(details.columnList);
onLoad();
@ -276,7 +301,6 @@ const timesc = (index, row) => {
/** 表格表头下拉框选择 */
const selectsc = (index, row) => {
handleSelectQuery(index, row, details.query);
onLoad();
};
@ -300,7 +324,6 @@ const currentChange = current => {
/** 查看 */
const handleView = row => {
console.log(row);
$router.push({
path: '/distribution/inventory/delivery/SeparateTheListInfo',
query: {
@ -327,9 +350,58 @@ const determine = row => {
let data = {
allTaskId: row.id,
};
$_finishalltask(data).then(res => {
console.log(res, '完成');
});
details.loadingObj.list = true;
$_finishalltask(data)
.then(res => {
console.log(res, '完成');
if (res.data.code == 200) {
ElMessage({
message: res.data.msg,
type: 'success',
});
onLoad();
}
})
.catch(error => {
console.log(error);
})
.finally(() => {
details.loadingObj.list = false;
});
})
.catch(() => {});
};
//
const handleDelete = row => {
console.log(row, 'row');
ElMessageBox.confirm('是否确认取消任务?', '提示', {
confirmButtonText: '确认',
cancelButtonText: '取消',
type: 'warning',
})
.then(() => {
let data = {
taskId: row.id,
};
details.loadingObj.list = true;
$_cancelalltask(data)
.then(res => {
console.log(res, '取消');
if (res.data.code == 200) {
ElMessage({
message: res.data.msg,
type: 'success',
});
onLoad();
}
})
.catch(error => {
console.log(error, '取消失败');
})
.finally(() => {
details.loadingObj.list = false;
});
})
.catch(() => {});
};

41
src/views/distribution/inventory/delivery/SeparateTheListInfo.vue

@ -96,8 +96,8 @@
<tablecmt
class="TCtableNode"
:columnList="TccolumnList"
:tableData="data"
:loading="loadingObj.list"
:tableData="Tcdata"
:loading="loadingObj.packageListLoading"
@inputTxt="inputsc"
@timeCheck="timesc"
@btnCheck="btnsc"
@ -146,7 +146,7 @@ import { columnList, TccolumnList } from '@/option/distribution/SeparateTheListI
import { processRowProperty, setNodeHeight } from '@/utils/util';
import functions from '@/utils/functions.js';
import { ElMessageBox, ElMessage } from 'element-plus';
import { $_tasklist, $_canceltask,$_gettaskdetail } from '@/api/distribution/SeparateTheList';
import { $_tasklist, $_canceltask, $_gettaskdetail } from '@/api/distribution/SeparateTheList';
import { downloadXls } from '@/utils/util';
import { useStore } from 'vuex';
import dayjs from 'dayjs';
@ -197,6 +197,7 @@ const details = reactive({
TccolumnList,
/** 列表数据 */
data: [],
Tcdata: [], //
/** 页面loading */
loadingObj: {
/** 列表加载loading */
@ -252,6 +253,7 @@ const {
popUpShow,
recorddata,
defaultTime2,
Tcdata,
} = toRefs(details);
/** 展开列表控件 */
@ -262,7 +264,7 @@ const showdrawer = _flag => {
const inputsc = (index, row) => {
details.query[row.prop] = index;
processRowProperty(index, row, details);
test(details.query);
onLoad();
};
//
const test = val => {};
@ -276,6 +278,7 @@ const timesc = (index, row) => {
if (!index) {
delete details.query[row.prop];
}
onLoad();
};
/** 表格表头输入框搜索 */
@ -285,6 +288,7 @@ const btnsc = val => {
/** 表格表头下拉框选择 */
const selectsc = (index, row) => {
processRowProperty(index, row, details);
onLoad();
};
/** 表格表头复选框选择 */
const selectionChange = list => {
@ -365,22 +369,33 @@ const onLoad = () => {
}
});
};
const view = (row) => {
const view = row => {
dialogVisible.value = true;
gieInfo(row)
gieInfo(row);
setTimeout(() => {
const _node = document.querySelector('.TCtableNode');
setNodeHeight(_node, '', true);
}, 500);
};
const gieInfo=(row)=>{
let data={
taskId:row.id
}
$_gettaskdetail(data).then(res=>{
console.log(res,'详情');
const gieInfo = row => {
let data = {
taskId: row.id,
};
details.loadingObj.packageListLoading = true;
$_gettaskdetail(data)
.then(res => {
console.log(res, '详情');
if (res.data.code == 200) {
details.Tcdata = res.data.data.packageList || [];
}
})
}
.catch(error => {
console.log(error);
})
.finally(() => {
details.loadingObj.packageListLoading = false;
});
};
//
const pageOnlaod = () => {
onLoad();

21
src/views/distribution/inventory/distrilbutionBillLadingList.vue

@ -13,26 +13,28 @@
<el-date-picker
v-model="stockupDate"
type="datetimerange"
type="daterange"
unlink-panels
range-separator="至"
start-placeholder="开始时间"
end-placeholder="结束时间"
:shortcuts="shortcuts"
:default-time="defaultTime2"
value-format="YYYY-MM-DD"
/>
</el-form-item>
<el-form-item label="提货时间:" class="el-times">
<el-date-picker
v-model="Deliverytime"
type="datetimerange"
type="daterange"
unlink-panels
range-separator="至"
start-placeholder="开始时间"
end-placeholder="结束时间"
:shortcuts="shortcuts"
:default-time="defaultTime2"
value-format="YYYY-MM-DD"
/>
</el-form-item>
<el-form-item label="批次号" class="el-times">
@ -801,6 +803,7 @@ export default {
searchReset() {
this.query = {};
this.stockupDate = [];
this.Deliverytime = [];
handleClearTableQuery(this.columnList);
this.page.currentPage = 1;
this.onLoad(this.page);
@ -1128,12 +1131,19 @@ export default {
async onLoad(page, params = {}) {
try {
this.loading = true;
if (this.stockupDate.length > 0) {
if (this.stockupDate?.length) {
let startDate = this.stockupDate[0];
let entDate = this.stockupDate[1];
params.startDate = this.getTime(startDate.toString());
params.entDate = this.getTime(entDate.toString());
params.startDate = startDate;
params.entDate = entDate;
}
if(this.Deliverytime?.length){
let startDate = this.Deliverytime[0];
let entDate = this.Deliverytime[1];
params.pickUpTimeStart = startDate;
params.pickUpTimeEnd = entDate
}
getListOwnNUm(params).then(res => {
console.log('查询数量!!!', res.data.data);
if (!!res.data.data) {
@ -1144,6 +1154,7 @@ export default {
console.log(',.,.已签收', this.signedFor, '全部', this.sumTotal);
}
});
this.data=[]
const res = await getListOwn(
page.currentPage,
page.pageSize,

29
src/views/financialsector/CustomerBaseprice.vue

@ -23,6 +23,9 @@
<el-button type="primary" @click="Deletetemplate">
<el-icon><Delete /></el-icon> </el-button
>
<el-button type="primary" @click="Tableexport">
<el-icon><Delete /></el-icon> </el-button
>
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
@ -79,6 +82,9 @@
</el-row>
</div>
</basic-container>
<el-dialog v-model="tcTableexport" title="导出" width="40%">
<Tableexportcomponent :menuData="details.columnList" :data="data"></Tableexportcomponent>
</el-dialog>
<!-- 列表配置显示 -->
<edittablehead
@closce="showdrawer"
@ -89,20 +95,35 @@
</template>
<script setup>
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch, onActivated } from 'vue';
import {
ref,
reactive,
toRefs,
computed,
onMounted,
nextTick,
watch,
onActivated,
defineAsyncComponent,
} from 'vue';
import { columnList } from '@/option/financialsector/index.js';
import { $_getpriceTemplate, $_deletelpriceTemplate } from '@/api/financialsector/index'; //
// import Tableexportcomponent from '@/components/Tableexportcomponent/Tableexportcomponent.vue';
import { getDictionaryBiz } from '@/api/system/dict'; //
import { processRowProperty, setNodeHeight, deepClone, downloadXls } from '@/utils/util';
import { getToken } from 'utils/auth'; // Token
import functions from '@/utils/functions.js';
import { ElMessageBox, ElMessage } from 'element-plus';
const Tableexportcomponent = defineAsyncComponent(() =>
import('@/components/Tableexportcomponent/Tableexportcomponent.vue')
);
import { useStore } from 'vuex';
import dayjs from 'dayjs';
const $router = useRouter(); //
const $useStore = useStore(); //
const $route = useRoute(); //
const dialogTemp = ref(false); //
const tcTableexport=ref(false);//
const details = reactive({
/** 是否开启搜索 */
search: false,
@ -269,6 +290,9 @@ function updateDictionary(targetArray, dictionaryType) {
});
});
}
const Tableexport=()=>[
tcTableexport.value=true
]
//
const priceTemplate = () => {
let data = {
@ -356,8 +380,7 @@ const Modifytemplate = row => {
});
};
//
const dialogVisible = () => {};
onActivated(() => {
console.log('进入缓存');

Loading…
Cancel
Save