8 changed files with 2136 additions and 802 deletions
@ -0,0 +1,100 @@ |
|||||||
|
import request from '@/axios'; |
||||||
|
|
||||||
|
/** |
||||||
|
* 获取提货单列表 |
||||||
|
*/ |
||||||
|
export const postPageList = data => { |
||||||
|
return request({ |
||||||
|
url: '/api/logpm-trunkline/billlading/pageList', |
||||||
|
method: 'post', |
||||||
|
data, |
||||||
|
}); |
||||||
|
}; |
||||||
|
|
||||||
|
/** |
||||||
|
* 查询所有计费方式 |
||||||
|
*/ |
||||||
|
export const postFindChargeTypeList = data => { |
||||||
|
return request({ |
||||||
|
url: '/api/logpm-trunkline/billlading/findChargeTypeList', |
||||||
|
method: 'post', |
||||||
|
data, |
||||||
|
}); |
||||||
|
}; |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建新提货单 |
||||||
|
*/ |
||||||
|
export const postSaveNew = data => { |
||||||
|
return request({ |
||||||
|
url: '/api/logpm-trunkline/billlading/saveNew', |
||||||
|
method: 'post', |
||||||
|
data, |
||||||
|
}); |
||||||
|
}; |
||||||
|
|
||||||
|
/** |
||||||
|
* 查询运单列表 |
||||||
|
*/ |
||||||
|
export const postList = data => { |
||||||
|
return request({ |
||||||
|
url: '/api/logpm-warehouseWaybill/list', |
||||||
|
method: 'post', |
||||||
|
data, |
||||||
|
}); |
||||||
|
}; |
||||||
|
|
||||||
|
/** |
||||||
|
* 更新提货单状态 |
||||||
|
*/ |
||||||
|
export const postUpdateBillladingStatus = data => { |
||||||
|
return request({ |
||||||
|
url: '/api/logpm-trunkline/billlading/updateBillladingStatus', |
||||||
|
method: 'post', |
||||||
|
data, |
||||||
|
}); |
||||||
|
}; |
||||||
|
|
||||||
|
/** |
||||||
|
* 查询提货单详情 |
||||||
|
*/ |
||||||
|
export const postBillladingDetail = data => { |
||||||
|
return request({ |
||||||
|
url: '/api/logpm-trunkline/billlading/billladingDetail', |
||||||
|
method: 'post', |
||||||
|
data, |
||||||
|
}); |
||||||
|
}; |
||||||
|
|
||||||
|
/** |
||||||
|
* 查询提货单包件明细 |
||||||
|
*/ |
||||||
|
export const postBillladingPackageDetail = data => { |
||||||
|
return request({ |
||||||
|
url: '/api/logpm-trunkline/billlading/billladingPackageDetail', |
||||||
|
method: 'post', |
||||||
|
data, |
||||||
|
}); |
||||||
|
}; |
||||||
|
|
||||||
|
/** |
||||||
|
* 更新提货单关联运单数据 |
||||||
|
*/ |
||||||
|
export const postUpdateBillladingWaybillNum = data => { |
||||||
|
return request({ |
||||||
|
url: '/api/logpm-trunkline/billlading/updateBillladingWaybillNum', |
||||||
|
method: 'post', |
||||||
|
data, |
||||||
|
}); |
||||||
|
}; |
||||||
|
|
||||||
|
/** |
||||||
|
* 提货单添加运单 |
||||||
|
*/ |
||||||
|
export const postAddWaybillToBillladingId = data => { |
||||||
|
return request({ |
||||||
|
url: '/api/logpm-trunkline/billlading/addWaybillToBillladingId', |
||||||
|
method: 'post', |
||||||
|
data, |
||||||
|
}); |
||||||
|
}; |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,732 @@ |
|||||||
|
<template> |
||||||
|
<basic-container> |
||||||
|
<div class="avue-crud"> |
||||||
|
<el-tabs type="border-card" v-model="activeTab"> |
||||||
|
<el-tab-pane label="详 情 信 息" name="tab1"> |
||||||
|
<el-divider>提货基本信息</el-divider> |
||||||
|
<el-row :gutter="24" class="rows"> |
||||||
|
<el-col :xl="7" :lg="7" :md="8" :sm="24"> |
||||||
|
<span>批次代码:{{ deliverydata.kindName }} </span> |
||||||
|
</el-col> |
||||||
|
<el-col :xl="7" :lg="7" :md="8" :sm="24"> |
||||||
|
<span>提货线路:{{ deliverydata.vehicleName }} </span> |
||||||
|
</el-col> |
||||||
|
<el-col :xl="7" :lg="7" :md="8" :sm="24"> |
||||||
|
<span>提货车辆:{{ deliverydata.vehicleName }} </span> |
||||||
|
</el-col> |
||||||
|
</el-row> |
||||||
|
|
||||||
|
<el-row :gutter="24" class="rows"> |
||||||
|
<el-col :xl="7" :lg="7" :md="8" :sm="24"> |
||||||
|
<span>司机:{{ deliverydata.kindName }} </span> |
||||||
|
</el-col> |
||||||
|
<el-col :xl="7" :lg="7" :md="8" :sm="24"> |
||||||
|
<span>预计件数{{ deliverydata.vehicleName }} </span> |
||||||
|
</el-col> |
||||||
|
<el-col :xl="7" :lg="7" :md="8" :sm="24"> |
||||||
|
<span>承运商:{{ deliverydata.vehicleName }} </span> |
||||||
|
</el-col> |
||||||
|
</el-row> |
||||||
|
|
||||||
|
<el-row :gutter="24" class="rows"> |
||||||
|
<el-col :xl="7" :lg="7" :md="8" :sm="24"> |
||||||
|
<span>计费模式:{{ deliverydata.kindName }} </span> |
||||||
|
</el-col> |
||||||
|
<el-col :xl="7" :lg="7" :md="8" :sm="24"> |
||||||
|
<span>提货费用:{{ deliverydata.vehicleName }} </span> |
||||||
|
</el-col> |
||||||
|
<el-col :xl="7" :lg="7" :md="8" :sm="24"> |
||||||
|
<span>备注:{{ deliverydata.vehicleName }} </span> |
||||||
|
</el-col> |
||||||
|
</el-row> |
||||||
|
<el-row v-if="!search"> |
||||||
|
<!-- 查询模块 --> |
||||||
|
<el-form :inline="true" :model="query" class="el-fr-d"> |
||||||
|
<!-- <div class="fo-fl"> --> |
||||||
|
<el-form-item label="提货批次:"> |
||||||
|
<el-input v-model="query.serviceNumber" placeholder="请输入提货批次"></el-input> |
||||||
|
</el-form-item> |
||||||
|
<el-form-item label="开单日期:" class="el-times"> |
||||||
|
<!-- <el-input v-model="query.stockupArea" placeholder="请输入备货区"></el-input>--> |
||||||
|
<el-date-picker |
||||||
|
v-model="stockupDate" |
||||||
|
type="datetimerange" |
||||||
|
unlink-panels |
||||||
|
range-separator="至" |
||||||
|
start-placeholder="开始时间" |
||||||
|
end-placeholder="结束时间" |
||||||
|
:shortcuts="shortcuts" |
||||||
|
/> |
||||||
|
</el-form-item> |
||||||
|
<!-- </div> --> |
||||||
|
<!-- 查询按钮 --> |
||||||
|
<el-form-item class="el-btn"> |
||||||
|
<el-button type="primary" icon="el-icon-search" @click="searchChange" |
||||||
|
>搜 索</el-button |
||||||
|
> |
||||||
|
<el-button icon="el-icon-delete" @click="searchReset()">清 空</el-button> |
||||||
|
</el-form-item> |
||||||
|
</el-form> |
||||||
|
</el-row> |
||||||
|
<el-row> |
||||||
|
<div class="avue-crud__header"> |
||||||
|
<!-- 头部左侧按钮模块 --> |
||||||
|
<div class="avue-crud__left"> |
||||||
|
<!-- <el-button |
||||||
|
type="danger" |
||||||
|
icon="el-icon-download" |
||||||
|
v-if="permission.distrilbutionBillLadingList_export" |
||||||
|
@click="handleExportInfo" |
||||||
|
plain |
||||||
|
>导出 |
||||||
|
</el-button> --> |
||||||
|
</div> |
||||||
|
<!-- 头部右侧按钮模块 --> |
||||||
|
<div class="avue-crud__right"> |
||||||
|
<el-button icon="el-icon-refresh" @click="searchChange" circle></el-button> |
||||||
|
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button> |
||||||
|
<el-button icon="el-icon-search" @click="searchHide" circle></el-button> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</el-row> |
||||||
|
<tablecmt |
||||||
|
:columnList="columnList" |
||||||
|
:tableData="data" |
||||||
|
:loading="loading" |
||||||
|
@inputTxt="inputsc" |
||||||
|
@timeCheck="timesc" |
||||||
|
@btnCheck="btnsc" |
||||||
|
@selectCheck="selectsc" |
||||||
|
@selection="selectionChange" |
||||||
|
> |
||||||
|
<template #default="slotProps"> |
||||||
|
<template v-if="slotProps.scope.column.label === '运单号'"> |
||||||
|
<el-text size="small" text @click="handleLike(slotProps.scope)">{{ |
||||||
|
// slotProps.scope.row.pickupBatch |
||||||
|
123 |
||||||
|
}}</el-text> |
||||||
|
</template> |
||||||
|
<template v-if="slotProps.scope.column.label === '操作'"> |
||||||
|
<el-text @click="handleEdit(slotProps.scope)">编辑</el-text> |
||||||
|
</template> |
||||||
|
</template> |
||||||
|
</tablecmt> |
||||||
|
|
||||||
|
<el-row style="margin-top: 20px; font-size: 14px"> |
||||||
|
<div style="margin-right: 10px">选择数: 12,</div> |
||||||
|
<div style="margin-right: 10px">选择数: 12,</div> |
||||||
|
<div style="margin-right: 10px">选择数: 12,</div> |
||||||
|
<div style="margin-right: 10px">选择数: 12</div> |
||||||
|
</el-row> |
||||||
|
|
||||||
|
<div class="col"> |
||||||
|
<!-- 分页模块 --> |
||||||
|
<el-pagination |
||||||
|
align="right" |
||||||
|
background |
||||||
|
@size-change="sizeChange" |
||||||
|
@current-change="currentChange" |
||||||
|
:current-page="page.currentPage" |
||||||
|
:page-sizes="[30, 50, 80, 120]" |
||||||
|
:page-size="page.pageSize" |
||||||
|
layout="total, sizes, prev, pager, next, jumper" |
||||||
|
:total="page.total" |
||||||
|
> |
||||||
|
</el-pagination> |
||||||
|
<el-button icon="CircleCheckFilled" type="primary" @click="this.$router.go(-1)" |
||||||
|
>确认修改</el-button |
||||||
|
> |
||||||
|
<!-- 站位的div --> |
||||||
|
<div></div> |
||||||
|
</div> |
||||||
|
</el-tab-pane> |
||||||
|
|
||||||
|
<el-tab-pane label="操 作 日 志" name="tab2"> |
||||||
|
<div style="min-height: 300px"> |
||||||
|
<el-steps direction="vertical" space="80px"> |
||||||
|
<el-step title="32131"> |
||||||
|
<template #description> {{ new Date() }} </template> |
||||||
|
<template #icon> |
||||||
|
<el-icon color="#172e60" size="20px"><HelpFilled /></el-icon> |
||||||
|
</template> |
||||||
|
</el-step> |
||||||
|
<el-step title="32131"> |
||||||
|
<template #description> {{ new Date() }} </template> |
||||||
|
<template #icon> |
||||||
|
<el-icon color="#172e60" size="20px"><HelpFilled /></el-icon> |
||||||
|
</template> |
||||||
|
</el-step> |
||||||
|
</el-steps> |
||||||
|
</div> |
||||||
|
</el-tab-pane> |
||||||
|
</el-tabs> |
||||||
|
</div> |
||||||
|
|
||||||
|
<!-- 编辑弹窗 --> |
||||||
|
<el-dialog |
||||||
|
title="新增节点" |
||||||
|
v-model="box" |
||||||
|
width="30%" |
||||||
|
:before-close="beforeClose" |
||||||
|
append-to-body |
||||||
|
> |
||||||
|
<el-form :disabled="view" ref="form" :model="form" label-width="80px" style="zoom: 0.9"> |
||||||
|
<!-- 表单字段 --> |
||||||
|
<el-form-item label="运单号" prop="pickUpTime"> |
||||||
|
<el-select |
||||||
|
v-model="form.customerCode" |
||||||
|
filterable |
||||||
|
remote |
||||||
|
reserve-keyword |
||||||
|
remote-show-suffix |
||||||
|
:remote-method="remoteCodeMethod" |
||||||
|
:loading="loading" |
||||||
|
@change="getMenDian($event, 2)" |
||||||
|
placeholder="请选择运单号" |
||||||
|
:teleported="false" |
||||||
|
placement="bottom-end" |
||||||
|
class="popUpselect" |
||||||
|
> |
||||||
|
<el-option |
||||||
|
v-for="item in options" |
||||||
|
:key="item.value" |
||||||
|
:label="item.code" |
||||||
|
:value="item.value" |
||||||
|
/> |
||||||
|
</el-select> |
||||||
|
</el-form-item> |
||||||
|
<el-form-item label="开单日期" prop="pickUpTime"> |
||||||
|
<el-date-picker v-model="form.time" type="date" placeholder="开单日期" /> |
||||||
|
</el-form-item> |
||||||
|
<el-form-item label="货物名称" prop="pickUpTime"> |
||||||
|
<el-input v-model="form.pickUpTime" type="text" placeholder="联系方式" /> |
||||||
|
</el-form-item> |
||||||
|
<el-form-item label="提货件数" prop="pickUpTime"> |
||||||
|
<el-input-number v-model="form.pickUpTime" type="text" :min="0" placeholder="提货件数" /> |
||||||
|
</el-form-item> |
||||||
|
<el-form-item label="到站" prop="pickUpTime"> |
||||||
|
<el-input v-model="form.pickUpTime" type="text" placeholder="联系方式" /> |
||||||
|
</el-form-item> |
||||||
|
<el-form-item label="发货人" prop="pickUpTime"> |
||||||
|
<el-input v-model="form.pickUpTime" type="text" placeholder="联系方式" /> |
||||||
|
</el-form-item> |
||||||
|
<el-form-item label="收货人" prop="pickUpTime"> |
||||||
|
<el-input v-model="form.pickUpTime" type="text" placeholder="联系方式" /> |
||||||
|
</el-form-item> |
||||||
|
<el-form-item label="发货手机" prop="pickUpTime"> |
||||||
|
<el-input v-model="form.pickUpTime" type="text" placeholder="联系方式" /> |
||||||
|
</el-form-item> |
||||||
|
<el-form-item label="收货电话" prop="pickUpTime"> |
||||||
|
<el-input v-model="form.pickUpTime" type="text" placeholder="联系方式" /> |
||||||
|
</el-form-item> |
||||||
|
<el-form-item label="支付方式" prop="pickUpTime"> |
||||||
|
<el-input v-model="form.pickUpTime" type="text" placeholder="联系方式" /> |
||||||
|
</el-form-item> |
||||||
|
<el-form-item label="备注" prop="pickUpTime"> |
||||||
|
<el-input v-model="form.pickUpTime" type="textarea" placeholde="备注" /> |
||||||
|
</el-form-item> |
||||||
|
</el-form> |
||||||
|
<!-- 表单按钮 --> |
||||||
|
<template #footer> |
||||||
|
<div v-if="!view" class="dialog-footer"> |
||||||
|
<el-button type="primary" icon="el-icon-circle-check" @click="handleEditSubmit" |
||||||
|
>提 交</el-button |
||||||
|
> |
||||||
|
<el-button icon="el-icon-circle-close" @click="box = false">取 消</el-button> |
||||||
|
</div> |
||||||
|
</template> |
||||||
|
</el-dialog> |
||||||
|
</basic-container> |
||||||
|
<edittablehead |
||||||
|
@setcolum="setnewcolum" |
||||||
|
@closce="showdrawer" |
||||||
|
:drawerShow="drawerShow" |
||||||
|
:columnList="columnList" |
||||||
|
> |
||||||
|
</edittablehead> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script> |
||||||
|
// import {} from 'module'; |
||||||
|
import { mapGetters } from 'vuex'; |
||||||
|
import dayjs from 'dayjs'; |
||||||
|
import { ElMessage } from 'element-plus'; |
||||||
|
import { getToken } from '@/utils/auth'; |
||||||
|
export default { |
||||||
|
data() { |
||||||
|
return { |
||||||
|
columnList: [ |
||||||
|
{ |
||||||
|
prop: 'reservationCode', |
||||||
|
label: '序号', |
||||||
|
type: 12, |
||||||
|
values: '', |
||||||
|
width: '55', |
||||||
|
checkarr: [], |
||||||
|
fixed: true, |
||||||
|
head: false, |
||||||
|
}, |
||||||
|
{ |
||||||
|
prop: 'reservationCode', |
||||||
|
label: '提货批次', |
||||||
|
type: 2, |
||||||
|
values: '', |
||||||
|
width: '150', |
||||||
|
checkarr: [], |
||||||
|
fixed: true, |
||||||
|
sortable: true, |
||||||
|
head: false, |
||||||
|
}, |
||||||
|
{ |
||||||
|
prop: 'trainNumber', |
||||||
|
label: '运单号', |
||||||
|
type: 13, |
||||||
|
values: '', |
||||||
|
width: '150', |
||||||
|
checkarr: [], |
||||||
|
fixed: true, |
||||||
|
sortable: true, |
||||||
|
head: false, |
||||||
|
}, |
||||||
|
{ |
||||||
|
prop: 'mallName', |
||||||
|
label: '开单日期', |
||||||
|
type: 4, |
||||||
|
values: '', |
||||||
|
width: '180', |
||||||
|
checkarr: [], |
||||||
|
fixed: false, |
||||||
|
sortable: true, |
||||||
|
head: false, |
||||||
|
}, |
||||||
|
{ |
||||||
|
prop: 'consignee', |
||||||
|
label: '货物名称', |
||||||
|
type: 2, |
||||||
|
values: '', |
||||||
|
width: '130', |
||||||
|
checkarr: [], |
||||||
|
fixed: false, |
||||||
|
sortable: true, |
||||||
|
}, |
||||||
|
{ |
||||||
|
prop: 'deliveryPhone', |
||||||
|
label: '提货件数', |
||||||
|
type: 10, |
||||||
|
values: '', |
||||||
|
width: '150', |
||||||
|
checkarr: [], |
||||||
|
fixed: false, |
||||||
|
sortable: true, |
||||||
|
isshowSummary: true, |
||||||
|
}, |
||||||
|
{ |
||||||
|
prop: 'deliveryAddress', |
||||||
|
label: '提货重量', |
||||||
|
type: 10, |
||||||
|
values: '', |
||||||
|
width: '150', |
||||||
|
checkarr: [], |
||||||
|
fixed: false, |
||||||
|
sortable: true, |
||||||
|
isshowSummary: true, |
||||||
|
}, |
||||||
|
{ |
||||||
|
prop: 'receivingUnit', |
||||||
|
label: '提货体积', |
||||||
|
type: 10, |
||||||
|
values: '', |
||||||
|
width: '150', |
||||||
|
checkarr: [], |
||||||
|
fixed: false, |
||||||
|
sortable: true, |
||||||
|
head: false, |
||||||
|
isshowSummary: true, |
||||||
|
}, |
||||||
|
{ |
||||||
|
prop: 'reservationNum', |
||||||
|
label: '到站', |
||||||
|
type: 2, |
||||||
|
values: '', |
||||||
|
width: '180', |
||||||
|
checkarr: [], |
||||||
|
fixed: false, |
||||||
|
sortable: true, |
||||||
|
}, |
||||||
|
{ |
||||||
|
prop: 'reservationStockListNum', |
||||||
|
label: '目的仓', |
||||||
|
type: 3, |
||||||
|
values: '', |
||||||
|
width: '150', |
||||||
|
checkarr: [], |
||||||
|
fixed: false, |
||||||
|
sortable: true, |
||||||
|
head: false, |
||||||
|
}, |
||||||
|
{ |
||||||
|
prop: 'loadedNub', |
||||||
|
label: '发货人', |
||||||
|
type: 2, |
||||||
|
values: '', |
||||||
|
width: '180', |
||||||
|
checkarr: [], |
||||||
|
fixed: false, |
||||||
|
sortable: true, |
||||||
|
}, |
||||||
|
{ |
||||||
|
prop: 'inventoryNub', |
||||||
|
label: '收货人', |
||||||
|
type: 2, |
||||||
|
values: '', |
||||||
|
width: '180', |
||||||
|
checkarr: [], |
||||||
|
fixed: false, |
||||||
|
sortable: true, |
||||||
|
}, |
||||||
|
{ |
||||||
|
prop: 'receivedQuantity', |
||||||
|
label: '发货手机', |
||||||
|
type: 2, |
||||||
|
values: '', |
||||||
|
width: '130', |
||||||
|
checkarr: [], |
||||||
|
fixed: false, |
||||||
|
sortable: true, |
||||||
|
}, |
||||||
|
{ |
||||||
|
prop: 'remarks', |
||||||
|
label: '收货电话', |
||||||
|
type: 2, |
||||||
|
values: '', |
||||||
|
width: '150', |
||||||
|
checkarr: [], |
||||||
|
fixed: false, |
||||||
|
sortable: true, |
||||||
|
}, |
||||||
|
{ |
||||||
|
prop: 'isUrgentName', |
||||||
|
label: '收货地址', |
||||||
|
type: 2, |
||||||
|
values: '', |
||||||
|
width: '180', |
||||||
|
checkarr: [], |
||||||
|
fixed: false, |
||||||
|
sortable: true, |
||||||
|
}, |
||||||
|
{ |
||||||
|
prop: 'isUrgentName', |
||||||
|
label: '备注', |
||||||
|
type: 1, |
||||||
|
values: '', |
||||||
|
width: '180', |
||||||
|
checkarr: [], |
||||||
|
fixed: false, |
||||||
|
sortable: true, |
||||||
|
}, |
||||||
|
{ |
||||||
|
prop: 'assignStatusName', |
||||||
|
label: '支付方式', |
||||||
|
type: 2, |
||||||
|
values: '', |
||||||
|
width: '180', |
||||||
|
checkarr: [], |
||||||
|
fixed: false, |
||||||
|
sortable: true, |
||||||
|
}, |
||||||
|
{ |
||||||
|
prop: 'stockupStatusName', |
||||||
|
label: '提货费用', |
||||||
|
type: 2, |
||||||
|
values: '', |
||||||
|
width: '130', |
||||||
|
checkarr: [], |
||||||
|
fixed: false, |
||||||
|
sortable: true, |
||||||
|
}, |
||||||
|
{ |
||||||
|
prop: 'forkliftName', |
||||||
|
label: '运输费用', |
||||||
|
type: 2, |
||||||
|
values: '', |
||||||
|
width: '130', |
||||||
|
checkarr: [], |
||||||
|
fixed: false, |
||||||
|
sortable: true, |
||||||
|
}, |
||||||
|
{ |
||||||
|
prop: '', |
||||||
|
label: '操作', |
||||||
|
type: 6, |
||||||
|
values: '', |
||||||
|
width: '200', |
||||||
|
checkarr: [], |
||||||
|
fixed: 'right', |
||||||
|
hide: true, |
||||||
|
}, |
||||||
|
// 更多列的配置... |
||||||
|
], |
||||||
|
height: 300, |
||||||
|
// 弹框标题 |
||||||
|
title: '', |
||||||
|
activeTab: 'tab1', |
||||||
|
// 是否展示弹框 |
||||||
|
box: false, |
||||||
|
// 是否显示查询 |
||||||
|
search: true, |
||||||
|
/** 提货基本信息 */ |
||||||
|
deliverydata: {}, |
||||||
|
/** 显示列表控件 */ |
||||||
|
drawerShow: false, |
||||||
|
// 加载中 |
||||||
|
loading: true, |
||||||
|
// 是否为查看模式。。 |
||||||
|
view: false, |
||||||
|
// 查询信息 |
||||||
|
query: {}, |
||||||
|
formCustomer: {}, |
||||||
|
// 分页信息 |
||||||
|
page: { |
||||||
|
currentPage: 1, |
||||||
|
pageSize: 30, |
||||||
|
total: 40, |
||||||
|
}, |
||||||
|
// 表单数据 |
||||||
|
form: {}, |
||||||
|
// 选择行 |
||||||
|
selectionList: [], |
||||||
|
// 表单列表 |
||||||
|
data: [], |
||||||
|
}; |
||||||
|
}, |
||||||
|
watch: { |
||||||
|
'$route.data': { |
||||||
|
handler(newVal, oldVal) { |
||||||
|
console.log(newVal, oldVal); |
||||||
|
if (this.$router.data) { |
||||||
|
this.fetchData(); |
||||||
|
} |
||||||
|
this.onLoad(this.page); |
||||||
|
}, |
||||||
|
deep: true, |
||||||
|
immediate: true, |
||||||
|
}, |
||||||
|
}, |
||||||
|
mounted() { |
||||||
|
var bodyContent = document.querySelectorAll('.maboxhi'); |
||||||
|
bodyContent.forEach(val => { |
||||||
|
val.style.height = '500px'; |
||||||
|
// val.style.width = '45%'; |
||||||
|
}); |
||||||
|
this.init(); |
||||||
|
this.onLoad(); |
||||||
|
}, |
||||||
|
created() { |
||||||
|
// //查询字典 |
||||||
|
// this.queryDictionary(); |
||||||
|
}, |
||||||
|
computed: { |
||||||
|
...mapGetters(['permission']), |
||||||
|
ids() { |
||||||
|
let ids = []; |
||||||
|
this.selectionList.forEach(ele => { |
||||||
|
ids.push(ele.id); |
||||||
|
}); |
||||||
|
return ids.join(','); |
||||||
|
}, |
||||||
|
// 图片上传接口 |
||||||
|
doubledCount() { |
||||||
|
return '/api/blade-resource/oss/endpoint/put-file'; |
||||||
|
}, |
||||||
|
// 图片上传必须携带TOKEN |
||||||
|
headers() { |
||||||
|
return { 'Blade-Auth': 'Bearer ' + getToken() }; |
||||||
|
}, |
||||||
|
}, |
||||||
|
methods: { |
||||||
|
/** |
||||||
|
* 弹窗的勾选回调,用于更改头部数组 |
||||||
|
* 固定搭配,只需要更换 columnList |
||||||
|
*/ |
||||||
|
setnewcolum(newarr, headarr, type) { |
||||||
|
// console.log(newarr,'+++++++++++') |
||||||
|
if (type == 1) { |
||||||
|
this.columnList = newarr; |
||||||
|
this.$functions.setStorage(window.location.pathname + 'checkList', headarr); |
||||||
|
} else if (type == 2) { |
||||||
|
this.columnList = newarr; |
||||||
|
this.$functions.setStorage(window.location.pathname + 'flexList', headarr); |
||||||
|
} else if (type == 3) { |
||||||
|
this.columnList = newarr; |
||||||
|
this.$functions.setStorage(window.location.pathname + 'sortlist', headarr); |
||||||
|
} else if (type == 4) { |
||||||
|
this.columnList = newarr; |
||||||
|
} |
||||||
|
}, |
||||||
|
showdrawer(value) { |
||||||
|
this.drawerShow = value; |
||||||
|
}, |
||||||
|
init() { |
||||||
|
this.height = this.setPx(document.body.clientHeight - 340); |
||||||
|
}, |
||||||
|
searchHide() { |
||||||
|
this.search = !this.search; |
||||||
|
}, |
||||||
|
searchChange() { |
||||||
|
this.onLoad(this.page); |
||||||
|
}, |
||||||
|
searchReset() { |
||||||
|
this.query = {}; |
||||||
|
this.page.currentPage = 1; |
||||||
|
this.onLoad(this.page); |
||||||
|
}, |
||||||
|
|
||||||
|
inputsc(index, row) { |
||||||
|
this.query[row.prop] = index; |
||||||
|
if (index === '') delete this.query[row.prop]; |
||||||
|
this.onLoad(this.page); |
||||||
|
}, |
||||||
|
timesc(index, row) { |
||||||
|
if (!!index) { |
||||||
|
index = dayjs(index).format('YYYY-MM-DD'); |
||||||
|
} |
||||||
|
this.query[row.prop] = index; |
||||||
|
if (!index) { |
||||||
|
delete this.query[row.prop]; |
||||||
|
} |
||||||
|
this.onLoad(this.page); |
||||||
|
}, |
||||||
|
btnsc() {}, |
||||||
|
selectsc() { |
||||||
|
this.query[row.prop] = index; |
||||||
|
if (!index) delete this.query[row.prop]; |
||||||
|
this.onLoad(this.page); |
||||||
|
}, |
||||||
|
beforeClose(done) { |
||||||
|
done(); |
||||||
|
this.form = {}; |
||||||
|
this.view = false; |
||||||
|
}, |
||||||
|
selectionChange(list) { |
||||||
|
console.log('sllsls'); |
||||||
|
this.selectionList = list; |
||||||
|
}, |
||||||
|
selectionClear() { |
||||||
|
this.selectionList = []; |
||||||
|
this.$refs.table.clearSelection(); |
||||||
|
}, |
||||||
|
currentChange(currentPage) { |
||||||
|
this.page.currentPage = currentPage; |
||||||
|
this.onLoad(this.page); |
||||||
|
}, |
||||||
|
sizeChange(pageSize) { |
||||||
|
this.page.pageSize = pageSize; |
||||||
|
this.onLoad(this.page); |
||||||
|
}, |
||||||
|
onLoad() { |
||||||
|
//查询详情 |
||||||
|
/* const data = decodeURIComponent(this.$route.query.data); |
||||||
|
this.deliverydata = JSON.parse(data); |
||||||
|
|
||||||
|
this.deliveryId = this.deliverydata.id; //存储ID |
||||||
|
this.loading = true; |
||||||
|
let id = this.deliverydata.id; |
||||||
|
getDetail(id).then(res => { |
||||||
|
console.log('res.data>>>>>>>>>>>>', res.data.data); |
||||||
|
const data = res.data.data; |
||||||
|
this.deliverydata = data; |
||||||
|
|
||||||
|
console.log('this.deliverydata>>>>>>>>>>>>', this.deliverydata); |
||||||
|
this.deliverydata.remarks = data.remarks; |
||||||
|
|
||||||
|
this.data = data.reservationList; |
||||||
|
let a = 0; |
||||||
|
let packNum = 0; |
||||||
|
let invenNum = 0; |
||||||
|
let signNum = 0; |
||||||
|
this.data.map(item => { |
||||||
|
console.log('--------------->item', item); |
||||||
|
a += parseInt(item.inventoryNub) + parseInt(item.loadedNub); |
||||||
|
packNum += parseInt(item.reservationNum); |
||||||
|
invenNum += parseInt(item.reservationStockListNum); |
||||||
|
signNum += parseInt(item.receivedQuantity); |
||||||
|
}); |
||||||
|
}); */ |
||||||
|
|
||||||
|
this.loading = false; |
||||||
|
}, |
||||||
|
|
||||||
|
/** 开启编辑弹窗 */ |
||||||
|
handleEdit({ row }) { |
||||||
|
console.log('row :>> ', row); |
||||||
|
this.box = true; |
||||||
|
}, |
||||||
|
|
||||||
|
/** 编辑提交 */ |
||||||
|
handleEditSubmit() {}, |
||||||
|
|
||||||
|
//客户编号 |
||||||
|
async remoteCodeMethod(query) { |
||||||
|
if (query) { |
||||||
|
// this.loading = true; |
||||||
|
this.options = []; |
||||||
|
this.form.clientId = null; |
||||||
|
let res = await getListClient(this.page.currentPage, this.page.pageSize, { |
||||||
|
clientCode: query, |
||||||
|
}); |
||||||
|
console.log('客户信息1234>>>>', res.data.data.records); |
||||||
|
res.data.data.records.forEach(i => { |
||||||
|
let st = { |
||||||
|
label: i.clientName, |
||||||
|
value: i.id, |
||||||
|
code: i.clientCode, |
||||||
|
}; |
||||||
|
this.options.push(st); |
||||||
|
}); |
||||||
|
} else { |
||||||
|
this.options = []; |
||||||
|
} |
||||||
|
}, |
||||||
|
}, |
||||||
|
}; |
||||||
|
</script> |
||||||
|
<style scoped lang="scss"> |
||||||
|
:deep(.el-dialog__body) { |
||||||
|
img { |
||||||
|
width: 100%; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
.col { |
||||||
|
margin-top: 20px; |
||||||
|
display: flex; |
||||||
|
justify-content: space-between; |
||||||
|
> div { |
||||||
|
flex: 1; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
// 日期选择器 |
||||||
|
:deep(.el-date-editor.el-input) { |
||||||
|
height: 100% !important; |
||||||
|
width: 100% !important; |
||||||
|
} |
||||||
|
|
||||||
|
:deep(.el-range-editor.el-input__wrapper) { |
||||||
|
height: 100% !important; |
||||||
|
} |
||||||
|
|
||||||
|
// 下拉选择器 |
||||||
|
:deep(.el-select) { |
||||||
|
width: 100%; |
||||||
|
} |
||||||
|
|
||||||
|
// 数字输入框 |
||||||
|
:deep(.el-input-number) { |
||||||
|
width: 100%; |
||||||
|
|
||||||
|
.el-input__inner { |
||||||
|
text-align: left; |
||||||
|
} |
||||||
|
} |
||||||
|
</style> |
Loading…
Reference in new issue