123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401 |
- <template>
- <dialog-base class="dialog-body" ref="baseDialog" title="添加批次报工">
- <view style="overflow: auto;">
- <!-- <view v-for="(item, index) in lotData" :key="index" class="list-item"> -->
- <view class="item-info uni-row">
- <text class="label">批次号</text>
- <text class="label right">{{ lotData.map(v => v.lotCode).join(",") }}</text>
- </view>
- <!-- <view class="item-info uni-row">
- <text class="label">生产计划单号</text>
- <text class="label right">{{ item['productionPlanNo'] }}</text>
- </view> -->
- <view class="item-info uni-row">
- <text class="label">产品描述</text>
- <text class="label right">{{ item['productDescription'] }}</text>
- </view>
- <view class="item-info uni-row">
- <text class="label">箱号</text>
- <text class="label right">{{ item['carrierName'] }}</text>
- </view>
- <view class="item-info uni-row">
- <text class="label">当前序</text>
- <view class="label right uni-row" style="display: flex; flex-direction: row; flex-wrap: wrap;">
- <view>{{ item['process'] ? item['process'].processAlias : '-' }}
- </view>
- <view style="color: #1684fc;" @click.stop="handleClickProcessList(item)">( 工艺列表 )
- </view>
- </view>
- </view>
- <view class="item-info uni-row">
- <text class="label">下序</text>
- <view class="label right uni-row">{{ item['nextProcess'] ? item['nextProcess'].processAlias : '-' }}
- </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> -->
- </view>
- <view class="list-item">
- <view class="item-info uni-row">
- <text class="label">下序车间</text>
- <uni-data-select v-model="curDaywork.workshopId" :localdata="workshopList"
- @change="handleChangeWorkshop" :clear="false"
- style="outline: 2rpx solid #999999;border-radius: 10rpx;"></uni-data-select>
- </view>
- <view class="item-info uni-row">
- <text class="label">下序工段</text>
- <uni-data-select v-model="curDaywork.deptId" :localdata="deptList" :clear="false"
- style="outline: 2rpx solid #999999;border-radius: 10rpx;" @change="handleDeptChange"></uni-data-select>
- </view>
- <view v-if="!isWx" class="item-info uni-row" style="margin-top: 12rpx;">
- <text class="label" style="width: 250rpx;" >下序是否包装</text><text style="margin-left: 24rpx;" class="label right">否</text>
- <switch class="switch" @change="switchChange" :checked="normalStatus" style="transform: scale(0.8);align-items: center;font-size:32rpx ;" color="rgba(103, 195, 55, 1.0)" />
- <text class=" label right">是</text>
- </view>
- </view>
- <!-- 抽屉 -->
- <view>
- </view>
- <view style="z-index: 99999;">
- <!-- <uni-drawer ref="showRight" mode="right" :mask-click="true">
- <view class="scroll-view">
- <scroll-view class="scroll-view-box" style="height:100%;">
- <view style="width: 100%;text-align: center;;font-size: 48rpx;margin: 48rpx 0 24rpx 0;">工艺列表
- </view>
- <view style="font-size: 24rpx;width: 100%;text-align: center;color: red;margin-bottom: 48rpx;">
- 仅显示当前工序后面工艺</view>
- <view class="info-content" v-for="(item,index) in curProcessAfte" :key="index"
- style="width: 100%;margin: 8rpx 0 8rpx 14%;">
- <text>{{ index + 1 }}.{{item.processAlias}}</text>
- </view>
- </scroll-view>
- </view>
- </uni-drawer> -->
- <uni-drawer ref="showRight" mode="right" :mask-click="true">
- <view style="text-align: center; font-size: 48rpx; padding: 48rpx 0 24rpx 0;">工艺列表</view>
- <view style="font-size: 24rpx;text-align: center;color: red; margin-bottom: 16rpx;">
- 仅显示当前工序后面工艺
- </view>
- <scroll-view scroll-y="true" style="height: 80%;" @touchmove.stop>
- <view v-for="(item,index) in curProcessAfte" :key="index"
- style="padding: 8rpx 5% 8rpx 14%; border-top: 1px solid #cccccc">
- <text>{{ index + 1 }}.{{item.processAlias}}</text>
- </view>
- </scroll-view>
- <view><button v-if="!editStatus" class="start-batch-btn" style="margin-bottom: 10rpx;" type="primary" @click="handleOpenDrawing">查看本工序图纸</button></view>
- </uni-drawer>
- </view>
- <view class="add-btn-container uni-row">
- <button type="default" class="leftBtn" @click="handleFinishScan">结束扫码</button>
- <button type="default" class="rightBtn" @click="handleContinueScan">继续扫码</button>
- </view>
- </dialog-base>
- </template>
- <script setup>
- import {
- ref,
- getCurrentInstance,
- toRef
- } from 'vue'
- import {
- getDictInfoByType
- } from '@/api/dict/dict.js'
- import {
- getQuickDayworkList,
- finishQuick,
- getDayworkByCarrierId,
- reportDaywork
- } from '@/api/business/quickDaywork'
- const props = defineProps({
- getList: {
- type: Function,
- default: () => {}
- }
- })
- const emit = defineEmits();
- const baseDialog = ref(null)
- const lotData = ref(null)
- const curDaywork = ref({})
- const productId = ref("")
- const isWx = ref(false)
- const normalStatus = ref(false)
- const processCode = ref("")
- const technologicalProcessId = ref("")
- const currentLotCode = ref("")
- const workshopList = ref([])
- const processAlias = ref("")
- const curProcessAfte = ref([])
- const deptList = ref([])
- const item = ref({})
- const lastRequestTimestamp = ref(0);
- const editStatus = ref(false)
- const showRight = ref(null) // 抽屉
- function open(data) {
- // if (data === 'test') {
- // baseDialog.value.open()
- // lotData.value = [{
- // lotCode: '测试',
- // process: { processAlias: '测试长数据结果' }
- // }, {
- // lotCode: '测试',
- // process: { processAlias: '测试长数据结果' }
- // }, {
- // lotCode: '测试',
- // process: { processAlias: '测试长数据结果' }
- // }]
- // item.value = {
- // lotCode: '测试',
- // process: { processAlias: '测试长数据结果' }
- // }
- // } else {
- lotData.value = data.items
- item.value = data.items[0]
- // lotData.value.map(v => v.lotCode).join(",")
- baseDialog.value.open()
- workshopList.value = data.workShops.map(v => ({
- value: v.id,
- text: v.name,
- deptList: v.depts
- }))
- console.log(workshopList.value)
- curDaywork.value = {}
- deptList.value = []
- init()
- // }
- }
- function init() {
- //查询车间
- }
- function handleClickProcessList(item) {
- console.log(item,7979)
- if(item.isWasteRecycling ==1 || item.isAmend ==1){
- editStatus.value = true
- }else{
- editStatus.value = false
- }
- var filteredProcess = item.processSequence.filter(i => i.processStepNumber == item.process.processStepNumber);
-
- processCode.value = filteredProcess[0].processCode
- processAlias.value = filteredProcess[0].processAlias
- productId.value = item.daywork.productId
- technologicalProcessId.value = item.technologicalProcessId
- currentLotCode.value = item.lotCode
- curProcessAfte.value = lotData.value[0].nextProcesses;
- showRight.value.open();
- }
- //切换车间
- function handleChangeWorkshop(arg) {
- // console.log(arg)
- deptList.value = workshopList.value.find(v => v.value === arg).deptList.map(v => ({
- value: v.deptId,
- text: v.deptName,
- isSortPackaging:v.isSortPackaging,
- code:v.deptCode
- }))
- normalStatus.value = false
- isWx.value = false
- }
- //结束扫码
- function handleFinishScan() {
- const currentTime = Date.now();
-
- // 检查是否已经过去了 2 秒
- if (currentTime - lastRequestTimestamp.value < 2000) {
- // 如果在 2 秒 内已经点击,那么不执行
- uni.showToast({
- icon: 'none',
- title: `请勿重复点击`,
- duration: 2000
- })
- return;
- }
- lastRequestTimestamp.value = currentTime;
- // 保存新报工信息
- // 然后关闭dialog
- // console.log(props)
- addDayworkItem(() => {
- baseDialog.value.close()
- props.getList()
- })
- }
- //打开电子图纸
- function handleOpenDrawing(){
-
- // 对 technologicalProcessDetailId 进行URL编码
- var encodedId = encodeURIComponent(productId.value);
- var enTechnologicalProcessId = encodeURIComponent(technologicalProcessId.value);
- var enprocessCode = encodeURIComponent(processCode.value);
-
- var encodeCode = encodeURIComponent(currentLotCode.value);
- var enProcessAlias = encodeURIComponent(processAlias.value);
- // 构建查询参数字符串
- var queryParam = `param1=${encodedId}¶m2=${encodeCode}¶m3=${enprocessCode}¶m4=${enTechnologicalProcessId}¶m5=${enProcessAlias}`;
-
- // 使用模板字符串构建完整的URL
- var navigateUrl = `/pages/drawingMenu/index?${queryParam}`;
-
- // 导航到指定页面
- uni.navigateTo({
- url: navigateUrl
- });
-
- }
- function handleDeptChange() {
- console.log(deptList.value)
- let deptInfo = deptList.value.find(item =>item.value == curDaywork.value.deptId)
- console.log(deptInfo)
- if(deptInfo.code =='170000') {
- isWx.value = true
- }else{
- isWx.value = false
- }
- if(deptInfo.isSortPackaging == 1){
- normalStatus.value = true
- }else{
- normalStatus.value = false
- }
- }
- function switchChange(event) {
- console.log(event.detail.value)
- //是
- if (event.detail.value) {
- normalStatus.value = true
- } else {
- //否
- normalStatus.value = false
- }
- }
- function addDayworkItem(callback) {
- // 判断选择下工段和下车间
- if (curDaywork.value.workshopId == null || curDaywork.value.deptId == null || deptList.value.find(v => v.value ===
- curDaywork.value.deptId) == null) {
- uni.showToast({
- icon: 'none',
- title: '请选择周转车间和下序工段'
- })
- return
- }
- const params = lotData.value.map(v => ({
- ...v,
- daywork: {
- ...v.daywork,
- processId: v.process.id,
- processStepNumber: v.process.processStepNumber,
- technologicalProcessDetailId: v.process.technologicalProcessDetailId
- },
- quickInfo: {
- deptId: curDaywork.value.deptId,
- workshopId: curDaywork.value.workshopId,
- deptName: deptList.value.find(v => v.value === curDaywork.value.deptId).text,
- isSortPackaging :normalStatus.value?"1":"0"
- }
- }))
- console.log(params)
- reportDaywork(params).then(res => {
- callback()
- })
- // callback()
- }
- //继续扫码
- function handleContinueScan() {
- // 保存报工信息
- // 调用前一个页面的扫码方法
- // 关闭dialog
- // console.log(props)
- addDayworkItem(() => {
- props.getList()
- baseDialog.value.close()
- emit("scan")
- })
- }
- function close() {
- baseDialog.value.close()
- }
- defineExpose({
- open
- })
- </script>
- <style lang="scss">
- .dialog-body {
- // height: 60%;
- // margin: auto auto;
- overflow: auto;
- }
- .item-info {
- margin: 8rpx;
- .label {
- font-size: 28rpx;
- width: 220rpx;
- color: #808080;
- &.right {
- flex: 1;
- color: #000000;
- }
- }
- }
- .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);
- }
- .middle {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center
- }
- .segment {
- width: 80rpx;
- background-color: rgba(213, 213, 213, 1);
- border: 1rpx solid rgba(213, 213, 213, 1);
- }
- .add-btn-container {
- margin-top: 32rpx;
- .leftBtn {
- flex: 1;
- background-color: rgb(164, 173, 179);
- color: #FFFFFF;
- }
- .rightBtn {
- flex: 1;
- margin-left: 24rpx;
- background-color: rgb(91, 214, 165);
- color: #FFFFFF;
- }
- }
- </style>
|