提单&wcs空筛回流
parent
6169b81e1b
commit
4fcd7d0e1a
@ -0,0 +1,288 @@
|
||||
<template>
|
||||
<view class="page-product-receipt">
|
||||
<view class="header" :style="{ backgroundColor: `rgba(250, 53, 52, ${scrollTop / 100})` }">
|
||||
<view class="left">
|
||||
<u-icon class="icon" name="arrow-left" @click="uni.navigateBack({})" />
|
||||
</view>
|
||||
<view class="title">空筛回流</view>
|
||||
<view class="right"></view>
|
||||
</view>
|
||||
<u-form class="form" ref="form" label-width="180rpx">
|
||||
|
||||
|
||||
<u-form-item label="任务类型:">
|
||||
<jPicker sureColor="#ff0000" :moren="moren" @bindpicker="selectProductlocCode" showKey="label" valKey="value" :val="productCodelocList.value" :options="taskType" />
|
||||
</u-form-item>
|
||||
|
||||
<u-form-item label="location:">
|
||||
<jPicker sureColor="#ff0000" :moren="morenStart" @bindpicker="selectProductCode" showKey="label" valKey="value" :val="productCodeList.value" :options="location" />
|
||||
</u-form-item>
|
||||
</u-form>
|
||||
<view class="bottom-bar">
|
||||
<u-row class="button-bar">
|
||||
|
||||
<!-- 确定 -->
|
||||
<u-col :span="6">
|
||||
<u-button @click="onsubmit" type="primary">确定</u-button>
|
||||
</u-col>
|
||||
<!-- 返回 -->
|
||||
<u-col :span="6">
|
||||
<u-button type="error" @click="uni.navigateBack({})">返回</u-button>
|
||||
</u-col>
|
||||
</u-row>
|
||||
</view>
|
||||
<!-- <u-modal v-model="isshow" class="modal" :show-cancel-button="true" :show-title="false" @cancel="cancel()" @confirm="confirm">
|
||||
<div class="upload-name">
|
||||
<div class="name">托盘绑定</div>
|
||||
<u-input class="input" style="background: #ffffff; border: 1px solid #9f9e9e; margin-top: 10px; width: 80%; margin: auto; border-radius: 9px; text-align: center" :disabled="true" v-model="orderNo" placeholder="" />
|
||||
</div>
|
||||
</u-modal> -->
|
||||
<u-toast ref="uToast" />
|
||||
</view>
|
||||
</template>
|
||||
<script lang="ts">
|
||||
import { Component } from 'vue-property-decorator';
|
||||
import { BasePage } from '@/components/base/page';
|
||||
import model from './model';
|
||||
import chooseOne from '@/components/choose-one/choose-one.vue';
|
||||
import jPicker from '@/components/J-Picker/jPicker.vue';
|
||||
import { session } from '@/store/modules/session';
|
||||
//import { session } from '@/store/modules/session';
|
||||
//import store from '@/store';
|
||||
@Component({
|
||||
components: {
|
||||
chooseOne,
|
||||
jPicker,
|
||||
},
|
||||
})
|
||||
export default class EmptyEflux extends BasePage {
|
||||
model = model;
|
||||
moren = '选择任务类型';
|
||||
morenStart = '选择location';
|
||||
taskType = [
|
||||
{
|
||||
label: '取到6楼烘房',
|
||||
value: "1",
|
||||
},
|
||||
{
|
||||
label: '放到4楼回流线',
|
||||
value: "2",
|
||||
},
|
||||
];
|
||||
location=[
|
||||
{
|
||||
label: 'H61',
|
||||
value: "H61",
|
||||
},
|
||||
{
|
||||
label: 'H62',
|
||||
value: "H62",
|
||||
},
|
||||
{
|
||||
label: 'H63',
|
||||
value: "H63",
|
||||
},
|
||||
]
|
||||
productCodeList: any = {};
|
||||
productCodelocList: any = {};
|
||||
|
||||
// 模态框
|
||||
isshow = false;
|
||||
// remove: any = {};
|
||||
async onReady() {
|
||||
|
||||
}
|
||||
|
||||
orderNo: any = '';
|
||||
|
||||
locationStatus: any = 1;
|
||||
|
||||
generateGUID() {
|
||||
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
|
||||
var r = (Math.random() * 16) | 0,
|
||||
v = c === 'x' ? r : (r & 0x3) | 0x8;
|
||||
return v.toString(16);
|
||||
});
|
||||
}
|
||||
async onsubmit() {
|
||||
console.log(this.productCodeList.value == '' || this.productCodeList.value == undefined, this.productCodeList.value);
|
||||
|
||||
if (this.productCodelocList.value == '' || this.productCodelocList.value == undefined) {
|
||||
(this.$refs.uToast as any).show({
|
||||
title: '请选择任务类型',
|
||||
type: 'default',
|
||||
});
|
||||
return;
|
||||
}
|
||||
if (this.productCodeList.value == '' || this.productCodeList.value == undefined) {
|
||||
(this.$refs.uToast as any).show({
|
||||
title: '请选择location',
|
||||
type: 'default',
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
var currentDate = new Date();
|
||||
|
||||
// 获取年份、月份、日期、小时、分钟和秒
|
||||
var year = currentDate.getFullYear();
|
||||
var month = ('0' + (currentDate.getMonth() + 1)).slice(-2);
|
||||
var day = ('0' + currentDate.getDate()).slice(-2);
|
||||
var hours = ('0' + currentDate.getHours()).slice(-2);
|
||||
var minutes = ('0' + currentDate.getMinutes()).slice(-2);
|
||||
var seconds = ('0' + currentDate.getSeconds()).slice(-2);
|
||||
|
||||
// 格式化为 "YYYY-MM-DD HH:mm:ss" 结构
|
||||
var formattedDate = year + '-' + month + '-' + day + ' ' + hours + ':' + minutes + ':' + seconds;
|
||||
let params = {
|
||||
|
||||
reqTime: formattedDate,
|
||||
taskType:this.productCodelocList.value,
|
||||
location:this.productCodeList.value,
|
||||
reqCode:this.generateGUID(),
|
||||
factory: session.FactoryCode,
|
||||
};
|
||||
await this.model.transferWhiteBilletPlan(params);
|
||||
if (model.SubmitCode.code == 0) {
|
||||
this.uni.showToast({ title: '成功' }); //成功弹窗
|
||||
//this.Clear(); //清除数据
|
||||
} else {
|
||||
(this.$refs.uToast as any).show({
|
||||
title: model.SubmitCode.message, //错误信息展示
|
||||
type: 'default',
|
||||
});
|
||||
}
|
||||
}
|
||||
// Clear() {
|
||||
|
||||
// this.productCodeList = {};
|
||||
// this.productCodelocList = {};
|
||||
// }
|
||||
async selectProductCode(e: any) {
|
||||
this.productCodeList = e.pickerName;
|
||||
}
|
||||
async selectProductlocCode(e: any) {
|
||||
this.productCodelocList = e.pickerName;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.page-product-receipt {
|
||||
background: #f2f2f2 linear-gradient(0deg, #f2f2f2 0%, #f8262c 51%, #d9001b 100%) no-repeat;
|
||||
background-size: 100% 600rpx;
|
||||
padding: 118rpx 30rpx 162rpx;
|
||||
min-height: 100%;
|
||||
|
||||
.header {
|
||||
position: fixed;
|
||||
top: 0rpx;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 99;
|
||||
display: flex;
|
||||
height: 120rpx;
|
||||
line-height: 88rpx;
|
||||
color: #fff;
|
||||
font-size: 34rpx;
|
||||
font-weight: 500;
|
||||
text-align: center;
|
||||
padding: 45rpx 0rpx 0rpx;
|
||||
.title {
|
||||
flex: 3;
|
||||
}
|
||||
|
||||
.left,
|
||||
.right {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.icon {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 88rpx;
|
||||
height: 88rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.form {
|
||||
background-color: #fff;
|
||||
padding: 40rpx;
|
||||
border-radius: 10rpx;
|
||||
box-shadow: 0 0 20rpx 0 rgba(128, 128, 128, 0.2);
|
||||
|
||||
.u-form-item {
|
||||
padding: 30rpx 0;
|
||||
line-height: 35rpx;
|
||||
|
||||
.Transfer {
|
||||
width: 280rpx;
|
||||
height: 64rpx;
|
||||
background: rgb(242, 242, 242);
|
||||
border-radius: 110rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.single {
|
||||
width: 100%;
|
||||
height: 100rpx;
|
||||
display: flex;
|
||||
|
||||
.single-left {
|
||||
width: 80%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
|
||||
view {
|
||||
width: 142rpx;
|
||||
height: 100%;
|
||||
line-height: 100rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.single-right {
|
||||
button {
|
||||
margin-top: 15rpx;
|
||||
width: 140rpx;
|
||||
height: 70rpx;
|
||||
background-color: #fa3534;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.bottom-bar {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 99;
|
||||
background: #ffffff;
|
||||
box-shadow: 0 1rpx 20rpx 0 rgba(128, 128, 128, 0.2);
|
||||
padding: 20rpx;
|
||||
}
|
||||
.modal {
|
||||
.upload-name {
|
||||
padding: 10px 20px;
|
||||
.name {
|
||||
font-size: 17px;
|
||||
margin-bottom: 15px;
|
||||
// font-weight: 600;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
::v-deep .yjy-switch-container .yjy-switch-item {
|
||||
width: 100%;
|
||||
}
|
||||
::v-deep .uni-input-input {
|
||||
background: none;
|
||||
}
|
||||
::v-deep .yjy-switch-container {
|
||||
width: 50%;
|
||||
}
|
||||
}
|
||||
</style>
|
@ -0,0 +1,24 @@
|
||||
import { getModule, Module, MutationAction, VuexModule } from 'vuex-module-decorators';
|
||||
import store from '@/store';
|
||||
import http from '@/utils/request';
|
||||
import { url } from '@/utils/url';
|
||||
import { session } from '@/store/modules/session';
|
||||
@Module({
|
||||
namespaced: true,
|
||||
dynamic: true,
|
||||
store,
|
||||
name: 'page.mes.EmptyEflux',
|
||||
})
|
||||
export class EmptyEflux extends VuexModule {
|
||||
|
||||
SubmitCode: any = '';
|
||||
//空筛回流提交
|
||||
@MutationAction
|
||||
async transferWhiteBilletPlan(params: any) {
|
||||
const result: any = await http.post(url.lanjumes.product.transferWhiteBilletPlan, params);
|
||||
const SubmitCode = result;
|
||||
return { SubmitCode };
|
||||
}
|
||||
}
|
||||
|
||||
export default getModule(EmptyEflux);
|
Loading…
Reference in New Issue