123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357 |
- <template>
- <view class='container'>
- <view class="content">
- <view>
- <text class='title'>选择批次号</text>
- <view class="batchNo uni-row">
- <view :class="{'batchNo-item':true, 'uni-row': true,'batchNoCheck':batchNoCheck === item}"
- v-for="(item,index) in batchNoList" :key='index' @click="handleCheckBatchNo(item)">
- {{item.lotCode}}
- </view>
- </view>
- </view>
- <view class='middle'>
- <view class='segment'></view>
- <uni-icons type="link" size="30" style="margin: 10rpx; transform: rotate(135deg);"></uni-icons>
- <view class='segment'></view>
- </view>
- <view>
- <text class='title'>扫码绑定载具</text>
- <view class="vehicleList uni-row">
- <view class="vehicleNo uni-row" v-for="(item,index) in vehicleList">
- <text>{{item.carrierCode}}</text>
- <text @click="handleDelVehicleNo(index)">×</text>
- </view>
- </view>
- <view>
- <button style='background-color: rgba(0, 226, 166,1);
- color: white;margin: 20rpx auto;
- width: 80%;' @click='handleScanCode'>扫码</button>
- </view>
- </view>
- <view class='middle'>
- <view class='segment'></view>
- <uni-icons type="paperclip" size="30" style="margin: 10rpx;"></uni-icons>
- <view class='segment'></view>
- </view>
- <view>
- <text class='title' style="margin-bottom: 50rpx;">基础信息</text>
- <view class="uni-row info">
- <label for="HeatNo">炉号:</label>
- <select id="incomingInfo" class="uni-input data-select" v-model="basicInfo.heatNo">
- <option class="data-select-options" v-for="(item,index) in range">{{item.text}}</option>
- </select>
- <!-- <input id="HeatNo" class="uni-input" v-model="basicInfo.heatNo" placeholder="请填写" /> -->
- <!-- <text id="HeatNo" class="uni-input">{{basicInfo.heatNo}}</text> -->
- </view>
- <view class='segment' style="width: 90%;margin: 20rpx auto;"></view>
- <view class="uni-row info">
- <label for="manufacturer">厂家:</label>
- <!-- <input id="manufacturer" class="uni-input" v-model="basicInfo.manufacturer" placeholder="请填写" /> -->
- <text id="manufacturer" class="uni-input">{{basicInfo.manufacturer}}</text>
- </view>
- <view class='segment' style="width: 90%;margin: 20rpx auto;"></view>
- <view class="uni-row info">
- <label for="incomingInfo">来料日期:</label>
- <!-- <input id="incomingInfo" class="uni-input" v-model="basicInfo.incomingInfo" placeholder="请填写" /> -->
- <text id="incomingInfo" class="uni-input">{{basicInfo.incomingInfo}}</text>
- </view>
- <view class='segment' style="width: 90%;margin: 20rpx auto;"></view>
- <view class="uni-row info">
- <label for="incomingInfo">材质:</label>
- <!-- <input id="incomingInfo" class="uni-input" v-model="basicInfo.incomingInfo" placeholder="请填写" /> -->
- <text id="incomingInfo" class="uni-input">{{basicInfo.materia}}</text>
- </view>
- <view class='segment' style="width: 90%;margin: 20rpx auto;"></view>
- </view>
- </view>
- <view class='bottom uni-row'>
- <button class='add' type=primary @click='handleAdd'>添加</button>
- </view>
- </view>
- </template>
- <script setup>
- import {
- ref
- } from 'vue'
- import {
- onLoad,
- onReady
- } from '@dcloudio/uni-app'
- import {
- getLotList
- } from "@/api/business/lot.js"
- import {
- saveDayWork
- } from '@/api/business/dayWork.js'
- import {
- store
- } from '@/store/index.js'
- import {
- getCarrierById
- } from '@/api/business/carrier.js'
- const batchNoCheck = ref(null) // 批次号是否选中
- const batchNoList = ref([]) // 批次号列表
- const vehicleList = ref([])
- const basicInfo = ref({ // 基础信息对象
- heatNo: 'cs222',
- manufacturer: 'DMS',
- incomingInfo: 'L123456',
- materia: 'dx1111'
- })
- const dayWork = ref({})
- const curSubPlan = ref({})
- const range = ref([{
- value: 0,
- text: "LNO001"
- },
- {
- value: 1,
- text: "LNO002"
- },
- {
- value: 2,
- text: "LNO003"
- },
- ])
- const emit = defineEmits(['batchReporting-addBatch']);
- onLoad(() => {
- // 处理特殊字符JSON解析失败报错
- curSubPlan.value = store.planSubDetails;
- console.log(curSubPlan.value)
- dayWork.value = {
- productionPlanDetailSubDetailId: curSubPlan.value.id,
- productionPlanDetailId: curSubPlan.value.productionPlanDetailId,
- productionPlanId: curSubPlan.value.productionDetailId,
- technologicalProcessId: curSubPlan.value.technologicalProcessId
- }
- init();
- })
- function init() {
- let obj = {}
- obj.productionPlanId = curSubPlan.value.productionPlanId;
- getLotList(obj).then(res => {
- batchNoList.value = res.rows;
- })
- }
- function handleCheckBatchNo(item) {
- batchNoCheck.value = item;
- dayWork.value.lotId = item.id;
- }
- function handleDelVehicleNo(index) {
- vehicleList.value.splice(index, 1);
- }
- function handleValidate() {
- if (batchNoCheck.value && vehicleList.value) {
- return true;
- } else {
- return false;
- }
- }
- function handleScanCode() {
- uni.scanCode({
- scanType: ['qrCode'],
- onlyFromCamera: true, // 只允许相机扫码
- success: function(res) {
- let vehicleObj = JSON.parse(res.result);
- if (!vehicleObj.carrierId || vehicleObj.carrierId == "") {
- uni.showToast({
- icon: "error",
- title: "请扫载具码",
- duration: 1000
- })
- return;
- }
- for (let i = 0; i < vehicleList.value.length; i++) {
- if (vehicleList.value[i].carrierId == vehicleObj.carrierId) {
- uni.showToast({
- icon: "error",
- title: "载具已存在",
- duration: 1000
- })
- return;
- }
- }
- // getCarrierById(vehicleObj.carrierId).then(response => {
-
- // })
- vehicleList.value.push(vehicleObj);
- }
- });
- }
- function handleAdd() {
- dayWork.value.dayworkCarriers = vehicleList.value;
- console.log(dayWork.value)
- console.log(batchNoCheck.value)
- console.log(vehicleList.value)
- if (handleValidate()) {
- saveDayWork(dayWork.value).then(res => {
- console.log(res)
- if (res.code === 200) {
- uni.showToast({
- icon: 'success',
- title: '添加成功',
- duration: 2000
- });
- uni.$emit('batchReporting-addBatch');
- uni.$emit('dayworkItemUpdate');
- uni.navigateBack({
- url: '/pages/batchReporting/index'
- })
- } else {
- uni.showToast({
- icon: 'error',
- title: res.msg,
- duration: 2000
- });
- }
- })
- } else {
- uni.showToast({
- icon: 'error',
- title: '未选择完整信息',
- duration: 2000
- });
- }
- }
- </script>
- <style lang="scss">
- .container {
- background-color: #f5f5f5;
- padding-bottom: 112rpx;
- }
- .bottom {
- background-color: white;
- width: 100%;
- position: fixed;
- bottom: 0;
- align-items: center;
- background-color: #ffffff;
- padding: 16rpx 0;
- .add {
- margin: 0 auto;
- width: 80%;
- height: 80rpx;
- }
- }
- .content {
- position: relative;
- width: auto;
- background-color: rgba(255, 255, 255, 1);
- margin: 32rpx;
- padding-bottom: 50rpx;
- padding-top: 20rpx;
- border-radius: 12rpx;
- .title {
- width: auto;
- font-size: 36rpx;
- font-weight: bold;
- text-align: center;
- }
- }
- .batchNo {
- justify-content: flex-start;
- flex-wrap: wrap;
- width: auto;
- height: 320rpx;
- overflow: auto;
- padding: 0 80rpx;
- margin-bottom: 40rpx;
- border-radius: 6rpx;
- .batchNo-item {
- justify-content: center;
- align-items: center;
- width: 240rpx;
- margin: 10rpx;
- height: 60rpx;
- border: 1px solid rgba(213, 213, 213, 1);
- border-radius: 6rpx;
- }
- .batchNoCheck {
- color: #FFF;
- border: 1 solid rgba(22, 132, 252, 1);
- background-color: rgba(22, 132, 252, 1);
- }
- }
- .vehicleList {
- justify-content: flex-start;
- flex-wrap: wrap;
- width: auto;
- height: 120rpx;
- overflow: auto;
- padding: 0 80rpx;
- .vehicleNo {
- padding: 0 10rpx;
- margin: 10rpx;
- justify-content: space-between;
- align-items: center;
- width: 230rpx;
- height: 60rpx;
- border: 1px solid rgba(213, 213, 213, 1);
- border-radius: 6rpx;
- }
- }
- .middle {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center
- }
- .segment {
- width: 280rpx;
- background-color: rgba(213, 213, 213, 1);
- border: 1rpx solid rgba(213, 213, 213, 1);
- }
- .info {
- width: 100%;
- justify-content: space-around;
- align-items: center;
- label {
- flex: 1;
- text-combine-upright: all;
- margin: 0 30rpx;
- }
- text {
- flex: 3;
- // width: 80%;
- }
- .data-select {
- flex: 3;
- width: 80%;
- height: 60rpx;
- margin-right: 40rpx;
- border-radius: 18rpx;
- background-color: #FFF;
- .data-select-options {
- width: 200rpx;
- }
- }
- }
- </style>
|