123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- <template>
- <view class="bg-white">
- <view style="padding: 20rpx;height: 100%;background-color: white;">
- <view style="padding: 30rpx;background-color: white;border-radius:50rpx"
- class="padding-xl shadow-warp radius bg-blue">
- <u--form labelPosition="left" :model="planInfo" ref="uForm" style="background-color:white"
- labelWidth='120'>
- <u-form-item label="订单号:" prop="orderNo" borderBottom ref="uItem" :required="true"@click="showOrder = true">
- <u--input v-model="planInfo.orderNo" disabled disabledColor="#ffffff" border="none"></u--input>
- <u-icon slot="right" name="search" size="25px" ></u-icon>
- </u-form-item>
- <u-form-item label="车间:" borderBottom ref="uItem">
- <u--input v-model="planInfo.workshop" disabled disabledColor="#ffffff" border="none"></u--input>
- </u-form-item>
- <u-form-item label="班组:" borderBottom ref="uItem">
- <u--input v-model="planInfo.team" disabled disabledColor="#ffffff" border="none"></u--input>
- </u-form-item>
- <u-form-item label="数量:" prop="qty" borderBottom ref="uItem">
- <u--input v-model="planInfo.qty" border="none"></u--input>
- </u-form-item>
- <u-form-item label="班制:" prop="workShift" borderBottom ref="uItem"
- @click="showWorkShift = true" :required="true">
- <u--input v-model="planInfo.workShift" disabled disabledColor="#ffffff" border="none"></u--input>
- <u-icon slot="right" name="arrow-right" size="25px"></u-icon>
- </u-form-item>
- <u-form-item label="排产总数:" prop="qty_sum" borderBottom ref="uItem">
- <u--input v-model="planInfo.qty_sum" disabled disabledColor="#ffffff" border="none"></u--input>
- </u-form-item>
- <u-button type="primary" text="提交" customStyle="margin-top: 50px" @click="submit"></u-button>
- <u-button type="error" text="重置" customStyle="margin-top: 10px" @click="reset"></u-button>
- </u--form>
- <u-action-sheet :show="showWorkShift" :actions="actions" title="请选择班制" @close="showWorkShift = false"
- @select="workShiftSelect" />
- </view>
- <u-popup :show="showOrder" mode="bottom" :overlay="true" :safeAreaInsetBottom="true"
- :safeAreaInsetTop="true" @close="showOrder = false">
- <u-toolbar @cancel="cancel" @confirm="confirm"></u-toolbar>
- <u-line></u-line>
- <scroll-view :scroll-y="true" class="u-popup-slot" style="height:750rpx">
- <radio-group @change="radioChange" style="width: 100%;">
- <view class="cu-list menu">
- <view class="cu-item" v-for="(item,index) in orderList" @click="itemClick(item)">
- <view class="content">
- <view class="cu-form-group">
- <view style="min-width: 10%">
- <radio :value="index" :checked="index == current" />
- </view>
- <view class="title" style="min-width: 80%;text-align: center;">{{item.orderNo}}({{item.workshop.zyProductWorkshop}}-{{item.team.zyTeam}})
- </view>
- <view class="text-grey" style="flex: 1;">{{item.stockQty}}</view>
- </view>
- </view>
- </view>
- </view>
- </radio-group>
- </scroll-view>
- </u-picker>
- </u-popup>
- <u-toast ref="uToast"></u-toast>
- </view>
- </view>
- </template>
- <script>
- import {
- list
- // getPlanOrderData
-
-
- } from '@/api/biz/filing.js'
- import {
- add,
- edit,
- planCount
- } from '@/api/biz/plan.js'
- export default {
- data() {
- return {
- orderList: [],
- planInfo: {
- orderNo: '',
- qty: '',
- workShift: '',
- orderId:'',
- qty_sum:0
- },
- current: -1,
- showOrder: false,
- showWorkShift: false,
- actions: [{
- name: '早',
- },
- {
- name: '中',
- },
- {
- name: '晚',
- },{
- name: '管理线',
- },
- ],
- rules: {
- 'orderNo': {
- type: 'string',
- required: true,
- message: '请填写订单号',
- trigger: ['blur', 'change']
- },
- 'workShift':{
- type: 'string',
- required: true,
- message: '请填写班制',
- trigger: ['blur', 'change']
- }
- },
- }
- },
- methods: {
- workShiftSelect(e) {
- this.planInfo.workShift = e.name
- //传递参数:订单号,班制
- let params = {
- orderId: this.planInfo.orderId,
- workShift: this.planInfo.workShift
- };
- this.planInfo.qty_sum = 0;
- this.getPlanCount(params);
- },
- getPlanCount(params) {
- planCount(params).then(res => {
- if (res.success) {
- // console.log(res.data)
- // console.log(res.data!=false)
- if(res.data!=false){
- if(this.planInfo.qty == undefined){
- this.planInfo.qty_sum = Number(res.data[0].qtySum)
- }else{
- this.planInfo.qty_sum = Number(res.data[0].qtySum) + Number(this.planInfo.qty)
- }
- }else{
- if(this.planInfo.qty == undefined || this.planInfo.qty == ''){
- this.planInfo.qty_sum = 0}else{
- this.planInfo.qty_sum = this.planInfo.qty
- }
- }
- } else {
- }
- });
- },
- itemClick(item) {
- },
- cancel() {
- this.showOrder = false
- },
- confirm() {
- console.log(this.current)
- const focusObj = this.orderList[this.current]
- console.log(focusObj)
- this.planInfo.orderNo = focusObj.orderNo
- this.planInfo.qty = focusObj.qty
- this.planInfo.orderId = focusObj.id
- this.planInfo.workshop = focusObj.workshop.zyProductWorkshop
- this.planInfo.team = focusObj.team.zyTeam
- this.showOrder = false
- },
- radioChange(evt) {
- console.log(evt);
- // for (let i = 0; i < this.orderList.length; i++) {
- // if (this.orderList[i].orderNo === evt.detail.value) {
- // this.current = i;
- this.current = evt.detail.value;
- // break;
- // }
- // }
- },
- loadOrderInfo() {
- list(0).then(res => {
- if (res.success) {
- console.log(res.data)
- this.orderList = res.data
- }
- })
- },
- submit() {
- this.$refs.uForm.validate().then(val => {
- console.log(this.planInfo.orderId);
- add(this.planInfo).then(res => {
- if (res.success) {
- this.$refs.uToast.show({
- type: 'success',
- message: "新增成功",
- iconUrl: 'https://cdn.uviewui.com/uview/demo/toast/success.png'
- })
- this.reset()
- } else {
- this.$refs.uToast.show({
- type: 'error',
- message: res.message,
- iconUrl: 'https://cdn.uviewui.com/uview/demo/toast/success.png'
- })
- }
- })
- })
- },
- reset() {
- this.planInfo = {
- orderNo: '',
- qty: '',
- workShift: '',
- orderId:'',
- qty_sum:0
- }
- this.$refs.uForm.clearValidate()
- }
- },
- onReady() {
- this.loadOrderInfo()
- this.$refs.uForm.setRules(this.rules)
- },
- onUnload() {
- uni.$emit('loadData');
- }
- }
- </script>
- <style>
- </style>
|