3 changed files with 720 additions and 2 deletions
@ -0,0 +1,13 @@
|
||||
// /basicdataClient/dictList
|
||||
import request from '@/axios'; |
||||
|
||||
/** |
||||
* 获取商城列表 |
||||
*/ |
||||
export const getDictList = params => { |
||||
return request({ |
||||
url: '/api/logpm-basicdata/basicdataClient/dictList', |
||||
method: 'get', |
||||
params, |
||||
}); |
||||
}; |
@ -0,0 +1,700 @@
|
||||
<template> |
||||
<basic-container> |
||||
<div class="avue-crud"> |
||||
<el-row v-if="!search"> |
||||
<!-- 查询模块 --> |
||||
<el-form :inline="true" :model="query"> |
||||
<div class="fo-rl"> |
||||
<el-form-item label="货物名称:"> |
||||
<el-input v-model="query.descriptionGoods" placeholder="请输入货物名称"></el-input> |
||||
</el-form-item> |
||||
<el-form-item label="货物编号:"> |
||||
<el-input v-model="query.cargoNumber" placeholder="请输入商城名称"></el-input> |
||||
</el-form-item> |
||||
<el-form-item label="物流车次:"> |
||||
<el-input v-model="query.despatch" placeholder="请输入商城名称"></el-input> |
||||
</el-form-item> |
||||
</div> |
||||
<!-- 查询按钮 --> |
||||
<el-form-item> |
||||
<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 icon="el-icon-plus" type="primary" @click="createCheckTask" |
||||
>创建盘点任务</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> |
||||
<el-row> |
||||
<!-- 列表模块 --> |
||||
<tablecmt |
||||
:columnList="columnList" |
||||
:tableData="data" |
||||
:loading="loading" |
||||
@inputTxt="inputsc" |
||||
@timeCheck="timesc" |
||||
@btnCheck="btnsc" |
||||
@selectCheck="selectsc" |
||||
@selection="selectionChange" |
||||
> |
||||
<template #default="slotProps"> |
||||
<el-text |
||||
type="primary" |
||||
text |
||||
icon="el-icon-view" |
||||
@click="handleViewCheck(slotProps.scope)" |
||||
>查 看</el-text |
||||
> |
||||
<el-text |
||||
type="primary" |
||||
text |
||||
icon="el-icon-view" |
||||
@click="handleEditCheck(slotProps.scope)" |
||||
>编 辑</el-text |
||||
> |
||||
<el-text |
||||
type="primary" |
||||
text |
||||
icon="el-icon-view" |
||||
@click="handleDeleteCheck(slotProps.scope)" |
||||
>删 除</el-text |
||||
> |
||||
</template> |
||||
</tablecmt> |
||||
</el-row> |
||||
<el-row> |
||||
<div class="avue-crud__pagination flex-c-sb" style="width: 100%"> |
||||
<div style="font-size: 14px">勾选数量: {{ selectionList.length }}</div> |
||||
<!-- 分页模块 --> |
||||
<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> |
||||
</div> |
||||
</el-row> |
||||
|
||||
<!-- 表单模块 --> |
||||
<el-dialog |
||||
:title="title" |
||||
v-model="box" |
||||
width="50%" |
||||
center |
||||
:before-close="beforeClose" |
||||
append-to-body |
||||
> |
||||
<el-form :disabled="view" ref="form" :model="form" label-width="120px"> |
||||
<!-- 表单字段 --> |
||||
<el-form-item label="订单自编号" prop="orderCode"> |
||||
<el-input v-model="form.orderCode" placeholder="请输入订单自编号" clearable /> |
||||
</el-form-item> |
||||
<el-form-item label="商场名称" prop="orderCode"> |
||||
<el-select v-model="form.region" multiple placeholder="请选择商场" clearable> |
||||
<template v-if="form.selectList && form.selectList.length !== 0"> |
||||
<el-option |
||||
v-for="item in form.selectList" |
||||
:label="item.clientName" |
||||
:value="item.id" |
||||
/> |
||||
</template> |
||||
</el-select> |
||||
</el-form-item> |
||||
<el-form-item label="品牌" prop="orderCode"> |
||||
<el-input v-model="form.brandName" placeholder="品牌名称" disabled /> |
||||
</el-form-item> |
||||
<el-form-item label="订单时间"> |
||||
<div class="block" prop="time"> |
||||
<el-date-picker |
||||
v-model="form.time" |
||||
type="datetimerange" |
||||
start-placeholder="盘点开始时间" |
||||
end-placeholder="盘点结束时间" |
||||
:default-time="defaultTime1" |
||||
@change="timeChange" |
||||
/> |
||||
</div> |
||||
</el-form-item> |
||||
</el-form> |
||||
<!-- 表单按钮 --> |
||||
<template #footer> |
||||
<span v-if="!view" class="dialog-footer"> |
||||
<el-button |
||||
type="primary" |
||||
v-if="isEdit" |
||||
icon="el-icon-circle-check" |
||||
@click="handleEditSubmit" |
||||
>修 改</el-button |
||||
> |
||||
<el-button type="primary" v-else 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 { getDictList } from '@/api/distribution/createTask'; |
||||
import { mapGetters } from 'vuex'; |
||||
import dayjs from 'dayjs'; |
||||
import { getDictionaryBiz } from '@/api/system/dict'; |
||||
|
||||
export default { |
||||
data() { |
||||
return { |
||||
drawerShow: false, |
||||
distributionType: [], |
||||
distributionUnit: [], |
||||
|
||||
columnList: [ |
||||
{ |
||||
prop: '', |
||||
label: '全选', |
||||
type: 0, |
||||
values: '', |
||||
width: '55', |
||||
checkarr: [], |
||||
fixed: true, |
||||
}, |
||||
{ |
||||
prop: 'serviceNumber', |
||||
label: '仓库名称', |
||||
type: 2, |
||||
values: '', |
||||
width: '130', |
||||
checkarr: [], |
||||
fixed: true, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
|
||||
{ |
||||
prop: 'serviceNumber', |
||||
label: '商城名称', |
||||
type: 2, |
||||
values: '', |
||||
width: '130', |
||||
checkarr: [], |
||||
fixed: true, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
|
||||
{ |
||||
prop: 'serviceNumber', |
||||
label: '任务开始时间', |
||||
type: 2, |
||||
values: '', |
||||
width: '130', |
||||
checkarr: [], |
||||
fixed: true, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
|
||||
{ |
||||
prop: 'serviceNumber', |
||||
label: '任务结束时间', |
||||
type: 2, |
||||
values: '', |
||||
width: '130', |
||||
checkarr: [], |
||||
fixed: true, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
|
||||
{ |
||||
prop: 'serviceNumber', |
||||
label: '类型', |
||||
type: 2, |
||||
values: '', |
||||
width: '130', |
||||
checkarr: [], |
||||
fixed: true, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
|
||||
{ |
||||
prop: 'unpack', |
||||
label: '拆包状态', |
||||
type: 1, |
||||
values: '', |
||||
width: '130', |
||||
checkarr: [ |
||||
{ |
||||
value: `true`, |
||||
label: '是', |
||||
}, |
||||
{ |
||||
value: `false`, |
||||
label: '否', |
||||
}, |
||||
], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
|
||||
{ |
||||
prop: '', |
||||
label: '操作', |
||||
type: 6, |
||||
values: '', |
||||
width: '200', |
||||
checkarr: [], |
||||
fixed: 'right', |
||||
hide: true, |
||||
}, |
||||
// 更多列的配置... |
||||
], |
||||
|
||||
height: 0, |
||||
|
||||
// 弹框标题 |
||||
title: '', |
||||
stockList: {}, //拆包对象 |
||||
// stockId: '', //拆包id |
||||
// materialId: '', //物料id |
||||
// marketId: '', //客户id |
||||
// storeId: '', //客户id |
||||
// 是否展示弹框 |
||||
box: false, |
||||
// 是否显示查询 |
||||
search: true, |
||||
// 加载中 |
||||
loading: true, |
||||
// 是否为查看模式 |
||||
view: false, |
||||
// 是否为修改提交 |
||||
isEdit: false, |
||||
// 查询信息 |
||||
query: {}, |
||||
// 分页信息 |
||||
page: { |
||||
currentPage: 1, |
||||
pageSize: 30, |
||||
total: 40, |
||||
}, |
||||
|
||||
// 表单数据 |
||||
form: {}, |
||||
|
||||
// 选择行 |
||||
selectionList: [], |
||||
// 表单列表 |
||||
data: [], |
||||
}; |
||||
}, |
||||
mounted() { |
||||
this.init(); |
||||
// this.onLoad(this.page); |
||||
/** |
||||
* 初始化获取本地缓存的编辑隐藏的列表 |
||||
* 固定搭配,不能更改 |
||||
*/ |
||||
let checkListnewarr = this.$functions.getStorage(window.location.pathname + 'checkList'); |
||||
let flexListnewarr = this.$functions.getStorage(window.location.pathname + 'flexList'); |
||||
let sortlistnewarr = this.$functions.getStorage(window.location.pathname + 'sortlist'); |
||||
if (checkListnewarr) { |
||||
this.columnList.map(item => { |
||||
item.head = false; |
||||
}); |
||||
checkListnewarr.map(ite => { |
||||
this.columnList.map(item => { |
||||
if (ite == item.label) { |
||||
item.head = true; |
||||
} |
||||
}); |
||||
}); |
||||
} else { |
||||
let arr = []; |
||||
this.columnList.map(item => { |
||||
if (item.head) { |
||||
arr.push(item.label); |
||||
} |
||||
}); |
||||
this.$functions.setStorage(window.location.pathname + 'checkList', arr); |
||||
} |
||||
if (flexListnewarr) { |
||||
this.columnList.map(item => { |
||||
item.fixed = false; |
||||
}); |
||||
flexListnewarr.map(ite => { |
||||
this.columnList.map(item => { |
||||
if (ite == item.label) { |
||||
if (item.type == 6) { |
||||
item.fixed = 'right'; |
||||
} else { |
||||
item.fixed = true; |
||||
} |
||||
} |
||||
}); |
||||
}); |
||||
} else { |
||||
let arr = []; |
||||
this.columnList.map(item => { |
||||
if (item.fixed) { |
||||
arr.push(item.label); |
||||
} |
||||
}); |
||||
this.$functions.setStorage(window.location.pathname + 'flexList', arr); |
||||
} |
||||
if (sortlistnewarr) { |
||||
this.columnList.map(item => { |
||||
item.sortable = false; |
||||
}); |
||||
sortlistnewarr.map(ite => { |
||||
this.columnList.map(item => { |
||||
if (ite == item.label) { |
||||
item.sortable = true; |
||||
} |
||||
}); |
||||
}); |
||||
} else { |
||||
let arr = []; |
||||
this.columnList.map(item => { |
||||
if (item.sortable) { |
||||
arr.push(item.label); |
||||
} |
||||
}); |
||||
this.$functions.setStorage(window.location.pathname + 'sortlist', arr); |
||||
} |
||||
}, |
||||
computed: { |
||||
...mapGetters(['permission']), |
||||
ids() { |
||||
let ids = []; |
||||
this.selectionList.forEach(ele => { |
||||
ids.push(ele.id); |
||||
}); |
||||
return ids.join(','); |
||||
}, |
||||
}, |
||||
methods: { |
||||
timeChange(value) { |
||||
console.log('value :>> ', value); |
||||
value.forEach((item)=>{ |
||||
console.log('item :>> ', item); |
||||
item.getFullYear() |
||||
console.log('item.getFullYear() :>> ', item.getFullYear()); |
||||
// const date = new Date(item) |
||||
// console.log('date :>> ', date); |
||||
}) |
||||
}, |
||||
|
||||
showdrawer(value) { |
||||
this.drawerShow = value; |
||||
}, |
||||
/** |
||||
* 弹窗的勾选回调,用于更改头部数组 |
||||
* 固定搭配,只需要更换 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); |
||||
} |
||||
}, |
||||
|
||||
btnsc(index, row) { |
||||
console.log(index, row); |
||||
}, |
||||
|
||||
selectsc(index, row) { |
||||
console.log(index, row); |
||||
if (row.prop === 'completeSetName') { |
||||
this.query['completeSet'] = index; |
||||
} else if (row.prop === 'serviceTypeName') { |
||||
this.query['serviceType'] = index; |
||||
} else { |
||||
this.query[row.prop] = index; |
||||
} |
||||
this.onLoad(this.page); |
||||
}, |
||||
|
||||
timesc(index, row) { |
||||
console.log(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); |
||||
}, |
||||
|
||||
inputsc(index, row) { |
||||
console.log(index, row); |
||||
// console.log(index, row.prop); |
||||
this.query[row.prop] = index; |
||||
this.onLoad(this.page); |
||||
}, |
||||
|
||||
//数量校验 |
||||
handleNumberRange(e, row) { |
||||
// console.log("执行了2222",e,e.target.value,row); |
||||
if (e.target.value) { |
||||
e.target.value = e.target.value.replace(/[^\.\d]/g, ''); //替换掉与数字无关的字符(中英文与符号都会被替换掉,只留下数字,此时值类型为字符串) |
||||
if (e.target.value) { |
||||
//如果替换后还有值 |
||||
e.target.value = parseInt(e.target.value); //把字符型转成整数型 |
||||
} |
||||
if (e.target.value > row.number) { |
||||
this.$message.error('数量不能大于订单数'); |
||||
e.target.value = row.number; |
||||
return; |
||||
} |
||||
} |
||||
}, |
||||
// 初始化页面设置 |
||||
init() { |
||||
this.height = this.setPx(document.body.clientHeight - 340); |
||||
getDictionaryBiz('logpm_unit').then(res => { |
||||
this.distributionUnit = res.data.data; |
||||
console.log(this.distributionUnit); |
||||
}); |
||||
getDictionaryBiz('distribution_type').then(res => { |
||||
this.distributionType = res.data.data; |
||||
this.columnList[2].checkarr = res.data.data.map(item => { |
||||
item.value = item.dictKey; |
||||
item.label = item.dictValue; |
||||
return item; |
||||
}); |
||||
}); |
||||
|
||||
this.onLoad(this.page); |
||||
}, |
||||
searchHide() { |
||||
this.search = !this.search; |
||||
}, |
||||
searchChange() { |
||||
this.onLoad(this.page); |
||||
}, |
||||
searchReset() { |
||||
this.query = {}; |
||||
this.page.currentPage = 1; |
||||
this.onLoad(this.page); |
||||
}, |
||||
|
||||
// 开启创建弹窗 |
||||
async createCheckTask() { |
||||
this.title = '创建盘点任务'; |
||||
this.isEdit = false; // 修改是否为修改提交的状态 |
||||
this.box = true; // 开启弹框 |
||||
this.form = {}; // 清空表单 |
||||
// 请求商场名称 |
||||
const res = await getDictList(); |
||||
const { code, data } = res.data; |
||||
|
||||
if (code === 200 && !!data) { |
||||
console.log('data :>> ', data); |
||||
this.form.selectList = data.map(item => { |
||||
return { |
||||
// 商城名称 |
||||
clientName: item.clientName, |
||||
// 商场id |
||||
id: item.id, |
||||
// 商场下品牌名 |
||||
brandName: item.brandName, |
||||
}; |
||||
}); |
||||
} |
||||
}, |
||||
|
||||
// 提交 |
||||
handleSubmit() {}, |
||||
|
||||
// 修改提交 |
||||
handleEditSubmit() {}, |
||||
|
||||
handleDelete() { |
||||
if (this.selectionList.length === 0) { |
||||
this.$message.warning('请选择至少一条数据'); |
||||
return; |
||||
} |
||||
this.$confirm('确定将选择数据删除?', { |
||||
confirmButtonText: '确定', |
||||
cancelButtonText: '取消', |
||||
type: 'warning', |
||||
}) |
||||
.then(() => { |
||||
return; |
||||
}) |
||||
.then(() => { |
||||
this.selectionClear(); |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: 'success', |
||||
message: '操作成功!', |
||||
}); |
||||
}); |
||||
}, |
||||
|
||||
/** |
||||
* 删除单个任务 |
||||
*/ |
||||
handleDeleteCheck() { |
||||
this.$confirm('确定将选择数据删除?', { |
||||
confirmButtonText: '确定', |
||||
cancelButtonText: '取消', |
||||
type: 'warning', |
||||
}) |
||||
.then(() => { |
||||
return; |
||||
}) |
||||
.then(() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: 'success', |
||||
message: '操作成功!', |
||||
}); |
||||
}); |
||||
}, |
||||
|
||||
/** |
||||
* 查看单个任务 |
||||
*/ |
||||
handleViewCheck(row) { |
||||
// 开启查看模式 |
||||
this.view = true; |
||||
this.form = row; |
||||
}, |
||||
|
||||
/** |
||||
* 编辑单个任务 |
||||
*/ |
||||
handleEditCheck(row) { |
||||
this.title = '编辑盘点任务'; |
||||
this.isEdit = true; // 此次为修改提交 |
||||
this.box = true; // 开启弹窗 |
||||
console.log('row :>> ', row); |
||||
}, |
||||
|
||||
beforeClose(done) { |
||||
done(); |
||||
this.form = {}; |
||||
this.view = false; |
||||
}, |
||||
selectionChange(list) { |
||||
this.selectionList = list; |
||||
}, |
||||
selectionClear() { |
||||
this.selectionList = []; |
||||
}, |
||||
currentChange(currentPage) { |
||||
this.page.currentPage = currentPage; |
||||
this.onLoad(this.page); |
||||
}, |
||||
sizeChange(pageSize) { |
||||
this.page.pageSize = pageSize; |
||||
this.onLoad(this.page); |
||||
}, |
||||
onLoad(page, params = {}) { |
||||
this.loading = true; |
||||
this.query.serviceType = '3'; |
||||
this.data = []; |
||||
this.loading = false; |
||||
}, |
||||
}, |
||||
watch: { |
||||
// 监听商场名称的选择变化 |
||||
'form.region'(newVal) { |
||||
let _value = ''; |
||||
// 当没选择商场时, 品牌清空 |
||||
if (newVal.length === 0) return (this.form.brandName = _value); |
||||
|
||||
// 循环获取品牌名称 |
||||
this.form.brandName = newVal.reduce((curr, item)=> { |
||||
const _brandName = this.form.selectList.find(val => val.id === item).brandName; |
||||
if (_brandName) return curr += _brandName; |
||||
return curr |
||||
}, '') |
||||
}, |
||||
}, |
||||
}; |
||||
</script> |
||||
<style lang="scss" scoped> |
||||
.zhu { |
||||
display: flex; |
||||
flex-direction: row; |
||||
} |
||||
.yi { |
||||
border-width: 0 1px 1px 0; |
||||
border-style: solid; |
||||
border-color: black; |
||||
width: 20%; |
||||
font-size: 14px; |
||||
text-align: right; |
||||
padding: 1%; |
||||
} |
||||
.er { |
||||
border-width: 0 0 1px 0; |
||||
border-style: solid; |
||||
border-color: black; |
||||
width: 90%; |
||||
font-size: 14px; |
||||
padding: 1%; |
||||
} |
||||
.demo-form-inline .el-input { |
||||
--el-input-width: 220px; |
||||
} |
||||
</style> |
||||
<style scoped lang="scss"> |
||||
.el-row:first-of-type { |
||||
/* 样式规则 */ |
||||
.el-form { |
||||
width: 100%; |
||||
display: flex; |
||||
justify-content: space-between; |
||||
.el-form-item { |
||||
margin-right: 0; |
||||
} |
||||
} |
||||
} |
||||
.fo-rl { |
||||
.el-form-item { |
||||
margin-right: 20px !important; |
||||
} |
||||
} |
||||
:deep(.el-date-editor.el-input__wrapper) { |
||||
height: auto !important; |
||||
} |
||||
</style> |
Loading…
Reference in new issue