Browse Source

Merge branch 'dev' into pre-production

fix_bug_pro20231227
qb 2 years ago
parent
commit
e8d213a85c
  1. BIN
      public/img/indexbg.png
  2. 50
      src/api/distribution/distributionParcelNumber.js
  3. 50
      src/api/distribution/distributionReservationZeroPackage.js
  4. 56
      src/components/tablecmt/tablecmt.vue
  5. 2
      src/config/website.js
  6. 120
      src/option/distribution/distributionParcelNumber.js
  7. 120
      src/option/distribution/distributionReservationZeroPackage.js
  8. 19
      src/page/login/index.vue
  9. 123
      src/page/login/userlogin.vue
  10. 626
      src/styles/flowStyle.scss
  11. 28
      src/styles/login.scss
  12. 405
      src/views/basicdata/warehouse/goodsShelf/basicdataGoodsShelfView.vue
  13. 8
      src/views/distribution/inventory/delivery/distributionStockArticle.vue
  14. 2
      src/views/distribution/inventory/distributionStockListDetails.vue
  15. 285
      src/views/distribution/zero/distributionParcelNumber.vue
  16. 294
      src/views/distribution/zero/distributionReservationZeroPackage.vue
  17. 2
      src/views/system/topmenu.vue
  18. 5
      src/views/wel/index.vue

BIN
public/img/indexbg.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

50
src/api/distribution/distributionParcelNumber.js

