Browse Source

Merge branch 'dev' into pre-production

fix_bug_pro20231227
pref_mail@163.com 1 year ago
parent
commit
d774011648
  1. 18
      src/api/LsystemsInventory/LsystemsInventory.js
  2. 295
      src/views/basic/pda/basicPdaTTTT.vue
  3. 941
      src/views/distribution/LsystemsInventory/LsystemsInventory.vue
  4. 1
      src/views/distribution/deliverylist/distributionDeliveryListdis.vue
  5. 3
      src/views/distribution/deliverylist/distributionDeliveryListedt.vue
  6. 2
      src/views/distribution/inventory/delivery/distributionStockArticleMarket.vue
  7. 19
      src/views/distribution/inventory/distrilbutionBillLadingList.vue
  8. 4
      src/views/distribution/inventory/distrilbutionBillLadingView.vue
  9. 61
      src/views/distribution/reservation/reservationAddFrom.vue
  10. 19
      src/views/distribution/turndelivery/deliveryDiscuss.vue
  11. 5
      vite.config.js

18
src/api/LsystemsInventory/LsystemsInventory.js

@ -0,0 +1,18 @@
import request from '@/axios';
// 同步老系统盘点数据列表接口
export const $_SyncInventoryList = data => {
return request({
url: '/logpm-patch/syncInventory/list',
method: 'POST',
data,
});
};
// 新增同步老系统盘点数据
export const $_SyncInventorySubmit = data => {
return request({
url: '/logpm-patch/syncInventory/submit',
method: 'POST',
data,
});
};

295
src/views/basic/pda/basicPdaTTTTT.vue → src/views/basic/pda/basicPdaTTTT.vue

