Browse Source

新增盘点基础页面样式

fix_bug_pro20231227
qb 1 year ago
parent
commit
9574715359
  1. 13
      src/api/distribution/createTask.js
  2. 700
      src/views/distribution/checkInventoryTask/createTask.vue
  3. 9
      vite.config.js

13
src/api/distribution/createTask.js

@ -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,
});
};

700
src/views/distribution/checkInventoryTask/createTask.vue

@ -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>

9
vite.config.js

@ -13,10 +13,15 @@ export default ({ mode, command }) => {
proxy: {
'/api': {
// target: 'http://192.168.10.126:8889',
// hy
// target: 'http://192.168.10.48:8888',
// target: 'http://192.168.10.123:8889',
// lmy
target: 'http://192.168.10.123:8889',
// caoge
// target: 'http://192.168.10.101:8888',
target: 'http://192.168.10.75:8777',
// cyz
// target: 'http://192.168.10.75:8777',
// tjj
// target: 'http://192.168.10.29:13000',
// target: 'http://test.api.huitongys.com',
changeOrigin: true,

Loading…
Cancel
Save