|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
<template> |
|
|
|
|
<basic-container> |
|
|
|
|
<div class="avue-crud"> |
|
|
|
|
<el-row :hidden="!search" style="padding:6px 18px"> |
|
|
|
|
<el-row :hidden="!search" style="padding: 6px 18px"> |
|
|
|
|
<!-- 查询模块 --> |
|
|
|
|
<el-form :inline="true" :model="query"> |
|
|
|
|
<el-form-item label="备货状态:"> |
|
|
|
@ -11,7 +11,10 @@
|
|
|
|
|
<el-input v-model="query.stockupArea" placeholder="请输入备货区"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="指派状态;1-未指派、2-已指派:"> |
|
|
|
|
<el-input v-model="query.assignStatus" placeholder="请输入指派状态;1-未指派、2-已指派"></el-input> |
|
|
|
|
<el-input |
|
|
|
|
v-model="query.assignStatus" |
|
|
|
|
placeholder="请输入指派状态;1-未指派、2-已指派" |
|
|
|
|
></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<!-- 查询按钮 --> |
|
|
|
|
<el-form-item> |
|
|
|
@ -25,63 +28,60 @@
|
|
|
|
|
<!-- 头部左侧按钮模块 --> |
|
|
|
|
<div class="avue-crud__left"> |
|
|
|
|
<el-button type="primary" icon="el-icon-plus" @click="handleAdd">新 增</el-button> |
|
|
|
|
<el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain>删 除</el-button> |
|
|
|
|
<el-button type="primary" text icon="el-icon-edit" @click="handleForklift(row)" >指派叉车司机</el-button> |
|
|
|
|
<el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain |
|
|
|
|
>删 除</el-button |
|
|
|
|
> |
|
|
|
|
<el-button type="primary" text icon="el-icon-edit" @click="handleForklift(row)" |
|
|
|
|
>指派叉车司机</el-button |
|
|
|
|
> |
|
|
|
|
</div> |
|
|
|
|
<!-- 头部右侧按钮模块 --> |
|
|
|
|
<div class="avue-crud__right"> |
|
|
|
|
<el-button icon="el-icon-search" @click="onLoad" >全部</el-button> |
|
|
|
|
<el-button icon="el-icon-refresh" @click="getStockUp('2')" >已备货</el-button> |
|
|
|
|
<el-button icon="el-icon-search" @click="getStockUp('1')" >待备货</el-button> |
|
|
|
|
<el-button icon="el-icon-search" @click="onLoad">全部</el-button> |
|
|
|
|
<el-button icon="el-icon-refresh" @click="getStockUp('2')">已备货</el-button> |
|
|
|
|
<el-button icon="el-icon-search" @click="getStockUp('1')">待备货</el-button> |
|
|
|
|
|
|
|
|
|
<!-- <el-button icon="el-icon-refresh" @click="searchChange" circle></el-button>--> |
|
|
|
|
<!-- <el-button icon="el-icon-search" @click="searchHide" circle></el-button>--> |
|
|
|
|
<!-- <el-button icon="el-icon-refresh" @click="searchChange" circle></el-button>--> |
|
|
|
|
<!-- <el-button icon="el-icon-search" @click="searchHide" circle></el-button>--> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</el-row> |
|
|
|
|
<el-row> |
|
|
|
|
<!-- 列表模块 --> |
|
|
|
|
<el-table ref="table" v-loading="loading" |
|
|
|
|
@selection-change="selectionChange" |
|
|
|
|
:data="data" |
|
|
|
|
:height="height" |
|
|
|
|
style="width: 100%" |
|
|
|
|
:border="option.border"> |
|
|
|
|
<el-table-column type="selection" v-if="option.selection" width="55" align="center"></el-table-column> |
|
|
|
|
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column> |
|
|
|
|
<el-table-column v-if="option.index" label="#" type="index" width="50" align="center"> |
|
|
|
|
</el-table-column> |
|
|
|
|
<template v-for="(item,index) in option.column"> |
|
|
|
|
<!-- table字段 --> |
|
|
|
|
<el-table-column v-if="item.hide!==true" |
|
|
|
|
:prop="item.prop" |
|
|
|
|
:label="item.label" |
|
|
|
|
:width="item.width" |
|
|
|
|
:key="index"> |
|
|
|
|
</el-table-column> |
|
|
|
|
<tablecmt |
|
|
|
|
:columnList="columnList" |
|
|
|
|
:tableData="data" |
|
|
|
|
:loading="loading" |
|
|
|
|
@inputTxt="inputsc" |
|
|
|
|
@timeCheck="timesc" |
|
|
|
|
@btnCheck="btnsc" |
|
|
|
|
@selectCheck="selectsc" |
|
|
|
|
@selection="selectionChange" |
|
|
|
|
> |
|
|
|
|
<template #default="slotProps"> |
|
|
|
|
<el-button type="primary" text icon="el-icon-view" @click="handleView(slotProps.scope)" |
|
|
|
|
>查看</el-button |
|
|
|
|
> |
|
|
|
|
<el-button type="primary" text icon="el-icon-edit" @click="handleEdit(slotProps.scope)" |
|
|
|
|
>编辑</el-button |
|
|
|
|
> |
|
|
|
|
</template> |
|
|
|
|
<!-- 操作栏模块 --> |
|
|
|
|
<el-table-column prop="menu" label="操作" :width="220" align="center"> |
|
|
|
|
<template #="{row}"> |
|
|
|
|
<el-button type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button> |
|
|
|
|
<el-button type="primary" text icon="el-icon-edit" @click="handleEdit(row)">编辑</el-button> |
|
|
|
|
<!-- <el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button>--> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
</el-table> |
|
|
|
|
</tablecmt> |
|
|
|
|
</el-row> |
|
|
|
|
<el-row> |
|
|
|
|
<div class="avue-crud__pagination" style="width:100%"> |
|
|
|
|
<div class="avue-crud__pagination" style="width: 100%"> |
|
|
|
|
<!-- 分页模块 --> |
|
|
|
|
<el-pagination align="right" |
|
|
|
|
background |
|
|
|
|
@size-change="sizeChange" |
|
|
|
|
@current-change="currentChange" |
|
|
|
|
:current-page="page.currentPage" |
|
|
|
|
:page-sizes="[10, 20, 30, 40, 50, 100]" |
|
|
|
|
:page-size="page.pageSize" |
|
|
|
|
layout="total, sizes, prev, pager, next, jumper" |
|
|
|
|
:total="page.total"> |
|
|
|
|
<el-pagination |
|
|
|
|
align="right" |
|
|
|
|
background |
|
|
|
|
@size-change="sizeChange" |
|
|
|
|
@current-change="currentChange" |
|
|
|
|
:current-page="page.currentPage" |
|
|
|
|
:page-sizes="[10, 20, 30, 40, 50, 100]" |
|
|
|
|
:page-size="page.pageSize" |
|
|
|
|
layout="total, sizes, prev, pager, next, jumper" |
|
|
|
|
:total="page.total" |
|
|
|
|
> |
|
|
|
|
</el-pagination> |
|
|
|
|
</div> |
|
|
|
|
</el-row> |
|
|
|
@ -93,7 +93,8 @@
|
|
|
|
|
v-for="item in forkliftData" |
|
|
|
|
:key="item.dictKey" |
|
|
|
|
:label="item.dictValue" |
|
|
|
|
:value="item.dictKey"> |
|
|
|
|
:value="item.dictKey" |
|
|
|
|
> |
|
|
|
|
</el-option> |
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
@ -103,7 +104,8 @@
|
|
|
|
|
v-for="item in loaderData" |
|
|
|
|
:key="item.dictKey" |
|
|
|
|
:label="item.dictValue" |
|
|
|
|
:value="item.dictKey"> |
|
|
|
|
:value="item.dictKey" |
|
|
|
|
> |
|
|
|
|
</el-option> |
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
@ -113,51 +115,64 @@
|
|
|
|
|
v-for="item in goodsAreaIdData" |
|
|
|
|
:key="item.dictKey" |
|
|
|
|
:label="item.dictValue" |
|
|
|
|
:value="item.dictKey"> |
|
|
|
|
:value="item.dictKey" |
|
|
|
|
> |
|
|
|
|
</el-option> |
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-form> |
|
|
|
|
<template #footer> |
|
|
|
|
<span class="dialog-footer"> |
|
|
|
|
<el-button @click="dialogFormCustomer = false">取消</el-button> |
|
|
|
|
<!-- <el-button type="primary" @click="dialogFormVisible = false"> 确定 </el-button>--> |
|
|
|
|
<el-button type="primary" @click="callFordelivery('3')"> 确定 </el-button> |
|
|
|
|
</span> |
|
|
|
|
<span class="dialog-footer"> |
|
|
|
|
<el-button @click="dialogFormCustomer = false">取消</el-button> |
|
|
|
|
<!-- <el-button type="primary" @click="dialogFormVisible = false"> 确定 </el-button>--> |
|
|
|
|
<el-button type="primary" @click="callFordelivery('3')"> 确定 </el-button> |
|
|
|
|
</span> |
|
|
|
|
</template> |
|
|
|
|
</el-dialog> |
|
|
|
|
<!-- 表单模块 --> |
|
|
|
|
<el-dialog :title="title" |
|
|
|
|
v-model="box" |
|
|
|
|
width="50%" |
|
|
|
|
:before-close="beforeClose" |
|
|
|
|
append-to-body> |
|
|
|
|
<el-dialog |
|
|
|
|
:title="title" |
|
|
|
|
v-model="box" |
|
|
|
|
width="50%" |
|
|
|
|
:before-close="beforeClose" |
|
|
|
|
append-to-body |
|
|
|
|
> |
|
|
|
|
<el-form :disabled="view" ref="form" :model="form" label-width="80px"> |
|
|
|
|
<!-- 表单字段 --> |
|
|
|
|
<el-form-item label="备货时间" prop="stockupDate"> |
|
|
|
|
<el-date-picker v-model="form.stockupDate" type="datetime" value-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择备货时间"></el-date-picker> |
|
|
|
|
<el-date-picker |
|
|
|
|
v-model="form.stockupDate" |
|
|
|
|
type="datetime" |
|
|
|
|
value-format="YYYY-MM-DD HH:mm:ss" |
|
|
|
|
placeholder="请选择备货时间" |
|
|
|
|
></el-date-picker> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="备货人" prop="stockupUser"> |
|
|
|
|
<el-input v-model="form.stockupUser" placeholder="请输入备货人"/> |
|
|
|
|
<el-input v-model="form.stockupUser" placeholder="请输入备货人" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="备货状态" prop="stockupStatus"> |
|
|
|
|
<el-input v-model="form.stockupStatus" placeholder="请输入备货状态"/> |
|
|
|
|
<el-input v-model="form.stockupStatus" placeholder="请输入备货状态" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="备货区" prop="stockupArea"> |
|
|
|
|
<el-input v-model="form.stockupArea" placeholder="请输入备货区"/> |
|
|
|
|
<el-input v-model="form.stockupArea" placeholder="请输入备货区" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="指派状态;1-未指派、2-已指派" prop="assignStatus"> |
|
|
|
|
<el-select v-model="form.assignStatus" clearable placeholder="请选择指派状态;1-未指派、2-已指派"> |
|
|
|
|
<el-select |
|
|
|
|
v-model="form.assignStatus" |
|
|
|
|
clearable |
|
|
|
|
placeholder="请选择指派状态;1-未指派、2-已指派" |
|
|
|
|
> |
|
|
|
|
<el-option |
|
|
|
|
v-for="item in assignStatusData" |
|
|
|
|
:key="item.dictKey" |
|
|
|
|
:label="item.dictValue" |
|
|
|
|
:value="item.dictKey"> |
|
|
|
|
:value="item.dictKey" |
|
|
|
|
> |
|
|
|
|
</el-option> |
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="备货库位" prop="stockipAllocation"> |
|
|
|
|
<el-input v-model="form.stockipAllocation" placeholder="请输入备货库位"/> |
|
|
|
|
<el-input v-model="form.stockipAllocation" placeholder="请输入备货库位" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="备货区编号" prop="goodsAreaId"> |
|
|
|
|
<el-select v-model="form.goodsAreaId" clearable placeholder="请选择备货区编号"> |
|
|
|
@ -165,7 +180,8 @@
|
|
|
|
|
v-for="item in goodsAreaIdData" |
|
|
|
|
:key="item.dictKey" |
|
|
|
|
:label="item.dictValue" |
|
|
|
|
:value="item.dictKey"> |
|
|
|
|
:value="item.dictKey" |
|
|
|
|
> |
|
|
|
|
</el-option> |
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
@ -175,7 +191,8 @@
|
|
|
|
|
v-for="item in forkliftData" |
|
|
|
|
:key="item.dictKey" |
|
|
|
|
:label="item.dictValue" |
|
|
|
|
:value="item.dictKey"> |
|
|
|
|
:value="item.dictKey" |
|
|
|
|
> |
|
|
|
|
</el-option> |
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
@ -185,41 +202,204 @@
|
|
|
|
|
v-for="item in loaderData" |
|
|
|
|
:key="item.dictKey" |
|
|
|
|
:label="item.dictValue" |
|
|
|
|
:value="item.dictKey"> |
|
|
|
|
:value="item.dictKey" |
|
|
|
|
> |
|
|
|
|
</el-option> |
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="确认完成备货时间" prop="fixTime"> |
|
|
|
|
<el-date-picker v-model="form.fixTime" type="datetime" value-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择确认完成备货时间"></el-date-picker> |
|
|
|
|
<el-date-picker |
|
|
|
|
v-model="form.fixTime" |
|
|
|
|
type="datetime" |
|
|
|
|
value-format="YYYY-MM-DD HH:mm:ss" |
|
|
|
|
placeholder="请选择确认完成备货时间" |
|
|
|
|
></el-date-picker> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="指派时间" prop="assignTime"> |
|
|
|
|
<el-date-picker v-model="form.assignTime" type="datetime" value-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择指派时间"></el-date-picker> |
|
|
|
|
<el-date-picker |
|
|
|
|
v-model="form.assignTime" |
|
|
|
|
type="datetime" |
|
|
|
|
value-format="YYYY-MM-DD HH:mm:ss" |
|
|
|
|
placeholder="请选择指派时间" |
|
|
|
|
></el-date-picker> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-form> |
|
|
|
|
<!-- 表单按钮 --> |
|
|
|
|
<template #footer> |
|
|
|
|
<span v-if="!view" class="dialog-footer"> |
|
|
|
|
<el-button type="primary" icon="el-icon-circle-check" @click="handleSubmit">提 交</el-button> |
|
|
|
|
<el-button type="primary" icon="el-icon-circle-check" @click="handleSubmit" |
|
|
|
|
>提 交</el-button |
|
|
|
|
> |
|
|
|
|
<el-button icon="el-icon-circle-close" @click="box = false">取 消</el-button> |
|
|
|
|
</span> |
|
|
|
|
</template> |
|
|
|
|
</el-dialog> |
|
|
|
|
</div> |
|
|
|
|
</basic-container> |
|
|
|
|
<edittablehead |
|
|
|
|
@setcolum="setnewcolum" |
|
|
|
|
@closce="showdrawer" |
|
|
|
|
:drawerShow="drawerShow" |
|
|
|
|
:columnList="columnList" |
|
|
|
|
></edittablehead> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<script> |
|
|
|
|
import { getList, getDetail, add, update, remove,getListUser,addAssign } from "@/api/distribution/distributionStockup"; |
|
|
|
|
import { |
|
|
|
|
getList, |
|
|
|
|
getDetail, |
|
|
|
|
add, |
|
|
|
|
update, |
|
|
|
|
remove, |
|
|
|
|
getListUser, |
|
|
|
|
addAssign, |
|
|
|
|
} from '@/api/distribution/distributionStockup'; |
|
|
|
|
import { getPostList } from '@/api/system/post'; |
|
|
|
|
import { stockUp } from '@/api/basicdata/basicdataGoodsArea'; |
|
|
|
|
import { getListOwn,getUser } from '@/api/system/user'; |
|
|
|
|
import option from "@/option/distribution/distributionStockup"; |
|
|
|
|
import { mapGetters } from "vuex"; |
|
|
|
|
import { getListOwn, getUser } from '@/api/system/user'; |
|
|
|
|
import option from '@/option/distribution/distributionStockup'; |
|
|
|
|
import { mapGetters } from 'vuex'; |
|
|
|
|
import { getListTeam } from '@/api/basicdata/basicdataTeamGroup'; |
|
|
|
|
|
|
|
|
|
export default { |
|
|
|
|
data () { |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
columnList: [ |
|
|
|
|
{ |
|
|
|
|
prop: '', |
|
|
|
|
label: '序号', |
|
|
|
|
type: 0, |
|
|
|
|
values: '', |
|
|
|
|
width: 55, |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: true, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
prop: 'stockupDate', |
|
|
|
|
label: '备货时间', |
|
|
|
|
type: 2, |
|
|
|
|
values: '', |
|
|
|
|
width: '150', |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: true, |
|
|
|
|
sortable: true, |
|
|
|
|
head: false, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
prop: 'stockupUser', |
|
|
|
|
label: '备货人', |
|
|
|
|
type: 2, |
|
|
|
|
values: '', |
|
|
|
|
width: '150', |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: false, |
|
|
|
|
sortable: true, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
prop: 'stockupStatus', |
|
|
|
|
label: '备货状态', |
|
|
|
|
type: 2, |
|
|
|
|
values: '', |
|
|
|
|
width: '180', |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: false, |
|
|
|
|
sortable: true, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
prop: 'stockupArea', |
|
|
|
|
label: '备货区', |
|
|
|
|
type: 2, |
|
|
|
|
values: '', |
|
|
|
|
width: '180', |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: false, |
|
|
|
|
sortable: true, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
prop: 'assignStatus', |
|
|
|
|
label: '指派状态', |
|
|
|
|
type: 2, |
|
|
|
|
values: '', |
|
|
|
|
width: '150', |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: false, |
|
|
|
|
sortable: true, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
prop: 'stockipAllocation', |
|
|
|
|
label: '备货库位', |
|
|
|
|
type: 2, |
|
|
|
|
values: '', |
|
|
|
|
width: '150', |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: false, |
|
|
|
|
sortable: true, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
prop: 'goodsAreaId', |
|
|
|
|
label: '备货区编号', |
|
|
|
|
type: 2, |
|
|
|
|
values: '', |
|
|
|
|
width: '150', |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: false, |
|
|
|
|
sortable: true, |
|
|
|
|
head: true, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
prop: 'forklift', |
|
|
|
|
label: '叉车司机', |
|
|
|
|
type: 2, |
|
|
|
|
values: '', |
|
|
|
|
width: '150', |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: false, |
|
|
|
|
sortable: true, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
prop: 'loader', |
|
|
|
|
label: '装卸班组', |
|
|
|
|
type: 2, |
|
|
|
|
values: '', |
|
|
|
|
width: '150', |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: false, |
|
|
|
|
sortable: true, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
prop: 'fixTime', |
|
|
|
|
label: '确认完成备货时间', |
|
|
|
|
type: 5, |
|
|
|
|
values: '', |
|
|
|
|
width: '220', |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: false, |
|
|
|
|
sortable: true, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
prop: 'assignTime', |
|
|
|
|
label: '指派时间', |
|
|
|
|
type: 5, |
|
|
|
|
values: '', |
|
|
|
|
width: '220', |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: false, |
|
|
|
|
sortable: true, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
prop: '', |
|
|
|
|
label: '操作', |
|
|
|
|
type: 6, |
|
|
|
|
values: '', |
|
|
|
|
width: '160', |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: 'right', |
|
|
|
|
hide: true, |
|
|
|
|
}, |
|
|
|
|
// 更多列的配置... |
|
|
|
|
], |
|
|
|
|
columnListedit: [], |
|
|
|
|
drawerShow: false, |
|
|
|
|
height: 0, |
|
|
|
|
// 弹框标题 |
|
|
|
|
title: '', |
|
|
|
@ -239,7 +419,7 @@ export default {
|
|
|
|
|
page: { |
|
|
|
|
currentPage: 1, |
|
|
|
|
pageSize: 10, |
|
|
|
|
total: 40 |
|
|
|
|
total: 40, |
|
|
|
|
}, |
|
|
|
|
// 表单数据 |
|
|
|
|
form: {}, |
|
|
|
@ -253,34 +433,86 @@ export default {
|
|
|
|
|
loaderData: [], |
|
|
|
|
goodsAreaIdData: [], |
|
|
|
|
deptId: '', |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
mounted () { |
|
|
|
|
mounted() { |
|
|
|
|
this.init(); |
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
/** |
|
|
|
|
* 初始化获取本地缓存的编辑隐藏的列表 |
|
|
|
|
* 固定搭配,不能更改 |
|
|
|
|
*/ |
|
|
|
|
let newarr = this.$functions.getStorage(window.location.pathname); |
|
|
|
|
if (newarr) { |
|
|
|
|
this.columnList.map(item => { |
|
|
|
|
item.head = false; |
|
|
|
|
}); |
|
|
|
|
newarr.map(ite => { |
|
|
|
|
this.columnList.map(item => { |
|
|
|
|
if (ite == item.label) { |
|
|
|
|
item.head = true; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
computed: { |
|
|
|
|
...mapGetters(["permission"]), |
|
|
|
|
ids () { |
|
|
|
|
...mapGetters(['permission']), |
|
|
|
|
ids() { |
|
|
|
|
let ids = []; |
|
|
|
|
this.selectionList.forEach(ele => { |
|
|
|
|
ids.push(ele.id); |
|
|
|
|
}); |
|
|
|
|
return ids.join(","); |
|
|
|
|
} |
|
|
|
|
return ids.join(','); |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
showdrawer(value) { |
|
|
|
|
this.drawerShow = value; |
|
|
|
|
}, |
|
|
|
|
/** |
|
|
|
|
* 弹窗的勾选回调,用于更改头部数组 |
|
|
|
|
* 固定搭配,只需要更换 columnList |
|
|
|
|
*/ |
|
|
|
|
setnewcolum(newarr, headarr) { |
|
|
|
|
// console.log(newarr,'+++++++++++') |
|
|
|
|
this.columnList = newarr; |
|
|
|
|
this.$functions.setStorage(window.location.pathname, headarr); |
|
|
|
|
}, |
|
|
|
|
selectionsc(value) { |
|
|
|
|
console.log(value); |
|
|
|
|
}, |
|
|
|
|
delectsolt(scope) { |
|
|
|
|
const { row } = scope; |
|
|
|
|
console.log(row); |
|
|
|
|
}, |
|
|
|
|
editsolt(scope) { |
|
|
|
|
const { row } = scope; |
|
|
|
|
console.log(row); |
|
|
|
|
}, |
|
|
|
|
btnsc(index, row) { |
|
|
|
|
console.log(index, row); |
|
|
|
|
}, |
|
|
|
|
selectsc(index, row) { |
|
|
|
|
console.log(index, row); |
|
|
|
|
}, |
|
|
|
|
timesc(index, row) { |
|
|
|
|
console.log(index, row); |
|
|
|
|
}, |
|
|
|
|
inputsc(index, row) { |
|
|
|
|
console.log(index, row); |
|
|
|
|
}, |
|
|
|
|
//查询备货 |
|
|
|
|
getStockUp(row){ |
|
|
|
|
console.log("row",row); |
|
|
|
|
getStockUp(row) { |
|
|
|
|
console.log('row', row); |
|
|
|
|
let params = {}; |
|
|
|
|
switch (row) { |
|
|
|
|
case '1': |
|
|
|
|
params.stockupStatus = '2' |
|
|
|
|
break; |
|
|
|
|
case '2': |
|
|
|
|
params.stockupStatus = '3' |
|
|
|
|
break; |
|
|
|
|
case '1': |
|
|
|
|
params.stockupStatus = '2'; |
|
|
|
|
break; |
|
|
|
|
case '2': |
|
|
|
|
params.stockupStatus = '3'; |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
getList(this.page.currentPage, this.page.pageSize, params).then(res => { |
|
|
|
|
const data = res.data.data; |
|
|
|
@ -291,125 +523,126 @@ export default {
|
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
//查询叉车人员 |
|
|
|
|
async getFork(){ |
|
|
|
|
async getFork() { |
|
|
|
|
let ides = ''; |
|
|
|
|
let ide = { }; |
|
|
|
|
await getListUser().then(res =>{ |
|
|
|
|
let ide = {}; |
|
|
|
|
await getListUser().then(res => { |
|
|
|
|
// console.log("res>>>",res.data.data); |
|
|
|
|
ides = res.data.data.tenantId; |
|
|
|
|
this.deptId = res.data.data.deptId; |
|
|
|
|
}) |
|
|
|
|
await getPostList(ides).then(res =>{ |
|
|
|
|
}); |
|
|
|
|
await getPostList(ides).then(res => { |
|
|
|
|
// console.log(">>>>",res.data.data); |
|
|
|
|
res.data.data.forEach(i =>{ |
|
|
|
|
if(i.postName == "叉车"){ |
|
|
|
|
res.data.data.forEach(i => { |
|
|
|
|
if (i.postName == '叉车') { |
|
|
|
|
ide = i; |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
// console.log("ied>>>>>",ide); |
|
|
|
|
let params={ |
|
|
|
|
let params = { |
|
|
|
|
postId: ide.id, //岗位 |
|
|
|
|
deptId: this.deptId, //部门 |
|
|
|
|
// roleId: '', //角色 |
|
|
|
|
} |
|
|
|
|
getListOwn(Object.assign(params, this.query)).then(res =>{ |
|
|
|
|
}; |
|
|
|
|
getListOwn(Object.assign(params, this.query)).then(res => { |
|
|
|
|
// console.log(".............",res.data.data); |
|
|
|
|
let fo = []; |
|
|
|
|
res.data.data.forEach( i =>{ |
|
|
|
|
let a ={ |
|
|
|
|
res.data.data.forEach(i => { |
|
|
|
|
let a = { |
|
|
|
|
dictKey: i.id, |
|
|
|
|
dictValue: i.name |
|
|
|
|
dictValue: i.name, |
|
|
|
|
}; |
|
|
|
|
fo.push(a); |
|
|
|
|
}); |
|
|
|
|
this.forkliftData = fo; |
|
|
|
|
}) |
|
|
|
|
await this.getStorageArea(); |
|
|
|
|
await this.getTeam(); |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
await this.getStorageArea(); |
|
|
|
|
await this.getTeam(); |
|
|
|
|
}, |
|
|
|
|
//查询班组 |
|
|
|
|
async getTeam(){ |
|
|
|
|
let params ={ |
|
|
|
|
department: this.deptId |
|
|
|
|
} |
|
|
|
|
getListTeam(this.page.currentPage, this.page.pageSize, Object.assign(params, this.query)).then(res =>{ |
|
|
|
|
async getTeam() { |
|
|
|
|
let params = { |
|
|
|
|
department: this.deptId, |
|
|
|
|
}; |
|
|
|
|
getListTeam( |
|
|
|
|
this.page.currentPage, |
|
|
|
|
this.page.pageSize, |
|
|
|
|
Object.assign(params, this.query) |
|
|
|
|
).then(res => { |
|
|
|
|
// console.log(">><><",res.data.data.records); |
|
|
|
|
let fo= []; |
|
|
|
|
res.data.data.records.forEach(i =>{ |
|
|
|
|
let a= { |
|
|
|
|
let fo = []; |
|
|
|
|
res.data.data.records.forEach(i => { |
|
|
|
|
let a = { |
|
|
|
|
dictKey: i.id, |
|
|
|
|
dictValue: i.name +'-'+i.groupName |
|
|
|
|
} |
|
|
|
|
dictValue: i.name + '-' + i.groupName, |
|
|
|
|
}; |
|
|
|
|
fo.push(a); |
|
|
|
|
}); |
|
|
|
|
this.loaderData = fo; |
|
|
|
|
}) |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
//备货区 |
|
|
|
|
async getStorageArea(){ |
|
|
|
|
let params ={ |
|
|
|
|
department: this.deptId |
|
|
|
|
} |
|
|
|
|
stockUp(params).then(res =>{ |
|
|
|
|
async getStorageArea() { |
|
|
|
|
let params = { |
|
|
|
|
department: this.deptId, |
|
|
|
|
}; |
|
|
|
|
stockUp(params).then(res => { |
|
|
|
|
// console.log("res>>>",res.data.data); |
|
|
|
|
let fo =[]; |
|
|
|
|
res.data.data.forEach(i =>{ |
|
|
|
|
let fo = []; |
|
|
|
|
res.data.data.forEach(i => { |
|
|
|
|
let v = { |
|
|
|
|
dictKey: i.id, |
|
|
|
|
dictValue: i.name +'-'+i.headline |
|
|
|
|
} |
|
|
|
|
fo.push(v) |
|
|
|
|
}) |
|
|
|
|
dictValue: i.name + '-' + i.headline, |
|
|
|
|
}; |
|
|
|
|
fo.push(v); |
|
|
|
|
}); |
|
|
|
|
this.goodsAreaIdData = fo; |
|
|
|
|
}) |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
handleForklift(){ |
|
|
|
|
if (this.selectionList.length === 0) { |
|
|
|
|
this.$message.warning("请选择至少一条数据"); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
handleForklift() { |
|
|
|
|
if (this.selectionList.length === 0) { |
|
|
|
|
this.$message.warning('请选择至少一条数据'); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
this.dialogFormCustomer = true; |
|
|
|
|
this.getFork(); |
|
|
|
|
this.getTeam() |
|
|
|
|
|
|
|
|
|
this.getTeam(); |
|
|
|
|
}, |
|
|
|
|
//确定指派 |
|
|
|
|
callFordelivery(){ |
|
|
|
|
callFordelivery() { |
|
|
|
|
this.form.ids = this.ids; |
|
|
|
|
addAssign(this.form).then(res =>{ |
|
|
|
|
addAssign(this.form).then(res => { |
|
|
|
|
this.$message({ |
|
|
|
|
type: "success", |
|
|
|
|
message: "操作成功!" |
|
|
|
|
type: 'success', |
|
|
|
|
message: '操作成功!', |
|
|
|
|
}); |
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
this.dialogFormCustomer = false; |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
init () { |
|
|
|
|
init() { |
|
|
|
|
this.height = this.setPx(document.body.clientHeight - 340); |
|
|
|
|
}, |
|
|
|
|
searchHide () { |
|
|
|
|
searchHide() { |
|
|
|
|
this.search = !this.search; |
|
|
|
|
}, |
|
|
|
|
searchChange () { |
|
|
|
|
searchChange() { |
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
}, |
|
|
|
|
searchReset () { |
|
|
|
|
searchReset() { |
|
|
|
|
this.query = {}; |
|
|
|
|
this.page.currentPage = 1; |
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
}, |
|
|
|
|
handleSubmit () { |
|
|
|
|
handleSubmit() { |
|
|
|
|
if (!this.form.id) { |
|
|
|
|
add(this.form).then(() => { |
|
|
|
|
this.box = false; |
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
this.$message({ |
|
|
|
|
type: "success", |
|
|
|
|
message: "操作成功!" |
|
|
|
|
type: 'success', |
|
|
|
|
message: '操作成功!', |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
@ -417,41 +650,41 @@ export default {
|
|
|
|
|
this.box = false; |
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
this.$message({ |
|
|
|
|
type: "success", |
|
|
|
|
message: "操作成功!" |
|
|
|
|
type: 'success', |
|
|
|
|
message: '操作成功!', |
|
|
|
|
}); |
|
|
|
|
}) |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
handleAdd () { |
|
|
|
|
this.title = '新增' |
|
|
|
|
this.form = {} |
|
|
|
|
this.box = true |
|
|
|
|
handleAdd() { |
|
|
|
|
this.title = '新增'; |
|
|
|
|
this.form = {}; |
|
|
|
|
this.box = true; |
|
|
|
|
}, |
|
|
|
|
handleEdit (row) { |
|
|
|
|
this.title = '编辑' |
|
|
|
|
this.box = true |
|
|
|
|
handleEdit(row) { |
|
|
|
|
this.title = '编辑'; |
|
|
|
|
this.box = true; |
|
|
|
|
getDetail(row.id).then(res => { |
|
|
|
|
this.form = res.data.data; |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
handleView (row) { |
|
|
|
|
this.title = '查看' |
|
|
|
|
handleView(row) { |
|
|
|
|
this.title = '查看'; |
|
|
|
|
this.view = true; |
|
|
|
|
this.box = true; |
|
|
|
|
getDetail(row.id).then(res => { |
|
|
|
|
this.form = res.data.data; |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
handleDelete () { |
|
|
|
|
handleDelete() { |
|
|
|
|
if (this.selectionList.length === 0) { |
|
|
|
|
this.$message.warning("请选择至少一条数据"); |
|
|
|
|
this.$message.warning('请选择至少一条数据'); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
this.$confirm("确定将选择数据删除?", { |
|
|
|
|
confirmButtonText: "确定", |
|
|
|
|
cancelButtonText: "取消", |
|
|
|
|
type: "warning" |
|
|
|
|
this.$confirm('确定将选择数据删除?', { |
|
|
|
|
confirmButtonText: '确定', |
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
type: 'warning', |
|
|
|
|
}) |
|
|
|
|
.then(() => { |
|
|
|
|
return remove(this.ids); |
|
|
|
@ -460,16 +693,16 @@ export default {
|
|
|
|
|
this.selectionClear(); |
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
this.$message({ |
|
|
|
|
type: "success", |
|
|
|
|
message: "操作成功!" |
|
|
|
|
type: 'success', |
|
|
|
|
message: '操作成功!', |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
rowDel (row) { |
|
|
|
|
this.$confirm("确定将选择数据删除?", { |
|
|
|
|
confirmButtonText: "确定", |
|
|
|
|
cancelButtonText: "取消", |
|
|
|
|
type: "warning" |
|
|
|
|
rowDel(row) { |
|
|
|
|
this.$confirm('确定将选择数据删除?', { |
|
|
|
|
confirmButtonText: '确定', |
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
type: 'warning', |
|
|
|
|
}) |
|
|
|
|
.then(() => { |
|
|
|
|
return remove(row.id); |
|
|
|
@ -477,64 +710,64 @@ export default {
|
|
|
|
|
.then(() => { |
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
this.$message({ |
|
|
|
|
type: "success", |
|
|
|
|
message: "操作成功!" |
|
|
|
|
type: 'success', |
|
|
|
|
message: '操作成功!', |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
beforeClose (done) { |
|
|
|
|
done() |
|
|
|
|
beforeClose(done) { |
|
|
|
|
done(); |
|
|
|
|
this.form = {}; |
|
|
|
|
this.view = false; |
|
|
|
|
}, |
|
|
|
|
selectionChange (list) { |
|
|
|
|
selectionChange(list) { |
|
|
|
|
this.selectionList = list; |
|
|
|
|
}, |
|
|
|
|
selectionClear () { |
|
|
|
|
selectionClear() { |
|
|
|
|
this.selectionList = []; |
|
|
|
|
this.$refs.table.clearSelection(); |
|
|
|
|
// this.$refs.table.clearSelection(); |
|
|
|
|
}, |
|
|
|
|
currentChange (currentPage) { |
|
|
|
|
currentChange(currentPage) { |
|
|
|
|
this.page.currentPage = currentPage; |
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
}, |
|
|
|
|
sizeChange (pageSize) { |
|
|
|
|
sizeChange(pageSize) { |
|
|
|
|
this.page.pageSize = pageSize; |
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
}, |
|
|
|
|
onLoad (page, params = {}) { |
|
|
|
|
onLoad(page, params = {}) { |
|
|
|
|
this.loading = true; |
|
|
|
|
this.query.typeService = 1; |
|
|
|
|
getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => { |
|
|
|
|
const data = res.data.data; |
|
|
|
|
this.page.total = data.total; |
|
|
|
|
this.data = data.records; |
|
|
|
|
this.data.forEach(async i =>{ |
|
|
|
|
if(i.forklift != "-1"){ |
|
|
|
|
console.log("i==",i); |
|
|
|
|
let a = await getUser(i.forklift); |
|
|
|
|
i.forklift =a.data.data.name; |
|
|
|
|
} |
|
|
|
|
this.data.forEach(async i => { |
|
|
|
|
if (i.forklift != '-1') { |
|
|
|
|
console.log('i==', i); |
|
|
|
|
let a = await getUser(i.forklift); |
|
|
|
|
i.forklift = a.data.data.name; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
i.loader = i.groupName; |
|
|
|
|
i.stockupArea = i.headline; |
|
|
|
|
if(i.assignStatus == '2'){ |
|
|
|
|
i.assignStatus = '已指派'; |
|
|
|
|
}else{ |
|
|
|
|
i.assignStatus = '未指派'; |
|
|
|
|
} |
|
|
|
|
if(i.stockupStatus == '2'){ |
|
|
|
|
i.stockupStatus = '待备货'; |
|
|
|
|
}else if(i.stockupStatus == '3'){ |
|
|
|
|
i.stockupStatus = '已备货'; |
|
|
|
|
}else{ |
|
|
|
|
i.stockupStatus = '未备货'; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
this.selectionClear(); |
|
|
|
|
i.loader = i.groupName; |
|
|
|
|
i.stockupArea = i.headline; |
|
|
|
|
if (i.assignStatus == '2') { |
|
|
|
|
i.assignStatus = '已指派'; |
|
|
|
|
} else { |
|
|
|
|
i.assignStatus = '未指派'; |
|
|
|
|
} |
|
|
|
|
if (i.stockupStatus == '2') { |
|
|
|
|
i.stockupStatus = '待备货'; |
|
|
|
|
} else if (i.stockupStatus == '3') { |
|
|
|
|
i.stockupStatus = '已备货'; |
|
|
|
|
} else { |
|
|
|
|
i.stockupStatus = '未备货'; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
// this.selectionClear(); |
|
|
|
|
this.loading = false; |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
}; |
|
|
|
|
</script> |
|
|
|
|