@ -0,0 +1,50 @@
import request from '@/axios';
export const getList = (current, size, params) => {
return request({
url: '/api/logpm-distribution/distributionParcelNumber/list',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const getDetail = (id) => {
return request({
url: '/api/logpm-distribution/distributionParcelNumber/detail',
method: 'get',
params: {
id
}
})
}
export const remove = (ids) => {
return request({
url: '/api/logpm-distribution/distributionParcelNumber/remove',
method: 'post',
params: {
ids,
}
})
}
export const add = (row) => {
return request({
url: '/api/logpm-distribution/distributionParcelNumber/submit',
method: 'post',
data: row
})
}
export const update = (row) => {
return request({
url: '/api/logpm-distribution/distributionParcelNumber/submit',
method: 'post',
data: row
})
}

50
src/api/distribution/distributionReservationZeroPackage.js

@ -0,0 +1,50 @@
import request from '@/axios';
export const getList = (current, size, params) => {
return request({
url: '/api/logpm-distribution/distributionReservationZeroPackage/list',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const getDetail = (id) => {
return request({
url: '/api/logpm-distribution/distributionReservationZeroPackage/detail',
method: 'get',
params: {
id
}
})
}
export const remove = (ids) => {
return request({
url: '/api/logpm-distribution/distributionReservationZeroPackage/remove',
method: 'post',
params: {
ids,
}
})
}
export const add = (row) => {
return request({
url: '/api/logpm-distribution/distributionReservationZeroPackage/submit',
method: 'post',
data: row
})
}
export const update = (row) => {
return request({
url: '/api/logpm-distribution/distributionReservationZeroPackage/submit',
method: 'post',
data: row
})
}

56
src/components/tablecmt/tablecmt.vue

@ -91,8 +91,12 @@
v-if="Number(column.type) < 6 && Number(column.type) > 0"
>{{ scope.row[column.prop] }}</el-text
>
<el-switch @change="makeCargo(scope.row,column)" v-if="column.type == 11" v-model="scope.row[column.prop]" />
<el-switch
@change="makeCargo(scope.row, column)"
v-if="column.type == 11"
v-model="scope.row[column.prop]"
/>
<!-- <el-text
class="mx-2 tabculconte"
v-for="item in column.checkarr"
@ -114,6 +118,7 @@
v-model="scope.row[column.prop]"
type="number"
:min="0"
:max="scope.row.residueNumber"
></el-input>
<div class="slotbuts" v-if="column.type == 6">
<slot v-if="column.type == 6" :scope="scope"> </slot>
@ -287,7 +292,7 @@ const tableRowClassName = ({ row, rowIndex }: { row: TableDataType; rowIndex: nu
}
return '';
};
let emit = defineEmits(['inputTxt', 'timeCheck', 'selectCheck', 'selection','makeCargo']);
let emit = defineEmits(['inputTxt', 'timeCheck', 'selectCheck', 'selection', 'makeCargo']);
let newcolumnList = ref<TableColumnType[]>([]);
watchEffect(() => {
newcolumnList.value = [];
@ -344,21 +349,45 @@ function handleNumberRange(column: TableColumnType, row: TableDataType) {
//
row[column.prop] = parseInt(row[column.prop]); //
}
if (column.lessThanNum) {
if (row[column.prop] > row[column.lessThanNum]) {
row[column.prop] = row[column.lessThanNum];
// if (column.lessThanNum) {
// if (row[column.prop] > row[column.lessThanNum]) {
// row[column.prop] = row[column.lessThanNum];
// proxy.$message({
// type: 'error',
// message: '',
// });
// }
// }
//
if (row.residueNumber) {
console.log('上架为真');
if (row.enterNum > row.residueNumber) {
proxy.$message({
type: 'error',
message: '数量不能大于可用数量',
message: '数量不能大于可上架总数,已调整为最大数量!',
});
row.enterNum = row.residueNumber;
}
}
console.log(column, row);
//
if (row.num) {
if (row.enterNum > row.num) {
proxy.$message({
type: 'error',
message: '数量不能大于可下架总数,已调整为最大数量!',
});
console.log('大于了');
row.enterNum = row.num;
}
}
console.log(row, 'row');
}
function handleEdit(index: number, row: TableDataType) {
console.log(index, row);
}
function makeCargo(value,column: TableColumnType){
function makeCargo(value, column: TableColumnType) {
emit('makeCargo', value, column);
}
function inputchange(value, column: TableColumnType) {
@ -493,7 +522,7 @@ function copyContent(content: string) {
}
}
</script>
<style lang="scss">
<style lang="scss" scope>
// :root{
// --el-checkbox-checked-bg-color:'#D3832A';
// --el-checkbox-checked-input-border-color:'#D3832A';
@ -641,7 +670,10 @@ function copyContent(content: string) {
align-items: center;
}
.el-table .el-popper{
max-width:20% !important;
.el-table .el-popper {
max-width: 20% !important;
}
.el-input {
width: 200px !important;
}
</style>

2
src/config/website.js

@ -2,7 +2,7 @@
* 全局配置文件
*/
export default {
title: 'TWMS',
title: '货无忧物流信息平台',
logo: 'S',
key: 'TWMS', //配置主键,目前用于存储
indexTitle: '货无优 Admin',

120
src/option/distribution/distributionParcelNumber.js

@ -0,0 +1,120 @@
export default {
expand: false,
index: true,
border: true,
selection: true,
column: [
{
label: "主键",
prop: "id",
display: false,
hide: true,
},
{
label: "租户号",
prop: "tenantId",
display: false,
hide: true,
},
{
label: "创建人",
prop: "createUser",
display: false,
hide: true,
},
{
label: "创建时间",
prop: "createTime",
display: false,
hide: true,
},
{
label: "更新人",
prop: "updateUser",
display: false,
hide: true,
},
{
label: "更新时间",
prop: "updateTime",
display: false,
hide: true,
},
{
label: "状态",
prop: "status",
display: false,
hide: true,
},
{
label: "是否已删除",
prop: "isDeleted",
display: false,
hide: true,
},
{
label: "创建部门",
prop: "createDept",
display: false,
hide: true,
},
{
label: "预留1",
prop: "reserve1",
display: false,
hide: true,
},
{
label: "预留2",
prop: "reserve2",
display: false,
hide: true,
},
{
label: "预留3",
prop: "reserve3",
display: false,
hide: true,
},
{
label: "预留4",
prop: "reserve4",
display: false,
hide: true,
},
{
label: "预留5",
prop: "reserve5",
display: false,
hide: true,
},
{
label: "订单ID",
prop: "stockArticleId",
display: false,
hide: true,
},
{
label: "预约ID",
prop: "parcelListId",
display: false,
hide: true,
},
{
label: "总数量",
prop: "quantity",
},
{
label: "在库数量",
prop: "handQuantity",
},
{
label: "配送数量",
prop: "deliveryQuantity",
},
{
label: "签收数量",
prop: "signinQuantity",
},
]
}

120
src/option/distribution/distributionReservationZeroPackage.js

@ -0,0 +1,120 @@
export default {
expand: false,
index: true,
border: true,
selection: true,
column: [
{
label: "主键",
prop: "id",
display: false,
hide: true,
},
{
label: "租户号",
prop: "tenantId",
display: false,
hide: true,
},
{
label: "创建人",
prop: "createUser",
display: false,
hide: true,
},
{
label: "创建时间",
prop: "createTime",
display: false,
hide: true,
},
{
label: "更新人",
prop: "updateUser",
display: false,
hide: true,
},
{
label: "更新时间",
prop: "updateTime",
display: false,
hide: true,
},
{
label: "状态",
prop: "status",
display: false,
hide: true,
},
{
label: "是否已删除",
prop: "isDeleted",
display: false,
hide: true,
},
{
label: "创建部门",
prop: "createDept",
display: false,
hide: true,
},
{
label: "预留1",
prop: "reserve1",
display: false,
hide: true,
},
{
label: "预留2",
prop: "reserve2",
display: false,
hide: true,
},
{
label: "预留3",
prop: "reserve3",
display: false,
hide: true,
},
{
label: "预留4",
prop: "reserve4",
display: false,
hide: true,
},
{
label: "预留5",
prop: "reserve5",
display: false,
hide: true,
},
{
label: " 10 自提",
prop: "typesOf",
},
{
label: "订单ID",
prop: "stockArticleId",
},
{
label: "数量",
prop: "quantity",
},
{
label: "预约ID",
prop: "reservationId",
},
{
label: "零担包件状态;1-正常 ; 2 -取消 ; 3-新增",
prop: "zeroPackageStatus",
},
{
label: "品类名称",
prop: "categoryName",
},
{
label: "零担包件类型;1-商配 2-市配 3-自提",
prop: "type",
},
]
}

19
src/page/login/index.vue

@ -5,25 +5,26 @@
<div class="login-time">
{{ time }}
</div>
<p class="title">{{ $t('login.info') }}</p>
<!-- <img class="img" src="/img/logo.png" alt=""> -->
<img src="../../../public/img/indexbg.png" />
<!-- <p class="title">{{ $t('login.info') }}</p> -->
<!-- <img class="img" src="/img/logo.png" alt="" /> -->
</div>
<div class="login-border">
<div class="login-main">
<h4 class="login-title">
{{ $t('login.title') }}{{ website.title }}
<top-lang></top-lang>
<!-- {{ $t('login.title') }} -->
{{ website.title }}
<!-- <top-lang></top-lang> -->
<!-- 语言转换 -->
</h4>
<userLogin v-if="activeName === 'user'"></userLogin>
<codeLogin v-else-if="activeName === 'code'"></codeLogin>
<thirdLogin v-else-if="activeName === 'third'"></thirdLogin>
<div class="login-menu">
<!-- <a href="#" @click.stop="activeName = 'user'">{{ $t('login.userLogin') }}</a> -->
<!--<a href="#" @click.stop="activeName='code'">{{ $t('login.phoneLogin') }}</a>-->
<!-- <a href="#" @click.stop="activeName = 'code'">{{ $t('login.phoneLogin') }}</a> -->
<!-- <a href="#" @click.stop="activeName = 'third'">{{ $t('login.thirdLogin') }}</a> -->
<!-- <a :href="website.ssoUrl + website.redirectUri">{{ $t('login.ssoLogin') }}</a> -->
</div>

123
src/page/login/userlogin.vue

@ -8,45 +8,57 @@
label-width="0"
>
<el-form-item v-if="tenantMode" prop="tenantId">
<el-input
@keyup.enter="handleLogin"
v-model="loginForm.tenantId"
auto-complete="off"
:placeholder="$t('login.tenantId')"
>
<template #prefix>
<i class="icon-quanxian" />
</template>
</el-input>
<div class="inputLog">
<span>租户密钥</span>
<el-input
@keyup.enter="handleLogin"
v-model="loginForm.tenantId"
auto-complete="off"
:placeholder="$t('login.tenantId')"
>
<!-- <template #prefix>
<i class="icon-quanxian" />
</template> -->
</el-input>
</div>
</el-form-item>
<el-form-item prop="username">
<el-input
@keyup.enter="handleLogin"
v-model="loginForm.username"
auto-complete="off"
:placeholder="$t('login.username')"
>
<template #prefix>
<i class="icon-yonghu" />
</template>
</el-input>
<div class="inputLog">
<span>用户账号</span>
<el-input
@keyup.enter="handleLogin"
v-model="loginForm.username"
auto-complete="off"
:placeholder="$t('login.username')"
>
<!-- <template #prefix>
<i class="icon-yonghu" />
</template> -->
</el-input>
</div>
</el-form-item>
<el-form-item prop="password">
<el-input
@keyup.enter="handleLogin"
:type="passwordType"
v-model="loginForm.password"
auto-complete="off"
:placeholder="$t('login.password')"
>
<template #suffix>
<i class="el-icon-view el-input__icon" @click="showPassword" />
</template>
<template #prefix>
<i class="icon-mima" />
</template>
</el-input>
<div class="inputLog">
<span>登录密码</span>
<el-input
@keyup.enter="handleLogin"
:type="passwordType"
v-model="loginForm.password"
auto-complete="off"
:placeholder="$t('login.password')"
>
<!-- <template #suffix>
<i class="el-icon-view el-input__icon" @click="showPassword" />
</template> -->
<!-- <template #prefix>
<i class="icon-mima" />
</template> -->
</el-input>
</div>
</el-form-item>
<el-checkbox v-model="checked2">记住密码</el-checkbox>
<el-form-item v-if="this.website.captchaMode" prop="code">
<el-row :span="24">
<el-col :span="16">
@ -171,6 +183,7 @@ export default {
],
},
};
const checked2 = ref(true);
},
created() {
this.getTenant();
@ -198,7 +211,7 @@ export default {
},
},
computed: {
...mapGetters(['tagWel', 'userInfo','setting']),
...mapGetters(['tagWel', 'userInfo', 'setting']),
},
props: [],
methods: {
@ -240,7 +253,7 @@ export default {
if (this.website.switchMode) {
const deptId = this.userInfo.dept_id;
const roleId = this.userInfo.role_id;
if (deptId.includes(',') || roleId.includes(',')) {
this.loginForm.deptId = deptId;
this.loginForm.roleId = roleId;
@ -279,4 +292,40 @@ export default {
};
</script>
<style></style>
<style lang="scss" scope>
.inputLog {
display: flex;
color: #002e55;
font-weight: bold;
span {
width: 100px;
display: flex;
align-items: center;
justify-content: center;
letter-spacing: 2px;
}
}
.el-input__inner {
border-radius: 6px;
background-color: #f4f8fb;
padding: 0 10px;
color: #002e55;
font-weight: 700;
letter-spacing: 2px;
}
.el-checkbox {
margin-left: 27%;
}
.el-input__wrapper {
padding-bottom: 0 !important;
border: 0 !important ;
}
.el-button {
border-radius: 8px;
}
.el-checkbox__input.is-checked + .el-checkbox__label {
font-weight: 500;
color: #002e55 !important;
}
</style>

626
src/styles/flowStyle.scss

@ -1,339 +1,343 @@
.bx {
position: relative;
.ztjk {
position: relative;
margin-left: 7.5%;
margin-top: 2%;
.ztjk {
display: flex;
flex-direction: column;
align-items: center;
position: absolute;
font-size: 14px;
font-size: #747474;
top: 235px;
left: 680px;
> img {
width: 62px;
height: 62px;
}
}
.left {
width: 640px !important;
height: 500px;
background: #ffffff;
box-shadow: 0px 6px 0 #f3e2cc, 0px 0px 20px #f3e2cc;
border-radius: 32px;
opacity: 1;
box-sizing: border-box;
position: absolute;
left: 20px;
top: 10px;
padding: 30px 44px;
.tptitl {
display: flex;
flex-direction: column;
align-items: center;
position: absolute;
font-size: 14px;
font-size: #747474;
top: 235px;
left: 680px;
> img {
width: 62px;
height: 62px;
width: 32px;
height: 22px;
margin-right: 8px;
}
}
.left {
width: 640px !important;
height: 500px;
background: #ffffff;
box-shadow: 0px 0px 16px 0px rgba(211, 131, 42, 0.1);
border-radius: 32px;
opacity: 1;
box-sizing: border-box;
position: absolute;
left: 20px;
top: 10px;
padding: 30px 44px;
.tptitl {
.onebx1 {
width: 100%;
height: 100%;
position: relative;
margin-top: 30px;
> div {
display: flex;
flex-direction: column;
align-items: center;
position: absolute;
font-size: 14px;
font-size: #747474;
> img {
width: 32px;
height: 22px;
margin-right: 8px;
width: 62px;
height: 62px;
}
}
.onebx1 {
width: 100%;
height: 100%;
position: relative;
margin-top: 30px;
> div {
display: flex;
flex-direction: column;
align-items: center;
position: absolute;
font-size: 14px;
font-size: #747474;
> img {
width: 62px;
height: 62px;
}
}
.item1 {
top: 10px;
left: 0px;
}
.item2 {
top: 140px;
left: 0px;
}
.item3 {
top: 10px;
left: 140px;
}
.item4 {
top: 140px;
left: 140px;
}
.item5 {
top: 270px;
left: 140px;
}
.item6 {
top: 10px;
left: 330px;
}
.item7 {
top: 140px;
left: 330px;
}
.item8 {
top: 140px;
left: 450px;
}
.upimg {
width: 15px;
height: 40px;
position: absolute;
left: 355px;
top: 100px;
}
.rigth1 {
width: 40px;
height: 15px;
position: absolute;
left: 80px;
top: 40px;
}
.rigth2 {
width: 40px;
height: 15px;
position: absolute;
left: 80px;
top: 180px;
}
.rigth3 {
width: 40px;
height: 15px;
position: absolute;
left: 400px;
top: 180px;
}
.rigth4 {
width: 40px;
height: 15px;
position: absolute;
left: 530px;
top: 180px;
}
.rigthall {
width: 40px;
height: 270px;
position: absolute;
left: 250px;
top: 50px;
}
.item1 {
top: 10px;
left: 0px;
}
.item2 {
top: 140px;
left: 0px;
}
.item3 {
top: 10px;
left: 140px;
}
.item4 {
top: 140px;
left: 140px;
}
.item5 {
top: 270px;
left: 140px;
}
.item6 {
top: 10px;
left: 330px;
}
.item7 {
top: 140px;
left: 330px;
}
.item8 {
top: 140px;
left: 450px;
}
.upimg {
width: 15px;
height: 40px;
position: absolute;
left: 355px;
top: 100px;
}
.rigth1 {
width: 40px;
height: 15px;
position: absolute;
left: 80px;
top: 40px;
}
.rigth2 {
width: 40px;
height: 15px;
position: absolute;
left: 80px;
top: 180px;
}
.rigth3 {
width: 40px;
height: 15px;
position: absolute;
left: 400px;
top: 180px;
}
.rigth4 {
width: 40px;
height: 15px;
position: absolute;
left: 530px;
top: 180px;
}
.rigthall {
width: 40px;
height: 270px;
position: absolute;
left: 250px;
top: 50px;
}
}
}
.rigth {
width: 640px;
height: 500px;
background: #ffffff;
box-shadow: 0px 6px 0 #d3f6ef, 0px 0px 20px #d3f6ef;
border-radius: 32px;
opacity: 1;
box-sizing: border-box;
position: absolute;
left: 760px;
top: 10px;
padding: 30px 44px;
.tptitl {
display: flex;
align-items: center;
> img {
width: 32px;
height: 22px;
margin-right: 8px;
}
}
.rigth {
width: 640px;
height: 500px;
background: #ffffff;
box-shadow: 0px 0px 16px 0px rgba(58, 216, 188, 0.102);
border-radius: 32px;
opacity: 1;
box-sizing: border-box;
position: absolute;
left: 760px;
top: 10px;
padding: 30px 44px;
.tptitl {
.onebx1 {
width: 100%;
height: 100%;
position: relative;
margin-top: 30px;
> div {
display: flex;
flex-direction: column;
align-items: center;
position: absolute;
font-size: 14px;
font-size: #747474;
> img {
width: 32px;
height: 22px;
margin-right: 8px;
width: 62px;
height: 62px;
}
}
.onebx1 {
width: 100%;
height: 100%;
position: relative;
margin-top: 30px;
> div {
display: flex;
flex-direction: column;
align-items: center;
position: absolute;
font-size: 14px;
font-size: #747474;
> img {
width: 62px;
height: 62px;
}
}
.item1 {
top: 140px;
left: 50px;
}
.item2 {
top: 140px;
left: 170px;
}
.item3 {
top: 270px;
left: 170px;
}
.item4 {
top: 10px;
left: 300px;
}
.item5 {
top: 140px;
left: 300px;
}
.item6 {
top: 10px;
left: 430px;
}
.item7 {
top: 140px;
left: 430px;
}
.item8 {
top: 270px;
left: 430px;
}
.upimg {
width: 15px;
height: 40px;
position: absolute;
left: 190px;
top: 230px;
}
.rigth1 {
width: 40px;
height: 15px;
position: absolute;
left: 0px;
top: 180px;
}
.rigth2 {
width: 40px;
height: 15px;
position: absolute;
left: 120px;
top: 180px;
}
.rigth3 {
width: 40px;
height: 15px;
position: absolute;
left: 375px;
top: 180px;
}
.rigth4 {
width: 40px;
height: 15px;
position: absolute;
left: 375px;
top: 50px;
}
.leftall {
width: 182px;
height: 540px;
position: absolute;
left: 350px;
top: 50px;
z-index: 99;
}
.rigthall {
width: 165px;
height: 270px;
position: absolute;
left: 250px;
top: 50px;
}
.item1 {
top: 140px;
left: 50px;
}
.item2 {
top: 140px;
left: 170px;
}
.item3 {
top: 270px;
left: 170px;
}
.item4 {
top: 10px;
left: 300px;
}
.item5 {
top: 140px;
left: 300px;
}
.item6 {
top: 10px;
left: 430px;
}
.item7 {
top: 140px;
left: 430px;
}
.item8 {
top: 270px;
left: 430px;
}
.upimg {
width: 15px;
height: 40px;
position: absolute;
left: 190px;
top: 230px;
}
.rigth1 {
width: 40px;
height: 15px;
position: absolute;
left: 0px;
top: 180px;
}
.rigth2 {
width: 40px;
height: 15px;
position: absolute;
left: 120px;
top: 180px;
}
.rigth3 {
width: 40px;
height: 15px;
position: absolute;
left: 375px;
top: 180px;
}
.rigth4 {
width: 40px;
height: 15px;
position: absolute;
left: 375px;
top: 50px;
}
.leftall {
width: 182px;
height: 540px;
position: absolute;
left: 350px;
top: 50px;
z-index: 99;
}
.rigthall {
width: 165px;
height: 270px;
position: absolute;
left: 250px;
top: 50px;
}
}
.buts {
width: 1380px;
height: 234px;
background: #ffffff;
box-shadow: 0 0 16px 0 rgba(0, 134, 241, 0.102);
border-radius: 32px;
opacity: 1;
position: absolute;
box-sizing: border-box;
left: 20px;
top: 540px;
padding: 30px 44px;
.tptitl {
}
.buts {
width: 1380px;
height: 234px;
background: #ffffff;
box-shadow: 0px 6px 0 #c5e5fa, 0px 0px 20px #c5e5fa;
border-radius: 32px;
opacity: 1;
position: absolute;
box-sizing: border-box;
left: 20px;
top: 540px;
padding: 30px 44px;
.tptitl {
display: flex;
align-items: center;
> img {
width: 32px;
height: 22px;
margin-right: 8px;
}
}
.onebx1 {
width: 100%;
height: 100%;
position: relative;
margin-top: 30px;
> div {
display: flex;
flex-direction: column;
align-items: center;
position: absolute;
font-size: 14px;
font-size: #747474;
> img {
width: 32px;
height: 22px;
margin-right: 8px;
width: 62px;
height: 62px;
}
}
.onebx1{
width: 100%;
height: 100%;
position: relative;
margin-top: 30px;
> div {
display: flex;
flex-direction: column;
align-items: center;
position: absolute;
font-size: 14px;
font-size: #747474;
> img {
width: 62px;
height: 62px;
}
}
.item1{
left: 1000px;
top:10px;
}
.item2{
left: 800px;
top:10px;
}
.item3{
left: 600px;
top:10px;
}
.item4{
left: 400px;
top:10px;
}
.left1{
width: 60px;
height: 15px;
position: absolute;
left: 900px;
top: 50px;
transform: rotate(180deg);
}
.left2{
width: 60px;
height: 15px;
position: absolute;
left: 700px;
top: 50px;
transform: rotate(180deg);
}
.left3{
width: 60px;
height: 15px;
position: absolute;
left: 500px;
top: 50px;
transform: rotate(180deg);
}
.item1 {
left: 1000px;
top: 10px;
}
.item2 {
left: 800px;
top: 10px;
}
.item3 {
left: 600px;
top: 10px;
}
.item4 {
left: 400px;
top: 10px;
}
.left1 {
width: 60px;
height: 15px;
position: absolute;
left: 900px;
top: 50px;
transform: rotate(180deg);
}
.left2 {
width: 60px;
height: 15px;
position: absolute;
left: 700px;
top: 50px;
transform: rotate(180deg);
}
.left3 {
width: 60px;
height: 15px;
position: absolute;
left: 500px;
top: 50px;
transform: rotate(180deg);
}
}
}
.tptitl{
color: #172E60;
}
.bx{
user-select: none;
}
}
.tptitl {
color: #172e60;
}
.bx {
user-select: none;
}

28
src/styles/login.scss

@ -5,14 +5,14 @@
width: 100%;
height: 100%;
margin: 0 auto;
background-image: url("/img/bg/bg.jpg");
background-image: url('/img/bg/bg.jpg');
background-size: 100% 100%;
}
.login-weaper {
margin: 0 auto;
width: 1000px;
box-shadow: -4px 5px 10px rgba(0, 0, 0, 0.4);
box-shadow: 1px 1px 4px #d9d9d9;
.el-input-group__append {
border: none;
@ -32,7 +32,7 @@
border-bottom-left-radius: 5px;
justify-content: center;
flex-direction: column;
background-color: #8b9aac;
background-color: #fff;
color: #fff;
float: left;
width: 50%;
@ -48,8 +48,8 @@
left: 25px;
top: 25px;
width: 100%;
color: #fff;
font-weight: 200;
color: #002e55;
font-weight: 500;
opacity: 0.9;
font-size: 18px;
overflow: hidden;
@ -76,7 +76,7 @@
.login-main {
margin: 0 auto;
width: 65%;
width: 100%;
box-sizing: border-box;
}
@ -89,10 +89,10 @@
}
.login-title {
color: #333;
color: #002e55;
margin-bottom: 40px;
font-weight: 500;
font-size: 22px;
font-weight: 600;
font-size: 30px;
text-align: center;
letter-spacing: 4px;
}
@ -112,20 +112,24 @@
.login-submit {
width: 100%;
height: 45px;
border: 1px solid #172e60;
// border: 1px solid #172e60;
border: 0;
background: none;
font-size: 18px;
letter-spacing: 2px;
font-weight: 300;
color: #172e60;
color: #fff;
cursor: pointer;
margin-top: 30px;
font-family: "neo";
font-family: 'neo';
transition: 0.25s;
background-color: #d3822a !important;
}
.login-form {
margin: 10px 0;
width: 65%;
margin: 0 auto;
i {
color: #333;

405
src/views/basicdata/warehouse/goodsShelf/basicdataGoodsShelfView.vue

@ -33,19 +33,19 @@
<div class="tips">
<el-button icon="el-icon-refresh" @click="checkshelves" circle></el-button>
<div class="exprbuts" @click="handleExportArea">导出</div>
<div>
<div class="ls-box">
总货位:
<span class="def">{{ countnumber.cargoNub }}</span>
</div>
<div>
<div class="ls-box">
占用货位:
<span class="red">{{ countnumber.employNub }}</span>
</div>
<div>
<div class="ls-box">
未用货位:
<span class="green">{{ countnumber.unusedNub }}</span>
</div>
<div>
<div class="ls-box">
禁用货位:
<span class="red">{{ countnumber.disableNub }}</span>
</div>
@ -66,37 +66,42 @@
</div>
</el-scrollbar>
</div>
<div class="tips">
<div>
总货位:
<span class="def">{{ boxdetails.cargoNub }}</span>
</div>
<div>
占用货位:
<span class="red">{{ boxdetails.employNub }}</span>
</div>
<div>
未用货位:
<span class="green">{{ boxdetails.unusedNub }}</span>
</div>
<div>
禁用货位:
<span class="red">{{ boxdetails.disableNub }}</span>
</div>
<div>
货物总数:
<span class="red">{{ boxdetails.goodsNub }}</span>
</div>
<div class="tips tips-Menu">
<div>
总货位:
<span class="def">{{ boxdetails.cargoNub }}</span>
</div>
<div>
占用货位:
<span class="red">{{ boxdetails.employNub }}</span>
</div>
<div>
未用货位:
<span class="green">{{ boxdetails.unusedNub }}</span>
</div>
<div>
禁用货位:
<span class="red">{{ boxdetails.disableNub }}</span>
</div>
<div>
货物总数:
<span class="red">{{ boxdetails.goodsNub }}</span>
</div>
</div>
<div class="mabx">
<el-scrollbar max-height="70vh">
<el-scrollbar max-height="70vh" class="contentbj">
<div class="contentbx" :style="contenbxsty">
<div class="itemwbox" v-for="item in contenarr">
<div class="itemmibox" v-for="ite in item">
<div
:class="ite.enableStatus == 2 ? 'itemmibox rotate' : 'itemmibox'"
v-for="ite in item"
>
<div v-if="ite.enableStatus == 2">禁用货位</div>
<el-tooltip
:disabled="Number(ite.enableStatus) == 2"
placement="bottom"
hide-after="50"
v-else
>
<template #content>
<div v-if="ite.allocationStatus == 1">没有货位信息</div>
@ -131,11 +136,26 @@
: 'itembox'
"
>
<div class="titls">{{ (arrlist[checkselect]?.warehouseGoodsAreaVOList[checkregionselect].headline)+'-'+ite.layerNum + '层' + '-' + ite.columnNum + '列' }}</div>
<div>{{ '包件数:' + ite.packageNum }}</div>
<div>{{ '订单数:' + ite.orderNum }}</div>
<div>{{ '零担数:' + ite.lessNum }}</div>
<div>{{ '库存品数:' + ite.inventoryNum }}</div>
<div class="titls">
{{
arrlist[checkselect]?.warehouseGoodsAreaVOList[checkregionselect].headline +
'-' +
ite.layerNum +
'层' +
'-' +
ite.columnNum +
'列'
}}
</div>
<div
class="tilts-info"
v-if="ite.packageNum || ite.orderNum || ite.lessNum || ite.inventoryNum"
>
<span>包件数:{{ Number(ite.packageNum) }}</span>
<span>订单数:{{ Number(ite.orderNum) }}</span>
<span>零担数:{{ Number(ite.lessNum) }}</span>
<span>库存品数:{{ Number(ite.inventoryNum) }}</span>
</div>
</div>
</el-tooltip>
</div>
@ -188,7 +208,7 @@
</template>
</el-dialog>
<!-- 上架 -->
<el-dialog
<el-dialog
v-model="isshowupt"
:title="
'请选择' +
@ -209,6 +229,7 @@
"
width="80%"
center
class="loadtc"
>
<div class="disbox">
<div class="headtopscan">
@ -228,7 +249,7 @@
/>
</el-select> -->
<div class="inptx">
<div>
<div class="asbor">
{{
isshowupt == 1
? '服务号'
@ -315,15 +336,8 @@
</template> -->
</el-dialog>
<el-dialog
v-model="isshowConfirmedListing"
:title="
'确定上架'
"
width="50%"
center
>
<div style="text-align: center;">
<el-dialog v-model="isshowConfirmedListing" :title="'确定上架'" width="50%" center>
<div style="text-align: center">
<el-button type="primary" @click="confirmedListing">确定</el-button>
<el-button @click="isshowConfirmedListing = false">取消</el-button>
</div>
@ -346,6 +360,8 @@
"
width="80%"
center
w
class="loadtc"
>
<div class="disbox">
<div class="headtopscan">
@ -411,7 +427,6 @@
</div>
<el-input
style="flex: 1"
v-model="inputtxts1"
:placeholder="
'请输入' +
@ -492,6 +507,7 @@ import { exportBlob } from '@/api/common';
import { downloadXls } from '@/utils/util';
import { dateNow } from '@/utils/date';
const { proxy } = getCurrentInstance();
let loadtc = ref(false);
let details = reactive({
columnList: [],
tablistarr: [],
@ -533,7 +549,7 @@ let details = reactive({
checkselectchangearr: [],
isshowdow: false,
inputtxts1: '',
boxdetails:{}
boxdetails: {},
});
onMounted(() => {
details.contenbxsty['--length'] = details.contenarr[0]?.length || 0;
@ -571,32 +587,35 @@ function initpage() {
// let warehousearr=
}
function handleExportArea() {
let id=details.arrlist[details.checkselect]?.id||0
let name=details.arrlist[details.checkselect]?.name||''
if (id ===0){
let id = details.arrlist[details.checkselect]?.id || 0;
let name = details.arrlist[details.checkselect]?.name || '';
if (id === 0) {
proxy.$message({
type: "success",
message: "无选择仓库!"
type: 'success',
message: '无选择仓库!',
});
return;
}
let downloadUrl = `/logpm-basicdata/goodsArea/export-visualizationwarehouse?${proxy.website.tokenHeader}=${getToken()}`;
console.log("id>>>>>>>>>>>>>>",id);
let downloadUrl = `/logpm-basicdata/goodsArea/export-visualizationwarehouse?${
proxy.website.tokenHeader
}=${getToken()}`;
console.log('id>>>>>>>>>>>>>>', id);
let values = {
areaId:id,
areaId: id,
};
proxy.$confirm("是否导出数据?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
}).then(() => {
NProgress.start();
exportBlob(downloadUrl, values).then(res => {
downloadXls(res.data, name+`${dateNow()}.xlsx`);
NProgress.done();
proxy
.$confirm('是否导出数据?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
})
});
.then(() => {
NProgress.start();
exportBlob(downloadUrl, values).then(res => {
downloadXls(res.data, name + `${dateNow()}.xlsx`);
NProgress.done();
});
});
}
function currentChange(currentPage) {
@ -608,6 +627,7 @@ function sizeChange(pageSize) {
searchbuts();
}
async function searchbuts() {
loadtc = true; //
let url = '';
let data = null;
// console.log(details.arrlist[details.checkindex].id);
@ -754,7 +774,7 @@ async function checkshelves() {
console.log(res.data, 'res.data.datares.data.datares.data.datares.data.datares.data.data');
let arrs = [];
let maxlength = 0;
details.boxdetails=res.data.data
details.boxdetails = res.data.data;
res.data.data.list.map(item => {
if (item.columnNum > maxlength) {
maxlength = item.columnNum;
@ -787,8 +807,8 @@ async function checkshelves() {
// }
// };
const showupt = value => {
details.inputtxts=''
details.inputtxts1=''
details.inputtxts = '';
details.inputtxts1 = '';
console.log('112312');
details.isshowupt = value;
switch (details.isshowupt) {
@ -849,7 +869,7 @@ const showupt = value => {
},
{
prop: 'customerAddress',
label: '顾客电话',
label: '顾客地址',
type: 1,
values: '',
width: '260',
@ -928,7 +948,7 @@ const showupt = value => {
},
{
prop: 'customerAddress',
label: '顾客电话',
label: '顾客地址',
type: 1,
values: '',
width: '260',
@ -1029,7 +1049,7 @@ const showupt = value => {
},
{
prop: 'customerAddress',
label: '顾客电话',
label: '顾客地址',
type: 1,
values: '',
width: '150',
@ -1251,6 +1271,17 @@ const showupt = value => {
sortable: true,
head: false,
},
{
prop: 'enterNum',
label: '可上架数量',
type: 10,
values: '',
width: '200',
checkarr: [],
fixed: true,
sortable: true,
head: false,
},
{
prop: '',
label: '操作',
@ -1333,7 +1364,18 @@ const showupt = value => {
{
prop: 'customerAddress',
label: '顾客电话',
label: '顾客地址',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'residueNumber',
label: '可上架数量',
type: 1,
values: '',
width: '150',
@ -1365,7 +1407,7 @@ const alldown = async () => {
let data = {
allocationId: details.checkite.id,
};
if(details.checkselectchangearr.length==0){
if (details.checkselectchangearr.length == 0) {
proxy.$message({
type: 'error',
message: '请先勾选数据',
@ -1385,7 +1427,7 @@ const alldown = async () => {
break;
case 3:
url = 'downStock';
scope.row.stockType=1;
scope.row.stockType = 1;
scope.row.allocationId = details.checkite.id;
data.upShelfStockList = details.checkselectchangearr;
break;
@ -1403,7 +1445,7 @@ const alldown = async () => {
type: 'success',
message: response.data.msg,
});
searchbutdown()
searchbutdown();
// details.tablistarr = response.data.data.records;
// details.total = response.data.data.total;
} else {
@ -1439,7 +1481,7 @@ const downhj = async scope => {
break;
case 3:
url = 'downStock';
scope.row.stockType=1;
scope.row.stockType = 1;
scope.row.allocationId = details.checkite.id;
data.upShelfStockList = [scope.row];
break;
@ -1457,7 +1499,7 @@ const downhj = async scope => {
type: 'success',
message: response.data.msg,
});
searchbutdown()
searchbutdown();
// details.tablistarr = response.data.data.records;
// details.total = response.data.data.total;
} else {
@ -1539,13 +1581,13 @@ const searchbutdown = async () => {
}
};
const showdown = async value => {
details.inputtxts=''
details.inputtxts1=''
details.inputtxts = '';
details.inputtxts1 = '';
if (value == 5) {
let url = 'downAllocation?ids='+details.checkite.id;
let data={
ids:details.checkite.id
}
let url = 'downAllocation?ids=' + details.checkite.id;
let data = {
ids: details.checkite.id,
};
let response = await posturl(url, data);
if (response.data.code == 200) {
console.log(response.data);
@ -1561,7 +1603,7 @@ const showdown = async value => {
message: response.data.msg,
});
}
return
return;
}
details.isshowdow = value;
switch (details.isshowdow) {
@ -1831,6 +1873,18 @@ const showdown = async value => {
sortable: true,
head: false,
},
{
prop: 'num',
label: '可下架数量',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: '',
label: '操作',
@ -1888,17 +1942,6 @@ const showdown = async value => {
sortable: true,
head: false,
},
{
prop: 'num',
label: '货位剩余数',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'orderCode',
label: '订单号',
@ -2009,8 +2052,8 @@ const showdown = async value => {
searchbutdown();
};
const addhuoj = async scope => {
details.addhuojData = scope
details.isshowConfirmedListing = true
details.addhuojData = scope;
details.isshowConfirmedListing = true;
console.log(scope.row);
};
//
@ -2018,7 +2061,7 @@ const confirmedListing = async () => {
let data = {
allocationId: details.checkite.id,
};
const scope = details.addhuojData
const scope = details.addhuojData;
let url = '';
switch (details.isshowupt) {
case 1:
@ -2035,12 +2078,12 @@ const confirmedListing = async () => {
break;
case 4:
url = 'upTray';
let obj={
code:scope.row.palletCode,
allocationId:details.checkite.id
}
let obj = {
code: scope.row.palletCode,
allocationId: details.checkite.id,
};
data =obj
data = obj;
break;
case 5:
url = 'upStock';
@ -2057,14 +2100,14 @@ const confirmedListing = async () => {
}
let response = await posturl(url, data);
//
details.isshowConfirmedListing = false
details.isshowConfirmedListing = false;
if (response.data.code == 200) {
console.log(response.data);
proxy.$message({
type: 'success',
message: response.data.msg,
});
searchbuts()
searchbuts();
// details.tablistarr = response.data.data.records;
// details.total = response.data.data.total;
} else {
@ -2073,7 +2116,7 @@ const confirmedListing = async () => {
message: response.data.msg,
});
}
}
};
async function allup() {
// console.log(scope.row);
let data = {
@ -2125,7 +2168,7 @@ async function allup() {
type: 'success',
message: response.data.msg,
});
searchbuts()
searchbuts();
// details.tablistarr = response.data.data.records;
// details.total = response.data.data.total;
} else {
@ -2140,11 +2183,11 @@ const removeinputup = () => {
details.inputtxts1 = '';
searchbuts();
};
const removeinputdown=()=>{
const removeinputdown = () => {
details.inputtxts = '';
details.inputtxts1 = '';
searchbutdown();
}
};
const btnsc = scope => {
console.log(scope);
};
@ -2162,8 +2205,8 @@ const selectionChange = scope => {
details.checkselectchangearr = scope;
};
const checkitem = ite => {
details.inputtxts=''
details.inputtxts1=''
details.inputtxts = '';
details.inputtxts1 = '';
if (Number(ite.allocationStatus) == 2) {
details.isshowcon = 2;
details.checkite = ite;
@ -2228,7 +2271,7 @@ const {
countnumber,
} = toRefs(details);
</script>
<style lang="scss">
<style lang="scss" scope>
.fwhserveNub {
display: flex;
flex-direction: column;
@ -2245,12 +2288,13 @@ const {
display: flex;
align-items: center;
.inptx {
width: 260px;
margin-left: 20px;
display: flex;
align-items: center;
> div {
width: 60px;
.el-input {
margin-left: 10px;
}
.asbor {
width: 100px;
}
}
}
@ -2263,6 +2307,7 @@ const {
}
:root {
--boxcolor: #adadad;
--bordercolor: #ccc;
}
.mabx {
height: 70vh;
@ -2271,12 +2316,17 @@ const {
box-sizing: border-box;
.contentbx {
width: calc(150 * var(--length) * 0.0521vw);
// border: 0 !important;
display: flex;
// flex-direction: column;
align-items: flex-end;
border: 1.5px solid var(--boxcolor);
border: none;
background-color: #fff;
box-sizing: border-box;
align-items: flex-end;
.headtop {
display: flex;
align-items: center;
@ -2285,14 +2335,15 @@ const {
// height: 90px;
width: 150px;
box-sizing: border-box;
border-right: 1.5px solid var(--boxcolor);
margin-right: 2px;
// border-right: 1.5px solid var(--boxcolor);
&:nth-last-child(1) {
border-right: 0;
}
&:nth-last-child(1) {
.itemmibox {
border-bottom: 1.5px solid var(--boxcolor);
// border-bottom: 1.5px solid var(--boxcolor);
}
}
.titls {
@ -2318,8 +2369,9 @@ const {
box-sizing: border-box;
color: rgba(237, 25, 25);
margin-bottom: 2px;
&:nth-last-child(1) {
border-right: 0;
// border-right: 0;
}
}
}
@ -2334,7 +2386,7 @@ const {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
justify-content: flex-start;
flex-direction: column;
// font-size: 14px;
}
@ -2360,15 +2412,16 @@ const {
display: flex;
align-items: center;
justify-content: flex-start;
padding: 20px;
box-sizing: border-box;
background-color: #fff;
width: 99%;
margin: 10px auto;
padding: 4px;
.liebs {
display: flex;
align-items: center;
justify-content: flex-start;
padding-bottom: 15px;
// width: 6000px;
width: 100%;
}
.item {
margin-right: 10px;
@ -2399,7 +2452,8 @@ const {
> .tips {
display: flex;
align-items: center;
.exprbuts{
.exprbuts {
width: 70px;
height: 30px;
color: #666666;
@ -2409,11 +2463,11 @@ const {
display: flex;
align-items: center;
justify-content: center;
border: 1.5px solid #E8E8E8;
border: 1.5px solid #e8e8e8;
cursor: pointer;
}
> div {
margin-left: 20px;
// margin-left: 20px;
}
.def {
color: rgb(30, 159, 255);
@ -2430,35 +2484,80 @@ const {
}
}
.tips {
display: flex;
align-items: center;
.exprbuts {
width: 70px;
height: 30px;
color: #666666;
font-size: 12px;
background-color: #fff;
border-radius: 3px;
display: flex;
align-items: center;
.exprbuts{
width: 70px;
height: 30px;
color: #666666;
font-size: 12px;
background-color: #fff;
border-radius: 3px;
display: flex;
align-items: center;
justify-content: center;
border: 1.5px solid #E8E8E8;
cursor: pointer;
}
> div {
margin-left: 20px;
}
.def {
color: rgb(30, 159, 255);
font-weight: 600;
}
.red {
color: rgb(255, 87, 34);
font-weight: 600;
}
.green {
color: rgb(95, 184, 120);
font-weight: 600;
}
justify-content: center;
border: 1.5px solid #e8e8e8;
cursor: pointer;
}
> div {
padding: 0 8px;
font-weight: 500;
}
.def {
color: rgb(30, 159, 255);
font-weight: 600;
}
.red {
color: rgb(255, 87, 34);
font-weight: 600;
}
.green {
color: rgb(95, 184, 120);
font-weight: 600;
}
}
.tips-Menu {
background-color: #fff;
padding: 8px 0;
width: 99%;
margin: 0 auto;
}
.contentbj {
background-color: #fff;
// border: 1px solid var(--bordercolor);
}
.itemwbox:last-child {
// .itemmibox {
// border-right: 1px solid var(--boxcolor);
// }
}
.itemwbox {
overflow: hidden;
}
.itemwbox {
border-top: none !important;
}
.tilts-info {
display: flex;
flex-direction: column;
align-items: flex-start;
width: 120px;
}
.itemmibox {
border: 0 !important;
}
.mabx .contentbx .itemwbox .rotate {
border: 1px solid #ff0000 !important;
background-color: #bd3a52 !important;
color: #fff;
}
.el-input__inner {
background-color: transparent !important;
}
.loadtc {
margin-top: 2% !important;
}
</style>

8
src/views/distribution/inventory/delivery/distributionStockArticle.vue

@ -1111,14 +1111,18 @@ export default {
st = true;
this.$message.warning(i.orderCode+" - 为冻结单,无法转为库存品!!!");
}
if(i.isZero === "1" && i.completeSet === "1"){
st = true;
this.$message.warning(i.orderCode+" - 未齐套,无法转为库存品!!!");
}
if(!st){
//
// console.log("cxcxcxc",i);
let aa = await getListOwn(this.page.currentPage,this.page.pageSize,{ stockArticleId : i.id } ).then();
// console.log("",aa.data.data.records);
aa.data.data.records.forEach( l =>{
console.log(l.materialId , l.materialName , l.materialCode , l.materialUnit);
if(!l.materialId || l.materialId == '-1'){
// console.log(l.materialId , l.materialName , l.materialCode , l.materialUnit);
if(!l.materialId){
lost = true;
}
})

2
src/views/distribution/inventory/distributionStockListDetails.vue

@ -328,7 +328,7 @@ export default {
head: false,
},
{
prop: 'marketName',
prop: 'descriptionGoods',
label: '货物名称',
type: 2,
values: '',

285
src/views/distribution/zero/distributionParcelNumber.vue

@ -0,0 +1,285 @@
<template>
<basic-container>
<div class="avue-crud">
<el-row :hidden="!search" style="padding:6px 18px">
<!-- 查询模块 -->
<el-form :inline="true" :model="query">
<!-- 查询按钮 -->
<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 type="primary" icon="el-icon-plus" @click="handleAdd"> </el-button>
<el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain> </el-button>
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
<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>
</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>
</el-row>
<el-row>
<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>
</div>
</el-row>
<!-- 表单模块 -->
<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="quantity">
<el-input v-model="form.quantity" placeholder="请输入总数量"/>
</el-form-item>
<el-form-item label="在库数量" prop="handQuantity">
<el-input v-model="form.handQuantity" placeholder="请输入在库数量"/>
</el-form-item>
<el-form-item label="配送数量" prop="deliveryQuantity">
<el-input v-model="form.deliveryQuantity" placeholder="请输入配送数量"/>
</el-form-item>
<el-form-item label="签收数量" prop="signinQuantity">
<el-input v-model="form.signinQuantity" placeholder="请输入签收数量"/>
</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 icon="el-icon-circle-close" @click="box = false"> </el-button>
</span>
</template>
</el-dialog>
</div>
</basic-container>
</template>
<script>
import { getList, getDetail, add, update, remove } from "@/api/distribution/distributionParcelNumber";
import option from "@/option/distribution/distributionParcelNumber";
import { mapGetters } from "vuex";
export default {
data () {
return {
height: 0,
//
title: '',
//
box: false,
//
search: true,
//
loading: true,
//
view: false,
//
query: {},
//
page: {
currentPage: 1,
pageSize: 10,
total: 40
},
//
form: {},
//
selectionList: [],
//
option: option,
//
data: [],
}
},
mounted () {
this.init();
this.onLoad(this.page);
},
computed: {
...mapGetters(["permission"]),
ids () {
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.id);
});
return ids.join(",");
}
},
methods: {
init () {
this.height = this.setPx(document.body.clientHeight - 340);
},
searchHide () {
this.search = !this.search;
},
searchChange () {
this.onLoad(this.page);
},
searchReset () {
this.query = {};
this.page.currentPage = 1;
this.onLoad(this.page);
},
handleSubmit () {
if (!this.form.id) {
add(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
} else {
update(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
})
}
},
handleAdd () {
this.title = '新增'
this.form = {}
this.box = true
},
handleEdit (row) {
this.title = '编辑'
this.box = true
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleView (row) {
this.title = '查看'
this.view = true;
this.box = true;
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleDelete () {
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(this.ids);
})
.then(() => {
this.selectionClear();
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
},
rowDel (row) {
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(row.id);
})
.then(() => {
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
},
beforeClose (done) {
done()
this.form = {};
this.view = false;
},
selectionChange (list) {
this.selectionList = list;
},
selectionClear () {
this.selectionList = [];
this.$refs.table.clearSelection();
},
currentChange (currentPage) {
this.page.currentPage = currentPage;
this.onLoad(this.page);
},
sizeChange (pageSize) {
this.page.pageSize = pageSize;
this.onLoad(this.page);
},
onLoad (page, params = {}) {
this.loading = true;
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.loading = false;
this.selectionClear();
});
}
}
};
</script>

294
src/views/distribution/zero/distributionReservationZeroPackage.vue

@ -0,0 +1,294 @@
<template>
<basic-container>
<div class="avue-crud">
<el-row :hidden="!search" style="padding:6px 18px">
<!-- 查询模块 -->
<el-form :inline="true" :model="query">
<!-- 查询按钮 -->
<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 type="primary" icon="el-icon-plus" @click="handleAdd"> </el-button>
<el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain> </el-button>
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
<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>
</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>
</el-row>
<el-row>
<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>
</div>
</el-row>
<!-- 表单模块 -->
<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=" 10 自提" prop="typesOf">
<el-input v-model="form.typesOf" placeholder="请输入 10 自提"/>
</el-form-item>
<el-form-item label="订单ID" prop="stockArticleId">
<el-input v-model="form.stockArticleId" placeholder="请输入订单ID"/>
</el-form-item>
<el-form-item label="数量" prop="quantity">
<el-input v-model="form.quantity" placeholder="请输入数量"/>
</el-form-item>
<el-form-item label="预约ID" prop="reservationId">
<el-input v-model="form.reservationId" placeholder="请输入预约ID"/>
</el-form-item>
<el-form-item label="零担包件状态;1-正常 ; 2 -取消 ; 3-新增" prop="zeroPackageStatus">
<el-input v-model="form.zeroPackageStatus" placeholder="请输入零担包件状态;1-正常 ; 2 -取消 ; 3-新增"/>
</el-form-item>
<el-form-item label="品类名称" prop="categoryName">
<el-input v-model="form.categoryName" placeholder="请输入品类名称"/>
</el-form-item>
<el-form-item label="零担包件类型;1-商配 2-市配 3-自提" prop="type">
<el-input v-model="form.type" placeholder="请输入零担包件类型;1-商配 2-市配 3-自提"/>
</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 icon="el-icon-circle-close" @click="box = false"> </el-button>
</span>
</template>
</el-dialog>
</div>
</basic-container>
</template>
<script>
import { getList, getDetail, add, update, remove } from "@/api/distribution/distributionReservationZeroPackage";
import option from "@/option/distribution/distributionReservationZeroPackage";
import { mapGetters } from "vuex";
export default {
data () {
return {
height: 0,
//
title: '',
//
box: false,
//
search: true,
//
loading: true,
//
view: false,
//
query: {},
//
page: {
currentPage: 1,
pageSize: 10,
total: 40
},
//
form: {},
//
selectionList: [],
//
option: option,
//
data: [],
}
},
mounted () {
this.init();
this.onLoad(this.page);
},
computed: {
...mapGetters(["permission"]),
ids () {
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.id);
});
return ids.join(",");
}
},
methods: {
init () {
this.height = this.setPx(document.body.clientHeight - 340);
},
searchHide () {
this.search = !this.search;
},
searchChange () {
this.onLoad(this.page);
},
searchReset () {
this.query = {};
this.page.currentPage = 1;
this.onLoad(this.page);
},
handleSubmit () {
if (!this.form.id) {
add(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
} else {
update(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
})
}
},
handleAdd () {
this.title = '新增'
this.form = {}
this.box = true
},
handleEdit (row) {
this.title = '编辑'
this.box = true
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleView (row) {
this.title = '查看'
this.view = true;
this.box = true;
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleDelete () {
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(this.ids);
})
.then(() => {
this.selectionClear();
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
},
rowDel (row) {
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(row.id);
})
.then(() => {
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
},
beforeClose (done) {
done()
this.form = {};
this.view = false;
},
selectionChange (list) {
this.selectionList = list;
},
selectionClear () {
this.selectionList = [];
this.$refs.table.clearSelection();
},
currentChange (currentPage) {
this.page.currentPage = currentPage;
this.onLoad(this.page);
},
sizeChange (pageSize) {
this.page.pageSize = pageSize;
this.onLoad(this.page);
},
onLoad (page, params = {}) {
this.loading = true;
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.loading = false;
this.selectionClear();
});
}
}
};
</script>

2
src/views/system/topmenu.vue

@ -357,7 +357,7 @@ export default {
};
</script>
<style>
<style scope>
.none-border {
border: 0;
background-color: transparent !important;

5
src/views/wel/index.vue

@ -127,7 +127,7 @@
</div>
</template>
<script lang="ts" setup></script>
<style lang="scss">
<style lang="scss" scope>
@import '../../styles/flowStyle.scss';
// .bx {
@ -469,6 +469,9 @@
// .bx{
// user-select: none;
// }
#avue-view {
background-color: #fff;
}
</style>
<script>
import { mapGetters } from 'vuex';

Loading…
Cancel
Save