@ -38,12 +38,16 @@
<div class="el-Cart">
<!-- 表格列开始 -->
<el-table
v-loading="loading"
element-loading-text="数据正在更新中..."
:data="data"
row-key="name"
border
:height="TabHeight + 'px'"
style="width: 100%"
ref="tableRef"
@select-all="selectAll"
@select="selectChange"
>
<el-table-column type="selection" width="55" fixed />
<el-table-column type="index" fixed width="50" height="100" label="#" align="center" />
@ -89,14 +93,44 @@
width="280"
align="center "
>
<template #default>
<el-button link type="primary" icon="el-icon-delete" @click="handleDelete"
<!-- <template #default="scope">
<el-button link type="primary" icon="el-icon-delete" @click="DeleteEvent(scope.row)"
>删除</el-button
>
<el-button link type="primary" icon="el-icon-view" @click="handleEdit(row)"
<el-button link type="primary" icon="el-icon-view" @click="EditEvent(scope.row)"
>编辑</el-button
>
<el-button link type="primary" icon="el-icon-view" @click="handleview(row)"
<el-button link type="primary" icon="el-icon-view" @click="ViewEvent(scope.row)"
>查看</el-button
>
</template> -->
<template #default="scope">
<el-button
:link="ElButtonS[0].link"
:class="ElButtonS[0].class"
:auto-insert-space="ElButtonS[0].space"
:size="ElButtonS[0].size"
:icon="ElButtonS[0].icon"
@click="DeleteEvent(scope.row)"
>删除</el-button
>
<el-button
:link="ElButtonS[1].link"
:class="ElButtonS[1].class"
:auto-insert-space="ElButtonS[1].space"
:size="ElButtonS[1].size"
:icon="ElButtonS[1].icon"
@click="EditEvent(scope.row)"
>编辑</el-button
>
<el-button
:link="ElButtonS[2].link"
:class="ElButtonS[2].class"
:auto-insert-space="ElButtonS[2].space"
:size="ElButtonS[2].size"
:icon="ElButtonS[2].icon"
@click="ViewEvent(scope.row)"
>查看</el-button
>
</template>
@ -110,13 +144,12 @@
v-model:current-page="currentPage"
v-model:page-size="pageSize"
:page-sizes="pageList"
:small="small"
:disabled="disabled"
:background="background"
layout="total, sizes, prev, pager, next, jumper"
:total="2"
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
:total="total"
@size-change="PageSizeChange"
@current-change="SizeChange"
/>
</div>
</div>
@ -264,16 +297,20 @@
<h4>菜单功能列表</h4>
</template>
<!-- 默认插入到侧边栏内容 -->
<!-- 表格功能列表 -->
<template #default>
<el-table :data="menuData" border :height="menuHeight + 'px'">
<el-table-column
v-for="column in MenuTop"
:key="column.prop"
:prop="column.prop"
:label="column.label"
:width="column.width"
>
<!--
<div v-if="!Btn">
<el-tabs type="border-card">
<el-tab-pane label="表格功能">
<el-table :data="menuData" border :height="menuHeight + 'px'">
<el-table-column
v-for="column in MenuTop"
:key="column.prop"
:prop="column.prop"
:label="column.label"
:width="column.width"
>
<!--
/
MenuTop: 0:菜单选项
true-label: 1.选中时候的值
@ -283,44 +320,51 @@
/
-->
<!-- 标题 -->
<template #default="scope">
<template v-if="column.prop == 'label'">
<el-text class="mx-1">{{ scope.row[column.prop] }}</el-text>
</template>
<!-- 隐藏复选框 -->
<template v-else-if="column.label == '隐藏'">
<el-checkbox-group v-model="checkList">
<el-checkbox
:key="scope.row['label']"
:label="scope.row['label']"
@change="CheckBox(scope.row, 1)"
>
<!-- 用于隐藏文字 -->
<template #default="scope">
<!-- {{ scope }} -->
<!-- 标题 -->
<template #default="scope">
<template v-if="column.prop == 'label'">
<el-text class="mx-1">{{ scope.row[column.prop] }}</el-text>
</template>
<!-- 隐藏复选框 -->
<template v-else-if="column.label == '隐藏'">
<el-checkbox-group v-model="checkList">
<el-checkbox
:key="scope.row['label']"
:label="scope.row['label']"
@change="CheckBox(scope.row, 1)"
>
<!-- 用于隐藏文字 -->
<template #default="scope">
<!-- {{ scope }} -->
</template>
</el-checkbox>
</el-checkbox-group>
</template>
</el-checkbox>
</el-checkbox-group>
</template>
<template v-else-if="column.label == '冻结'">
<el-checkbox-group v-model="flexList">
<el-checkbox
:key="scope.row['label']"
:label="scope.row['label']"
@change="CheckBox(scope.row, 2)"
>
<!-- 用于隐藏文字 -->
<template #default="scope">
<!-- {{ scope }} -->
<template v-else-if="column.label == '冻结'">
<el-checkbox-group v-model="flexList">
<el-checkbox
:key="scope.row['label']"
:label="scope.row['label']"
@change="CheckBox(scope.row, 2)"
>
<!-- 用于隐藏文字 -->
<template #default="scope">
<!-- {{ scope }} -->
</template>
</el-checkbox>
</el-checkbox-group>
</template>
</el-checkbox>
</el-checkbox-group>
</template>
</template>
</el-table-column>
</el-table>
</template>
</el-table-column>
</el-table>
</el-tab-pane>
<el-tab-pane label="按钮功能">Config</el-tab-pane>
<el-tab-pane label="表格导出">Role</el-tab-pane>
<el-tab-pane label="待添加">Task</el-tab-pane>
</el-tabs>
</div>
<!-- 按钮功能结束-->
</template>
</el-drawer>
</div>
@ -332,7 +376,7 @@ import { ref, reactive, onMounted, computed } from 'vue';
import { getList, getDetail, $_AddInfo, update, remove, $_TableList } from '@/api/basic/basicPda'; //API
import { ElMessage, type UploadProps } from 'element-plus';
import { getToken } from '@/utils/auth';
//
const MenuTop = ref([
{
prop: 'label',
@ -352,22 +396,43 @@ const MenuTop = ref([
label: '排序',
},
]);
const checkList = ref<(string | number)[]>([]); //
const flexList = ref<(string | number)[]>([]); //
const CheckBox = (scope, type: number) => {
console.log(scope, 'scope');
if (type === 1) {
scope.head = !scope.head;
}
if (type === 2) {
scope.fixed = !scope.fixed;
}
};
//
const ElButtonS = ref([
// 1.link (-false ,-tre)
// 2.class ()
// 3.space (true ,false)
// 4.size ('large'| 'default'| 'small')
// 5.icon
// 6.table
{
link: false,
class: 'el-btn-danger',
space: true,
size: 'small',
icon: 'el-icon-delete',
table: '删除',
},
{
link: false,
class: 'el-btn-success',
space: true,
size: 'small',
icon: 'Edit',
table: '编辑',
},
{
link: false,
class: 'el-btn-view',
space: true,
size: 'small',
icon: 'el-icon-view',
table: '查看',
},
]);
const currentPage = ref(1); //
const pageSize = ref(30); //
const total = ref(0); //
const pageList = ref([5, 10, 50, 100, 200]); //
const small = ref(false);
const background = ref(true); //
const disabled = ref(false); // 使
const data = ref([]); //
@ -376,15 +441,13 @@ const AddLalog = ref(false); //提交弹窗
const img = ref(false); //
const ImgText = ref(''); //
const AddForm = ref({}); //
const value1 = ref(''); //
const optionsvalue = ref(''); //
const optionsvalue2 = ref(''); //
const uploadRef = ref(); //
const tableRef = ref(null); // table
const menu = ref(true); //
const menuHeight = ref(); //,
const MeunList = ref((name = {}));
const MeunName = ref([]); //
const checkList = ref<(string | number)[]>([]); //
const flexList = ref<(string | number)[]>([]); //
const loading = ref(false); //
const options = [
//
{
@ -611,8 +674,6 @@ function onLoad() {
$_TableList({ current: currentPage.value, size: pageSize.value }).then(res => {
//
console.log(res, 'res');
const keys = Object.keys(res.data.data.records[0]);
MeunName.value = keys.map(key => ({ key }));
data.value = res.data.data.records;
const setIn = setTimeout(() => {
toggleSelection(); //
@ -691,6 +752,53 @@ const submit = () => {
console.log(res);
});
};
//
const PageSizeChange = val => {
console.log('每一页', val, '条');
};
//
const SizeChange = val => {
console.log('当前是第', val, '页');
};
//
const selectAll = val => {
console.log(val);
};
//
const selectChange = (selection, row) => {
// 1.selection
// 2.row
console.log(selection);
};
//
const DeleteEvent = val => {
//
console.log('触发了删除事件', val);
};
//
const EditEvent = val => {
//
console.log('触发了编辑事件', val);
};
//
const ViewEvent = val => {
//;
console.log('触发了查看事件', val);
};
//
const CheckBox = (scope, type: number) => {
console.log(scope, 'scope');
if (type === 1) {
scope.head = !scope.head;
}
if (type === 2) {
scope.fixed = !scope.fixed;
}
};
//
const refresh = () => {
loading.value = !loading.value;
};
</script>
<style scoped lang="scss">
@ -993,8 +1101,43 @@ const submit = () => {
margin: 0 5px;
}
}
}
.hide-column {
display: none;
.el-table__row {
height: 40px;
//
.el-btn-danger {
background-color: #f56c6c;
border: 1px solid #f56c6c;
color: #fff;
}
//
.el-btn-success {
background-color: #409eff;
border: 1px solid #409eff;
color: #fff;
}
//
.el-btn-view {
background-color: #172e60;
border: 1px solid #172e60;
color: #fff;
}
//
.el-btn-dangers {
background-color: transparent;
color: #ff0000;
border: 1px solid transparent;
}
.el-btn-successs {
background-color: transparent;
color: #f56c6c;
border: 1px solid transparent;
}
.el-btn-views {
background-color: transparent;
color: #f56c6c;
border: 1px solid transparent;
}
}
}
</style>

941
src/views/distribution/LsystemsInventory/LsystemsInventory.vue

@ -0,0 +1,941 @@
<template>
<!-- 表格组件 -->
<div class="el-content-el" ref="TabHeight">
<!-- 顶部开始 -->
<!-- 搜索功能 -->
<div class="SoInput" v-show="searchSo">
<el-form label-position="top" label-width="100px" :model="AddForm">
<el-form-item label="盘点任务编码:">
<el-input v-model="AddForm.inventoryNo" placeholder="请输入盘点任务编码" />
</el-form-item>
</el-form>
<div class="SoBtn">
<el-button type="primary" @click="SoInput"
><el-icon><Search /></el-icon></el-button
>
<el-button type="primary" @click="SoEmpty">
<el-icon><Delete /></el-icon>
</el-button>
</div>
</div>
<div class="el-Cart-button">
<!-- 表格顶部左侧按钮 -->
<div class="el-Cart-button-left">
<el-button type="primary" @click="AddInfo"
><el-icon><Plus /></el-icon> </el-button
>
</div>
<!-- 表格顶部右侧按钮 -->
<div class="el-Cart-button-right">
<!-- 刷新按钮 -->
<button @click="refresh">
<el-icon color="#ccc"><Refresh /></el-icon>
</button>
<!-- 功能按钮 -->
<button @click="menu = true">
<el-icon color="#ccc"><Operation /></el-icon>
</button>
<!-- 搜索按钮 -->
<button @click="search">
<el-icon color="#ccc"><Search /></el-icon>
</button>
</div>
</div>
<!-- 顶部结束 -->
<div class="el-Cart">
<!-- 表格列开始 -->
<el-table
:data="data"
row-key="name"
v-loading="loading"
element-loading-text="数据正在更新中..."
border
:height="TabHeight + 'px'"
style="width: 100%"
ref="tableRef"
@select-all="selectAll"
@select="selectChange"
>
<el-table-column type="selection" width="55" fixed />
<el-table-column type="index" fixed width="50" height="100" label="#" align="center" />
<template v-for="(item, index) in menuData" :key="item.label">
<!--
Type ===1 普通文本
Type ===2 图片显示
Type ===3 操作功能
label: 标题
width: 宽度
prop: 数据字段
-->
<template v-if="item.type === 1">
<el-table-column
v-if="item.head"
:prop="item.prop"
:label="item.label"
:width="item.width"
:fixed="item.fixed"
align="center"
/>
</template>
<template v-if="item.type === 4">
<el-table-column
v-if="item.head"
:prop="item.prop"
:label="item.label"
:width="item.width"
:fixed="item.fixed"
align="center"
>
<template #default="props">
<span>{{
props.row[item.prop] === 0
? '未开始'
: props.row[item.prop] === 1
? '同步中'
: props.row[item.prop] === 2
? '同步完成'
: props.row[item.prop] === 2
? '同步异常'
: '/'
}}</span>
</template>
</el-table-column>
</template>
<!--
<el-table-column prop="ctime" label="创建时间" min-width="150">
<template #default="props">
<span>{{ props.row.ctime }}</span>
</template>
</el-table-column> -->
<template v-if="item.type === 2">
<el-table-column
v-if="item.head"
:label="item.label"
:width="item.width"
:fixed="item.fixed"
align="center"
>
<template #default="props">
<img :src="props.row[item.prop]" class="el-Img" />
</template>
</el-table-column>
</template>
<template v-if="item.type === 3">
<el-table-column
v-if="item.head"
fixed="right"
label="操作"
width="280"
align="center "
>
<template #default="scope">
<div :class="ElBtnClass">
<el-button
:link="ElButtonS[0].link"
:class="ElButtonS[0].class"
:auto-insert-space="ElButtonS[0].space"
:size="ElButtonS[0].size"
:icon="ElButtonS[0].icon"
@click="DeleteEvent(scope.row)"
>删除</el-button
>
<el-button
:link="ElButtonS[1].link"
:class="ElButtonS[1].class"
:auto-insert-space="ElButtonS[1].space"
:size="ElButtonS[1].size"
:icon="ElButtonS[1].icon"
@click="EditEvent(scope.row)"
>编辑</el-button
>
<el-button
:link="ElButtonS[2].link"
:class="ElButtonS[2].class"
:auto-insert-space="ElButtonS[2].space"
:size="ElButtonS[2].size"
:icon="ElButtonS[2].icon"
@click="ViewEvent(scope.row)"
>查看</el-button
>
</div>
</template>
</el-table-column>
</template>
</template>
</el-table>
<!-- 表格翻页功能 -->
<div class="demo-pagination-block">
<el-pagination
v-model:current-page="currentPage"
v-model:page-size="pageSize"
:page-sizes="pageList"
:disabled="disabled"
:background="background"
layout="total, sizes, prev, pager, next, jumper"
:total="total"
@size-change="PageSizeChange"
@current-change="SizeChange"
/>
</div>
</div>
<!-- 弹窗组件 -->
<div class="addlalog">
<el-dialog v-model="AddLalog" title="新增盘点数据">
<el-form label-position="top" label-width="100px" :model="AddForm">
<el-form-item label="盘点任务编码">
<el-input v-model="AddForm.inventoryNo" placeholder="请输入盘点任务编码" />
</el-form-item>
</el-form>
<!-- 弹窗底部提交按钮 -->
<div class="el-dialog-button">
<el-button type="danger" @click="submit">
<el-icon><Select /></el-icon>
确认提交
</el-button>
</div>
</el-dialog>
<el-dialog v-model="dialogVisible" title="Tips" width="30%" draggable>
<span>It's a draggable Dialog</span>
<template #footer>
<span class="dialog-footer">
<el-button @click="dialogVisible = false">Cancel</el-button>
<el-button type="primary" @click="dialogVisible = false"> Confirm </el-button>
</span>
</template>
</el-dialog>
</div>
<!-- 弹窗结束 -->
<!-- 右侧功能列表弹窗 -->
<div class="el-menu-load">
<el-drawer v-model="menu" direction="rtl">
<template #header>
<h4>菜单功能列表</h4>
</template>
<!-- 默认插入到侧边栏内容 -->
<!-- 表格功能列表 -->
<template #default>
<div v-if="!Btn">
<el-tabs type="border-card">
<el-tab-pane label="表格功能">
<el-table :data="menuData" border :height="menuHeight + 'px'">
<el-table-column
v-for="column in MenuTop"
:key="column.prop"
:prop="column.prop"
:label="column.label"
:width="column.width"
>
<!--
/
MenuTop: 0:菜单选项
true-label: 1.选中时候的值
false-label: 2.没有选中时候的值
@change: 3.当绑定时候的值发生变化的时候触发
label: 4.选中状态的值
/
-->
<!-- 标题 -->
<template #default="scope">
<template v-if="column.prop == 'label'">
<el-text class="mx-1">{{ scope.row[column.prop] }}</el-text>
</template>
<!-- 隐藏复选框 -->
<template v-else-if="column.label == '隐藏'">
<el-checkbox-group v-model="checkList">
<el-checkbox
:key="scope.row['label']"
:label="scope.row['label']"
@change="CheckBox(scope.row, 1)"
>
<!-- 用于隐藏文字 -->
<template #default="scope">
<!-- {{ scope }} -->
</template>
</el-checkbox>
</el-checkbox-group>
</template>
<template v-else-if="column.label == '冻结'">
<el-checkbox-group v-model="flexList">
<el-checkbox
:key="scope.row['label']"
:label="scope.row['label']"
@change="CheckBox(scope.row, 2)"
>
<!-- 用于隐藏文字 -->
<template #default="scope">
<!-- {{ scope }} -->
</template>
</el-checkbox>
</el-checkbox-group>
</template>
</template>
</el-table-column>
</el-table>
</el-tab-pane>
<el-tab-pane label="按钮功能">
<!-- <div class="el-title-btn">
<span> 表格操作按钮风格选择 </span>
</div> -->
<el-radio-group v-model="BtnRadio" @change="btnClass">
<el-radio label="1" size="default" border>链接样式风格</el-radio>
<el-radio label="2" size="default" border>按钮样式风格</el-radio>
</el-radio-group>
</el-tab-pane>
<el-tab-pane label="表格导出">Role</el-tab-pane>
<el-tab-pane label="待添加">Task</el-tab-pane>
</el-tabs>
</div>
<!-- 按钮功能结束-->
</template>
</el-drawer>
</div>
</div>
</template>
<script setup lang="ts">
import { ref, reactive, onMounted, computed } from 'vue';
import { getList, getDetail, $_AddInfo, update, remove, $_TableList } from '@/api/basic/basicPda'; //API
import { ElMessage, type UploadProps } from 'element-plus';
import { getToken } from '@/utils/auth';
import {
$_SyncInventoryList,
$_SyncInventorySubmit,
} from '@/api/LsystemsInventory/LsystemsInventory';
const currentPage = ref(1); //
const pageSize = ref(20); //
const pageList = ref([5, 10, 50, 100, 200]); //
const background = ref(true); //
const disabled = ref(false); // 使
const data = ref([]); //
const TabHeight = ref(); //
const AddLalog = ref(false); //
const AddForm = ref({}); //
const tableRef = ref(null); // table
const menu = ref(false); //
const menuHeight = ref(); //,
const total = ref(100); //
const checkList = ref<(string | number)[]>([]); //
const flexList = ref<(string | number)[]>([]); //
const loading = ref(false); //
const BG = ref(false); //
const BtnRadio = ref('1'); //
const ElBtnClass = ref('el-Btn-link'); //
const searchSo = ref(false); //
const dialogVisible = ref(false);
const btnClass = type => {
//
if (type == 1) {
ElBtnClass.value = 'el-Btn-link';
}
//
if (type == 2) {
ElBtnClass.value = 'el-Btn-btn';
}
};
const handleSizeChange = () => {
console.log(1);
};
//
const ElButtonS = ref([
// 1.class ()
// 2.space (true ,false)
// 3.size ('large'| 'default'| 'small')
// 4.icon
// 5.table
{
class: 'el-btn-danger',
space: true,
size: 'small',
icon: 'el-icon-delete',
table: '删除',
},
{
class: 'el-btn-success',
space: true,
size: 'small',
icon: 'Edit',
table: '编辑',
},
{
class: 'el-btn-view',
space: true,
size: 'small',
icon: 'el-icon-view',
table: '查看',
},
]);
//
const MenuTop = ref([
{
prop: 'label',
label: '列名',
width: '',
},
{
prop: '',
label: '隐藏',
},
{
prop: '',
label: '冻结',
},
{
prop: '',
label: '排序',
},
]);
//
const menuData = ref([
{
prop: 'inventoryNo',
label: '任务编码',
type: 1,
values: '',
width: '260',
checkarr: [],
fixed: false,
sortable: true,
head: true,
},
{
prop: 'inventoryId',
label: 'ID',
type: 1,
values: '',
width: '265',
checkarr: [],
fixed: false,
sortable: true,
head: true,
},
{
prop: 'syncStartDate',
label: '同步开始时间',
type: 1,
values: '',
width: '260',
checkarr: [],
fixed: false,
sortable: true,
head: true,
},
{
prop: 'syncEndDate',
label: '同步结束时间',
type: 1,
values: '',
width: '260',
checkarr: [],
fixed: false,
sortable: true,
head: true,
},
{
prop: 'syncStatus',
label: '同步状态',
type: 4,
values: '',
width: '260',
checkarr: [],
fixed: false,
sortable: true,
head: true,
},
{
prop: 'warehouseName',
label: '仓库',
type: 1,
values: '',
width: '260',
checkarr: [],
fixed: false,
sortable: true,
head: true,
},
]);
//
function onLoad() {
// API$_TableList
$_SyncInventoryList({
pageNum: currentPage.value,
pageSize: pageSize.value,
inventoryNo: AddForm.value.inventoryNo,
// inventoryNo:123123
}).then(res => {
//
data.value = res.data.data.records;
console.log(res, 'res');
});
}
//
const Sub = () => {
onLoad();
};
// DOM
onMounted(() => {
//88
TabHeight.value = TabHeight.value.offsetHeight - 91;
menuHeight.value = window.innerHeight - 136;
console.log('元素的高度:', menuHeight.value);
// DOM
onLoad();
});
//
const AddInfo = () => {
AddLalog.value = true; //
};
//
const PageSizeChange = val => {
pageSize.value = val;
onLoad();
console.log('每一页', val, '条');
};
//
const SizeChange = val => {
currentPage.value = val;
onLoad();
console.log('当前是第', val, '页');
};
//
const submit = () => {
console.log(AddForm.value);
$_SyncInventorySubmit(AddForm.value).then(res => {
console.log(res);
});
};
//
// Type ===1
// Type ===2
const CheckBox = (scope, type: number) => {
console.log(scope, 'scope');
if (type === 1) {
scope.head = !scope.head;
}
if (type === 2) {
scope.fixed = !scope.fixed;
}
};
//
const selectAll = val => {
console.log(val);
};
//
const selectChange = (selection, row) => {
// 1.selection
// 2.row
console.log(selection);
};
//
const DeleteEvent = val => {
//
console.log('触发了删除事件', val);
};
//
const EditEvent = val => {
//
console.log('触发了编辑事件', val);
};
//
const ViewEvent = val => {
//;
console.log('触发了查看事件', val);
};
//
const refresh = () => {
// loading.value = !loading.value;
};
//
const search = () => {
searchSo.value = !searchSo.value;
};
//
const SoInput = () => {
onLoad();
};
//
const SoEmpty = () => {
AddForm.value.inventoryNo = '';
onLoad();
};
</script>
<style scoped lang="scss">
// IDV
.el-content-el {
padding: 0 8px;
padding-top: 8px;
background-color: #fff;
height: 100%;
box-sizing: border-box;
//
:deep(.el-Cart-button) {
margin-bottom: 8px;
display: flex;
justify-content: space-between;
}
//
.el-Cart-button-left,
.el-Cart-button-right {
display: flex;
margin: 0 0px;
justify-content: space-between;
}
.el-Cart-button-left {
:deep(button) {
padding: 0 14px;
min-width: 70px;
display: flex;
span {
width: 100%;
display: inline-flex;
align-items: center;
justify-content: space-between;
i {
margin-right: 6px;
}
}
}
}
.el-Cart-button-right {
display: flex;
margin: 0 0px;
justify-content: space-between;
align-items: center;
button {
background-color: transparent;
border-radius: 50%;
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #ccc;
margin-right: 8px;
&:hover {
background-color: #172e601f;
i {
color: #0e2549;
}
}
//
&:last-child {
margin-right: 0;
}
}
}
.el-Cart {
//
:deep(.el-table__header) {
th {
background-color: #fafafa;
color: #000;
}
}
//
//
.demo-pagination-block {
display: flex;
justify-content: flex-end;
margin-top: 6px;
}
//
:deep(.el-table__row) {
height: 60px;
}
//
.el-Img {
width: 100%;
height: 40px;
img {
width: 100%;
height: 100%;
}
}
}
//
:deep(.addlalog) {
//
.el-dialog__header {
border-bottom: 1px solid #172e607d;
margin-right: 0;
margin-bottom: 0;
padding-bottom: 20px;
position: relative;
i {
color: #172e60;
border-radius: 50%;
border: 1px solid;
transition: transform 1s;
}
}
.el-dialog__header button:hover {
i {
transform: rotate(360deg);
}
}
// 线
.el-dialog__header::after {
content: '';
display: block;
width: 3px;
height: 16px;
background-color: #172e60;
position: absolute;
left: 8px;
top: 24px;
}
.el-dialog__body {
.el-form {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.el-form-item {
width: 276px;
.el-form-item__label {
font-family: '黑体';
}
}
/* 去掉第三个、第六个、第九个div的右外边距 */
.el-form-item:nth-child(3n) {
margin-right: 0;
}
}
.el-form-item__content {
height: 30px;
//
.el-input {
width: 100%;
height: 30px !important;
}
//
.el-select {
width: 100%;
}
}
}
//
:deep(.el-dialog-button) {
display: flex;
justify-content: flex-end;
}
.el-dialog-button button:hover {
color: #fff;
background-color: #10d070;
transition: all 0.3s ease-in-out; /* 添加动画效果 */
background-color: #10d070;
border: 1px solid #10d070;
}
//
.img-icon {
width: 100%;
position: relative;
.el-button {
width: 100%;
background-color: #fff;
color: #a8abb9;
justify-content: flex-start;
border: 1px solid #dcdfe6;
}
i {
position: absolute;
left: 110px;
top: 8px;
font-size: 18px;
}
}
:deep(.el-load-img) {
width: 100%;
height: 32px;
display: flex;
align-items: center;
justify-content: space-between;
.el-image {
width: 100%;
height: auto;
img {
width: 100%;
}
}
.el-image-viewer__canvas {
img {
width: 50%;
height: 50%;
z-index: 10;
}
}
.el-z {
.el-image {
position: absolute;
height: 28px;
top: 2px;
left: 1px;
}
}
.el-icon {
color: #10d070;
}
}
:deep(.upload-demo) {
width: 100%;
.el-upload {
width: 100%;
}
ul {
margin-top: 0;
}
}
//
.el-img {
border: 1px solid #ccc;
width: 100%;
border-radius: 4px;
display: flex;
align-items: center;
justify-content: space-between;
height: 30px;
position: absolute;
top: 0;
left: 0;
.el-img-left {
display: flex;
align-items: center;
span {
z-index: 9;
}
i {
margin-right: 8px;
color: #10d070;
z-index: 9;
}
}
i {
color: #10d070;
margin-left: 6px;
}
}
//
:deep(.el-menu-load) {
.el-drawer__header {
padding: 0;
padding-left: 20px;
position: relative;
border-bottom: 1px solid #172e5f;
margin-bottom: 0;
i {
color: #172e60;
}
}
.el-drawer__header::after {
content: '';
display: block;
width: 4px;
height: 18px;
background-color: #172e60;
position: absolute;
top: 23px;
left: 9px;
}
.el-table__inner-wrapper {
.cell {
text-align: center;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.el-table__row {
height: 40px;
.el-btn-danger {
background-color: #f56c6c !important;
border: 1px solid #f56c6c;
}
}
}
// ,
.el-text {
margin: 0 5px;
}
//
.el-title-btn {
margin-bottom: 20px;
}
}
.el-table__row {
height: 40px;
// ()
.el-Btn-link {
.el-btn-danger,
.el-btn-success,
.el-btn-view {
color: #172e60;
background-color: transparent;
border: 1px solid transparent;
}
}
//
.el-Btn-btn {
//
.el-btn-danger {
background-color: #f56c6c;
border: 1px solid #f56c6c;
color: #fff;
padding: 5px 11px;
}
//
.el-btn-success {
background-color: #409eff;
border: 1px solid #409eff;
color: #fff;
padding: 5px 11px;
}
//
.el-btn-view {
background-color: #172e60;
border: 1px solid #172e60;
color: #fff;
padding: 5px 11px;
}
}
}
.SoInput {
width: 100%;
transition: all 0.5s;
display: flex;
justify-content: space-between;
.el-form-item {
width: 300px;
display: flex;
align-items: center;
justify-items: center;
margin-bottom: 8px;
}
.el-form-item__label {
margin-bottom: 0;
}
}
}
</style>

1
src/views/distribution/deliverylist/distributionDeliveryListdis.vue

@ -439,6 +439,7 @@ export default {
fixed: false,
sortable: true,
},
{
prop: 'vehicleName',
label: '配送车辆',

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

@ -26,6 +26,9 @@
<el-row :gutter="24" class="rows">
<el-col :xl="7" :lg="7" :md="8" :sm="24">
<span>装车班组{{ deliverydata.loadingTeamName }} </span>
</el-col>
<el-col :xl="7" :lg="7" :md="8" :sm="24">
<span>司机电话:{{ deliverydata.driverPhone }} </span>
</el-col>
<el-col :xl="7" :lg="7" :md="8" :sm="24">
<!-- <span>{{deliverydata.loadingTeamType}} </span> -->

2
src/views/distribution/inventory/delivery/distributionStockArticleMarket.vue

@ -1105,7 +1105,7 @@ export default {
// false,
if (!notEqualFlag) {
this.$router.push({
path: '/distribution/inventory/distributionStockArticleFrom',
path: '/distribution/reservation/reservationSubmitFrom',
query: {
id: this.ids,
name: '转预约单',

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

@ -943,16 +943,17 @@ export default {
},
//
handleSign(row, num) {
if (this.selectionList.length == 0) {
this.$message.warning('至少选择一条数据!!');
return;
}
let a = this.selectionList.find(i => i.conditions > 6);
if (!!a) {
this.$message.warning('有已签收的数据,请勿重复签收!!');
return;
if(num === 2){
if (this.selectionList.length == 0) {
this.$message.warning('至少选择一条数据!!');
return;
}
let a = this.selectionList.find(i => i.conditions > 20);
if (!!a) {
this.$message.warning('有已签收的数据,请勿重复签收!!');
return;
}
}
this.$confirm('确定签收吗?', {
confirmButtonText: '确定',
cancelButtonText: '取消',

4
src/views/distribution/inventory/distrilbutionBillLadingView.vue

@ -318,7 +318,7 @@ export default {
head: false,
},
{
prop: 'deliveryNumber',
prop: 'quantity',
label: '备货数',
type: 2,
values: '',
@ -329,7 +329,7 @@ export default {
head: false,
},
{
prop: 'readyStock',
prop: 'preparedQuantity',
label: '已备数量',
type: 2,
values: '',

61
src/views/distribution/reservation/reservationAddFrom.vue

@ -1906,6 +1906,7 @@
let page = this.page;
let params = {};
this.query.serviceType = '2';
console.log('this.marketName :>> ', this.marketName);
params.marketName = this.marketName
console.log('params :>> ', params);
getInventoryList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(
@ -1917,15 +1918,9 @@
});
this.page.total = inventoryList.total;
console.log('res :>> ', res);
// this.inventoryInfo = inventoryList.records.filter(value=>{
// if(this.marketName === '')return value
// return value.marketName === this.marketName
// });
this.inventoryInfo = inventoryList.records
this.inventoryInfo = inventoryList.records.filter(value => {
if (this.marketName === '') return value;
return value.marketName === this.marketName;
});
//
if (this.inventoryData) {
this.inventoryInfo.forEach((item, index) => {
@ -2657,7 +2652,7 @@
* 增加订单提交
*/
onSubmitOrder() {
console.log('-------------》', this.orderList);
console.log('orderList-------------》', this.orderList);
if (this.orderList.length === 0) return this.$message.warning('最少选择一条数据!!!')
const list = this.orderList;
let _name = list[0].customerName;
@ -2682,56 +2677,16 @@
//
if (this.marketName === '') this.marketName = _marketName
this.marketName = list[0].marketName;
// this.marketName = list[0].marketName;
this.form.consignee = _name;
this.form.deliveryAddress = _address;
this.form.deliveryPhone = _phone;
//
const info = [];
this.stockArticleInfo.forEach((item, index) => {
this.orderList.forEach(order => {
// const newDate1 = this.orderData.map(item => { // map
// if (this.orderList.find(o => o.id !== item.id)) { //
// return item;
// });
// } info.push(order);
//
info.push(order);
this.stockArticleInfo.splice(index, 1);
});
});
if (this.orderData.length >= 1) {
let newDate1 = this.orderData.map(item => {
// map
if (this.orderList.find(o => o.id !== item.id)) {
//
return item;
}
});
console.log('newDate1-------------->', newDate1.length);
if (newDate1.length >= 1) {
console.log('newDate1-------------->', newDate1);
newDate1.forEach(a => {
this.orderData.push(a);
});
}
console.log('this.orderData------------->', this.orderData);
} else {
this.orderData = this.orderList;
}
this.orderData.forEach(a => {
a.reservationNum = a.handQuantity;
});
const _ids = this.orderData.map(val => val.id)
this.orderData = [...this.orderData, ...this.orderList.filter(item => !_ids.includes(item.id))]
// this.orderData.push(info);
this.orderShow = false;
},
selectionClear() {

19
src/views/distribution/turndelivery/deliveryDiscuss.vue

@ -701,6 +701,7 @@
import dayjs from 'dayjs';
import { entryNum, updateEntryNum } from '@/api/distribution/distributionParcelNumber';
import { ElMessageBox } from 'element-plus'
import { ElMessage } from 'element-plus'
export default {
data() {
return {
@ -1416,6 +1417,20 @@ import { ElMessageBox } from 'element-plus'
* 订单提交
*/
onSubmitBusiness() {
if( !this.driverForm.masterDriverName ){
ElMessage({
message: '没有选择配送司信息',
type: 'warning',
})
return
}
if(!this.driverForm.masterVehicleNub){
ElMessage({
message: '没有选择配车辆信息',
type: 'warning',
})
return
}
this.BtnDisabled=true
setTimeout(() => {
//
@ -1552,7 +1567,7 @@ import { ElMessageBox } from 'element-plus'
item.packageListInfo = item.parcelListVOS;
}
});
console.log('data>>>>>>>>>>>', data);
console.log('data>>>>>>>>>>>TTTTTT', data);
updateDeliveryList(data).then(res => {
this.$router.push({
path: '/distribution/deliverylist/distributionDeliveryListdis'
@ -1677,7 +1692,7 @@ import { ElMessageBox } from 'element-plus'
}
});
console.log('data>>>>>>>>>>>', data);
console.log('data>>>>>>>>>>>ssssssss', data);
//
deliveryBusinessTask(data).then(res => {
this.$router.push({

5
vite.config.js

@ -15,11 +15,14 @@ export default ({ mode, command }) => {
// target: 'http://192.168.10.126:8889',
// hy
// target: 'http://192.168.10.48:8888',
// lmy
// target: 'http://192.168.10.123:8889',
// target: 'http://192.168.10.101:8888',
// target: 'http://192.168.10.75:8777',
// target: 'http://192.168.10.29:13000',
// tjj
// target: 'http://192.168.10.29:13000',
target: 'http://test.api.huitongys.com',
// target: 'http://h5uapi.huitongys.com',
changeOrigin: true,
rewrite: path => path.replace(/^\/api/, ''),
},

Loading…
Cancel
Save