index.vue 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912
  1. <template>
  2. <view v-if="isMaskShow" class="mask">
  3. </view>
  4. <view class="uni-column" style="height: 100%; background-color: #f5f5f5;">
  5. <view class="box-bg uni-row">
  6. <view class="input-view uni-row">
  7. <uni-icons class="input-uni-icon" type="search" size="18" color="#999" />
  8. <input class="nav-bar-input" type="text" v-model="keywords" placeholder="请输入批次号/箱号" />
  9. </view>
  10. <view class="search" @click="handleSearch">
  11. 搜索
  12. </view>
  13. </view>
  14. <view class="list-title uni-row">
  15. <!-- <div class="list-title uni-row"> -->
  16. <text class="label">是否正常批次</text>
  17. <text>{{ normalStatus ? '是' : '否' }}</text>
  18. <switch class="switch" :checked="normalStatus" @change="switchChange" color="rgba(103, 195, 55, 1.0)" />
  19. <!-- <text>{{ }}</text> -->
  20. <!-- </div> -->
  21. <!-- <text class="label">是否正常批次</text><text>是</text>
  22. <switch class="switch" @change="switchChange" color="rgba(255,85,85,1)" />
  23. <text>否</text> -->
  24. </view>
  25. <view class="scroll-container" style="padding-bottom: 150rpx">
  26. <view v-if="listData.length == 0" style="color: #999;margin: 50% auto;">
  27. <text>暂无批次</text>
  28. </view>
  29. <!-- 批次列表 -->
  30. <view v-else v-for="(item, index) in listData" :key="index" class="list-item"
  31. @click="handleToreportingForWork(item)">
  32. <view class="title-container uni-row" style="justify-content: flex-start;">
  33. <view class="title uni-row">
  34. <text class="label">批次号:</text>
  35. <text class="label code">{{ item['lotCode'] }}</text>
  36. </view>
  37. <view class=" uni-row" style="margin-left: 16rpx;">
  38. <view v-if="item['status'] == 1" class="tag"><text class="label">进行中</text></view>
  39. <view v-else-if="item['status'] == 3" class="tag turnover "><text class="label">待领取</text>
  40. </view>
  41. <view v-else-if="item['status'] == 2" class="tag turnover "><text class="label">待周转</text>
  42. </view>
  43. <view v-else-if="item['status'] == 0" class="tag finished "><text class="label">未开始</text>
  44. </view>
  45. <view v-else-if="item['status'] == 4" type="default finished" class="tag finished"><text
  46. class="label">已完成</text></view>
  47. </view>
  48. </view>
  49. <view class="item-info uni-row">
  50. <text class="label">产品描述</text>
  51. <text class="label right">{{ curPlan['productDescription'] }}</text>
  52. </view>
  53. <view class="item-info uni-row">
  54. <text class="label">材质</text>
  55. <text
  56. class="label right">{{ item['furnaceNoInfo'] && item['furnaceNoInfo'].firstTechnicalRequirement != '' ? item['furnaceNoInfo'].firstTechnicalRequirement + ";" + item['furnaceNoInfo'].secondTechnicalRequirement : '-' }}</text>
  57. </view>
  58. <view class="item-info uni-row">
  59. <text class="label">箱号</text>
  60. <text class="label right">{{ item['carrierName'] ? item['carrierName'] : '-' }}</text>
  61. </view>
  62. <!-- <view class="item-info uni-row">
  63. <text class="label">总工时</text>
  64. <text class="label right">{{ item['totalWorkingHours']}}</text>
  65. </view> -->
  66. <view class="item-info uni-row">
  67. <text class="label">投入数</text>
  68. <text
  69. class="label right">{{ item.prevProcess == null ? item['productionQuantity'] : item['processQualifiedNum']}}</text>
  70. </view>
  71. <view class="item-info uni-row">
  72. <text class="label">已完成工序</text>
  73. <text class="label right">{{ item.prevProcess ? item['prevProcess'].processAlias : '-'}}</text>
  74. </view>
  75. <view class="item-info uni-row">
  76. <text class="label">待加工工序</text>
  77. <!-- <text
  78. class="label right">{{ item.currentProcess ? item.prevProcess && item['currentProcess'].processAlias == item['prevProcess'].processAlias ? '-' : item['currentProcess'].processAlias : '-'}}</text> -->
  79. <text
  80. class="label right">{{ item.currentProcess ? item['currentProcess'].processAlias : '-'}}</text>
  81. </view>
  82. <view class="item-info uni-row">
  83. <text class="label">下道工序</text>
  84. <view class="label right uni-row">
  85. {{ item.nextProcess ? item['nextProcess'].processAlias : '-' }}
  86. (<view style="color: #1684fc;" @click.stop="handleClickProcessList(item)">&nbsp;工艺列表&nbsp;
  87. </view>)
  88. </view>
  89. </view>
  90. <!-- <view class="item-info uni-row">
  91. <text class="label">设备</text>
  92. <text class="label right">{{ curPlan['equipmentName'] }}</text>
  93. </view> -->
  94. <view v-if="notPreProcess" class="item-info uni-row">
  95. <text class="label">所在区域</text>
  96. <text class="label right">{{ getPlaceText(item) }}</text>
  97. </view>
  98. <view
  99. v-if="item['dayworkItemList'] && item['dayworkItemList'].length >0 && item['dayworkItemList'][0].status >3"
  100. class="item-info uni-row">
  101. <text class="label">目标工段</text>
  102. <text
  103. class="label right">{{ item['dayworkItemList'] && item['dayworkItemList'].length >0 && item['dayworkItemList'][0].status >3 ? item['dayworkItemList'][0].deptName : '-' }}</text>
  104. </view>
  105. <view
  106. v-if="item['dayworkItemList'] && item['dayworkItemList'].length >0 && item['dayworkItemList'][0].status >3"
  107. class="item-info uni-row">
  108. <text class="label">目标车间</text>
  109. <text class="label right">{{ item['workshopName']}}</text>
  110. </view>
  111. <view v-if="item.protemResourceGroupDetailList && item.protemResourceGroupDetailList.length>0"
  112. class="item-info uni-row">
  113. <text class="label">邀请者</text>
  114. <text
  115. class="label right">{{ item['protemResourceGroupDetailList'] && item['protemResourceGroupDetailList'].length>0 ? item['protemResourceGroupDetailList'][0].protemCreatorName : '-' }}</text>
  116. </view>
  117. <view v-if="item.protemResourceGroupDetailList&& item.protemResourceGroupDetailList.length>0"
  118. class="item-info uni-row">
  119. <text class="label">已完成数量</text>
  120. <text class="label right">{{ item['totalQuantity'] ? item['totalQuantity'] : 0 }}</text>
  121. </view>
  122. <view class="status-btn uni-row">
  123. <view v-if="item['status'] == 2" class=" uni-row">
  124. <button class="turnover-tag" size="mini"
  125. @click.stop="handleShowTurnoverApplication(item)">周转申请</button>
  126. <!-- <button class="reporting-tag" size="mini" @click="handleToreportingForWork">去报工</button> -->
  127. </view>
  128. <view v-else-if="item['status'] == 3" class=" uni-row">
  129. <button class="turnover-tag" size="mini" @click.stop="handleCancelTurnover(item)"
  130. style="background-color: rgba(255, 85, 85, 1);">取消周转</button>
  131. </view>
  132. </view>
  133. </view>
  134. </view>
  135. <!-- 抽屉 -->
  136. <uni-drawer ref="showRight" mode="right" :mask-click="true">
  137. <view style="text-align: center; font-size: 48rpx; padding: 48rpx 0 24rpx 0;">工艺列表</view>
  138. <view style="font-size: 24rpx;text-align: center;color: red; margin-bottom: 16rpx;">
  139. 仅显示当前工序后面工艺
  140. </view>
  141. <scroll-view scroll-y="true" style="height: 82%;" @touchmove.stop>
  142. <view v-for="(item,index) in curProcessAfte" :key="index"
  143. style="padding: 8rpx 5% 8rpx 14%; border-top: 1px solid #cccccc">
  144. <text>{{ index + 1 }}.{{item.processAlias}}</text>
  145. </view>
  146. </scroll-view>
  147. <view><button v-if="!editStatus" class="view-end-btn" type="primary"
  148. @click="handleOpenDrawing">查看本工序图纸</button></view>
  149. </uni-drawer>
  150. <!-- <view v-if="bottomStatus" class="bottom uni-row">
  151. <button class="start-batch-btn" type="primary" @click="handleStartNewBatch">开始新批次</button>
  152. </view>
  153. <view v-if="!bottomStatus" class="bottom uni-row">
  154. <button class="start-batch-btn" type="primary" @click="handleScanCode">扫一扫开始新批次</button>
  155. </view> -->
  156. <view class="bottom uni-row">
  157. <button v-if="bottomStatus" class="start-batch-btn" style="margin-right: 10rpx;" type="primary"
  158. @click="handleStartNewBatch">开始新批次</button>
  159. <button class="start-batch-btn" style="margin-right: 10rpx;" type="primary"
  160. @click="handleScanCode">扫码开始批次</button>
  161. <button class="start-batch-btn" type="primary" @click="handleSearchCode">查箱号</button>
  162. </view>
  163. <dialog-lot ref="lotDialog" @submit="handleDoIt" />
  164. <dialog-turnoverApplication ref="turnoverApplicationDialog" @reflushDaywork="handleDoTurnoverAfter" />
  165. <dialog-selectProduction ref="selectProduction"></dialog-selectProduction>
  166. </view>
  167. </template>
  168. <script setup>
  169. import {
  170. normalizeProps,
  171. reactive,
  172. onMounted,
  173. ref
  174. } from 'vue'
  175. import {
  176. onLoad,
  177. onReady,
  178. onUnload,
  179. onShow
  180. } from '@dcloudio/uni-app'
  181. import {
  182. getDayWorkList,
  183. showDaywork,
  184. showDayworkSave,
  185. turnoverDelete
  186. } from '@/api/business/dayWork.js'
  187. import {
  188. isTakeStock
  189. } from '@/api/business/taksStackLot.js'
  190. import {
  191. getAbnormalityLot
  192. } from '@/api/business/lot.js'
  193. import {
  194. carrierFinishedCheck
  195. } from '@/api/business/carrier.js'
  196. import {
  197. store
  198. } from '@/store/index.js'
  199. import {
  200. toHHmmss
  201. } from '@/utils/common.js'
  202. import {
  203. onPullDownRefresh
  204. } from "@dcloudio/uni-app"
  205. const turnoverApplicationDialog = ref(null)
  206. const selectProduction = ref(null)
  207. const lotDialog = ref(null)
  208. const listData = ref([])
  209. const curPlan = ref(null)
  210. const bizDayworkObj = ref({})
  211. const bottomStatus = ref(false) // 底部按钮显示
  212. const paging = ref();
  213. const reqParam = ref(null);
  214. const normalStatus = ref(true)
  215. const isLoding = ref(false);
  216. const curDayworkItem = ref({}) // 当前报工记录,回显是否显示取消周转的状态
  217. const keywords = ref(null)
  218. const tempList = ref([])
  219. const wasteRecyclingList = ref([]) //废品回用批次
  220. // 在数据中定义一个变量来控制遮罩层的显示
  221. const isMaskShow = ref(false);
  222. //打开图纸
  223. //选中的daywork
  224. const currentDaywork = ref({})
  225. const editStatus = ref(false)
  226. const notPreProcess = ref(true)
  227. const curProcessAfte = ref([])
  228. const showRight = ref(null) // 抽屉
  229. onLoad((options) => {
  230. curPlan.value = store.planDetails;
  231. normalStatus.value = true;
  232. console.log(curPlan.value)
  233. if (options != null) {
  234. console.log(options)
  235. console.log("999")
  236. keywords.value = options.param1
  237. if (store.planDetails.isAmend == 1 || store.planDetails.isWasteRecycling == 1) {
  238. normalStatus.value = false;
  239. }
  240. }
  241. //废品回用的领料部门如果是当前工段,也要可以开始新批次
  242. //查找当前计划单下的批次废品回用是当前工段
  243. getAbnormalityLot({
  244. productionPlanDetailId: store.planDetails.id,
  245. requisitionDepartmentId: store.curDeptDetails.deptId
  246. }).then(res => {
  247. wasteRecyclingList.value = res.rows
  248. if (store.planDetails.requisitionDepartmentId == store.curDeptDetails.deptId) {
  249. bottomStatus.value = true;
  250. store.isPreProcess = true;
  251. } else {
  252. bottomStatus.value = false;
  253. store.isPreProcess = false;
  254. }
  255. })
  256. console.log(wasteRecyclingList.value.length)
  257. })
  258. // 页面下拉刷新操作
  259. onPullDownRefresh(() => {
  260. uni.stopPullDownRefresh();
  261. reflush();
  262. })
  263. function getPlaceText(item) {
  264. let place = item.dayworkItemList[0].place == "" ? item.dayworkItemList[0].turnoverArea == "" ?
  265. '-' : '默认周转区' : item.dayworkItemList[0].place
  266. let deptName = item.dayworkItemList[0].deptName
  267. return place == "-" ? deptName == "" ? "-" : deptName : deptName + "-" + place
  268. }
  269. onShow(() => {
  270. reflush();
  271. })
  272. ;
  273. function reflush() {
  274. init(store.planDetails.id);
  275. }
  276. function handleShowTurnoverApplication(data) {
  277. console.log(data)
  278. //如果这批废了,则不能周转申请
  279. if (data.isWaste == 1) {
  280. uni.showToast({
  281. icon: 'none',
  282. title: '此批已废,不能申请周转',
  283. duration: 2000
  284. })
  285. } else {
  286. isTakeStock().then(response => {
  287. if (response.data) {
  288. uni.showToast({
  289. icon: 'none',
  290. title: '正在盘点,不能申请周转',
  291. duration: 2000
  292. })
  293. } else {
  294. let _data = data ?? {}
  295. carrierFinishedCheck(data).then(res => {
  296. if (res.code === 200) {
  297. // 调用子组件中的方法
  298. turnoverApplicationDialog.value.open(_data)
  299. } else {
  300. uni.showToast({
  301. icon: 'none',
  302. title: res.msg
  303. })
  304. }
  305. })
  306. }
  307. })
  308. }
  309. }
  310. function handleStartNewBatch() {
  311. store.normalStatus = normalStatus.value;
  312. // console.log(normalStatus.value)
  313. uni.navigateTo({
  314. url: "/pages/addNewBatch/index"
  315. })
  316. }
  317. function init(id) {
  318. uni.showLoading({
  319. title: '加载中'
  320. });
  321. let reqData = {
  322. productionPlanDetailId: id,
  323. deptId: store.curDeptDetails.deptId,
  324. keywords: keywords.value
  325. };
  326. // console.log(normalStatus.value)
  327. getDayWorkList(reqData).then(res => {
  328. console.log(res.data)
  329. if (res.code == 200) {
  330. res.data.forEach(item => {
  331. let quantitySum = 0;
  332. item.dayworkItemList.forEach(info => {
  333. if (info.status < 4 && item.currentProcess.processStepNumber == info
  334. .processStepNumber) {
  335. quantitySum += info.qualifiedNum;
  336. }
  337. });
  338. item.totalQuantity = quantitySum;
  339. });
  340. tempList.value = res.data
  341. // console.log(res)
  342. if (normalStatus.value) {
  343. listData.value = res.data.filter(item => {
  344. return item.isWasteRecycling == 0 && item.isAmend == 0;
  345. });
  346. } else {
  347. listData.value = res.data.filter(item => {
  348. return item.isWasteRecycling == 1 || item.isAmend == 1;
  349. })
  350. }
  351. // 20240614 分批投产数量不按照上到序的完成数量来。
  352. // for (let i = 0; i < listData.value.length; i++) {
  353. // if (listData.value[i].prevProcess) {
  354. // let sum = 0;
  355. // for (let j = 0; j < listData.value[i].dayworkItemList.length; j++) {
  356. // if (listData.value[i].dayworkItemList[j].processId == listData.value[i]
  357. // .prevProcess
  358. // .id && (listData.value[i].dayworkItemList[j].status == 2 || listData
  359. // .value[i]
  360. // .dayworkItemList[j].status == 3)) {
  361. // sum += listData.value[i].dayworkItemList[j].qualifiedNum;
  362. // }
  363. // }
  364. // listData.value[i].processQualifiedNum = sum;
  365. // }
  366. // }
  367. }
  368. uni.hideLoading();
  369. })
  370. }
  371. function handleSearch() {
  372. init(store.planDetails.id);
  373. }
  374. function handleToreportingForWork(item) {
  375. store.dayworkInfo = item
  376. uni.navigateTo({
  377. url: "/pages/reportingForWork/index"
  378. })
  379. }
  380. function handleClickProcessList(item) {
  381. let curProcessAfterList = [];
  382. console.log("工序列表", item)
  383. currentDaywork.value = item
  384. editStatus.value = false
  385. // if (item.isWasteRecycling == 1 || item.isAmend == 1) {
  386. // editStatus.value = true
  387. // } else {
  388. // editStatus.value = false
  389. // }
  390. let nextIndex = 0;
  391. for (let i = 0; i < item.processSequence.length; i++) {
  392. if (item.nextProcess) {
  393. if (item.nextProcess.processStepNumber == item.processSequence[i].processStepNumber) {
  394. nextIndex = i;
  395. }
  396. } else {
  397. nextIndex = item.processSequence.length
  398. }
  399. }
  400. for (let i = 0; i < item.processSequence.length; i++) {
  401. if (i >= nextIndex) {
  402. curProcessAfterList.push(item.processSequence[i]);
  403. }
  404. }
  405. if (item.status == 3) {
  406. curProcessAfterList.splice(0, 1)
  407. }
  408. console.log(curProcessAfterList)
  409. curProcessAfte.value = curProcessAfterList;
  410. showRight.value.open();
  411. }
  412. function handleSearchCode() {
  413. // console.log(normalStatus.value)
  414. selectProduction.value.open(normalStatus.value);
  415. }
  416. function switchChange(event) {
  417. console.log(event)
  418. //异常批
  419. if (normalStatus.value) {
  420. listData.value = tempList.value.filter(item => {
  421. return item.isWasteRecycling == 1 || item.isAmend == 1;
  422. });
  423. normalStatus.value = false
  424. } else {
  425. listData.value = tempList.value.filter(item => {
  426. return item.isWasteRecycling == 0 && item.isAmend == 0;
  427. });
  428. normalStatus.value = true
  429. }
  430. }
  431. function handleScanCode() {
  432. // 引入原生插件
  433. const mpaasScanModule = uni.requireNativePlugin("Mpaas-Scan-Module");
  434. if (mpaasScanModule) {
  435. // 调用插件的 mpaasScan 方法
  436. mpaasScanModule.mpaasScan({
  437. // 扫码识别类型,参数可多选,qrCode、barCode,
  438. // 如不设置,默认识别所有扫码类型,可能有些许影响识别效率
  439. scanType: ["qrCode", "barCode"],
  440. // 是否隐藏相册,默认false不隐藏
  441. hideAlbum: false,
  442. },
  443. (ret) => {
  444. console.log(ret);
  445. /* 原有代码,之前二维码中存的信息比较多,用一个JSON格式存储。
  446. let vehicleObj = JSON.parse(ret.resp_result);
  447. if (!vehicleObj.carrierId || vehicleObj.carrierId == "") {
  448. uni.showToast({
  449. icon: "none",
  450. title: "请扫载具码",
  451. duration: 1000
  452. })
  453. return;
  454. }
  455. */
  456. let vehicleObj = {
  457. carrierCode: ret.resp_result
  458. };
  459. if (!vehicleObj.carrierCode || vehicleObj.carrierCode == "") {
  460. uni.showToast({
  461. icon: "none",
  462. title: "请扫载具码",
  463. duration: 1000
  464. })
  465. return;
  466. }
  467. showDaywork({
  468. carrierId: '0', // 不传递箱子id
  469. carrierCode: vehicleObj.carrierCode,
  470. status: 7
  471. }).then(response => {
  472. if (response.code == 200) {
  473. console.log(response)
  474. console.log(response.data[0].productionPlanDetailId)
  475. console.log(store.planDetails.id)
  476. console.log(response.data[0].deptId !== store.curDeptDetails.deptId)
  477. if (response.data[0].deptId !== store.curDeptDetails.deptId) {
  478. uni.showToast({
  479. icon: 'none',
  480. title: '该批次不在当前工段',
  481. duration: 2000
  482. })
  483. return
  484. }
  485. if (response.data[0].productionPlanDetailId == store.planDetails.id) {
  486. console.log(response.data)
  487. lotDialog.value.open(response.data);
  488. } else {
  489. uni.showToast({
  490. icon: 'none',
  491. title: '该批次不在此计划单内',
  492. duration: 2000
  493. })
  494. }
  495. } else {
  496. uni.showToast({
  497. icon: 'none',
  498. title: response.msg,
  499. duration: 2000
  500. })
  501. }
  502. })
  503. }
  504. );
  505. } else {
  506. // 测试时用
  507. showDaywork({
  508. carrierId: '0',
  509. carrierCode: '100164',
  510. status: 7
  511. }).then(response => {
  512. if (response.code == 200) {
  513. console.log(response)
  514. console.log(response.data[0].productionPlanDetailId)
  515. console.log(store.planDetails.id)
  516. console.log(response.data[0].deptId !== store.curDeptDetails.deptId)
  517. if (response.data[0].deptId !== store.curDeptDetails.deptId) {
  518. uni.showToast({
  519. icon: 'none',
  520. title: '该批次已转至其他工段',
  521. duration: 2000
  522. })
  523. return
  524. }
  525. if (response.data[0].productionPlanDetailId == store.planDetails.id) {
  526. console.log(response.data)
  527. lotDialog.value.open(response.data);
  528. } else {
  529. uni.showToast({
  530. icon: 'none',
  531. title: '该批次不在此计划单内',
  532. duration: 2000
  533. })
  534. }
  535. } else {
  536. uni.showToast({
  537. icon: 'none',
  538. title: response.msg,
  539. duration: 2000
  540. })
  541. }
  542. })
  543. }
  544. }
  545. function handleAddDaywork(data) {
  546. isMaskShow.value = true; // 显示遮罩层
  547. uni.showLoading({
  548. title: '加载中'
  549. });
  550. console.log(data)
  551. let reqParam = [];
  552. for (var i = 0; i < data.length; i++) {
  553. reqParam.push(data[i].daywork)
  554. }
  555. console.log(data)
  556. data.forEach(item => {
  557. item.isSort = 0,
  558. item.tenantId = !store.tenantId ? store.userInfo.tenantId : store.tenantId
  559. })
  560. showDayworkSave(data).then(res => {
  561. isMaskShow.value = false;
  562. uni.hideLoading();
  563. console.log(res)
  564. init(store.planDetails.id);
  565. })
  566. }
  567. function handleDoIt(data) {
  568. handleAddDaywork(data);
  569. }
  570. function handleOpenDrawing() {
  571. console.log(currentDaywork.value, "444")
  572. var filteredProcess = currentDaywork.value.processSequence.filter(item => item.processStepNumber == currentDaywork
  573. .value.currentProcess.processStepNumber);
  574. // 检查 filteredProcess 是否有元素,并选择第一个元素
  575. if (filteredProcess.length > 0) {
  576. var firstMatch = filteredProcess[0]; // 获取第一个匹配的对象
  577. console.log("currentDaywork", currentDaywork.value)
  578. // 对 technologicalProcessDetailId 进行URL编码
  579. var encodedId = encodeURIComponent(currentDaywork.value.productId);
  580. var enTechnologicalProcessId = encodeURIComponent(currentDaywork.value.technologicalProcessId);
  581. var enprocessCode = encodeURIComponent(firstMatch.processCode);
  582. var encodeCode = encodeURIComponent(currentDaywork.value.lotCode);
  583. var enProcessAlias = encodeURIComponent(firstMatch.processAlias);
  584. var enIsWasteRecycling = encodeURIComponent(currentDaywork.value.isWasteRecycling);
  585. var enIsAmend = encodeURIComponent(currentDaywork.value.isAmend);
  586. // 构建查询参数字符串
  587. var queryParam =
  588. `param1=${encodedId}&param2=${encodeCode}&param3=${enprocessCode}&param4=${enTechnologicalProcessId}&param5=${enProcessAlias}&param6=${enIsWasteRecycling}&param7=${enIsAmend}`;
  589. // 使用模板字符串构建完整的URL
  590. var navigateUrl = `/pages/drawingMenu/index?${queryParam}`;
  591. // 导航到指定页面
  592. uni.navigateTo({
  593. url: navigateUrl
  594. });
  595. } else {
  596. console.log('No process matched the current process step number.');
  597. }
  598. }
  599. function handleDoTurnoverAfter() {
  600. reflush();
  601. }
  602. function handleCancelTurnover(data) {
  603. isTakeStock().then(response => {
  604. if (response.data) {
  605. uni.showToast({
  606. icon: 'none',
  607. title: '正在盘点,不能取消周转',
  608. duration: 2000
  609. })
  610. } else {
  611. isMaskShow.value = true; // 显示遮罩层
  612. uni.showLoading({
  613. title: '加载中'
  614. });
  615. turnoverDelete(data).then(res => {
  616. isMaskShow.value = false
  617. if (res.code == 200) {
  618. uni.showToast({
  619. icon: "success",
  620. title: "取消成功",
  621. duration: 2000
  622. })
  623. isLoding.value = false;
  624. setTimeout(() => {
  625. init(store.planDetails.id);
  626. }, 1000);
  627. } else {
  628. uni.showToast({
  629. icon: "none",
  630. title: "取消失败",
  631. duration: 2000
  632. })
  633. isLoding.value = false;
  634. setTimeout(() => {
  635. init(store.planDetails.id);
  636. }, 1000);
  637. }
  638. })
  639. }
  640. })
  641. }
  642. </script>
  643. <style lang="scss">
  644. $nav-height: 60rpx;
  645. /* 遮罩层样式 */
  646. .mask {
  647. position: fixed;
  648. /* 固定定位,覆盖整个屏幕 */
  649. top: 0;
  650. left: 0;
  651. right: 0;
  652. bottom: 0;
  653. background-color: rgba(0, 0, 0, 0.3);
  654. /* 黑色背景,透明度30% */
  655. display: flex;
  656. justify-content: center;
  657. /* 水平居中 */
  658. align-items: center;
  659. /* 垂直居中 */
  660. z-index: 1000;
  661. /* 确保遮罩层在其他元素之上 */
  662. }
  663. .box-bg {
  664. width: 94%;
  665. background-color: #F5F5F5;
  666. padding: 5rpx 16rpx;
  667. justify-content: space-around;
  668. align-items: center;
  669. margin: 24rpx auto 0;
  670. .input-view {
  671. width: 100%;
  672. flex: 4;
  673. background-color: #f8f8f8;
  674. height: $nav-height;
  675. border: 1rpx solid #999;
  676. border-radius: 15rpx;
  677. padding: 0 15rpx;
  678. flex-wrap: nowrap;
  679. margin: 0 10rpx 0;
  680. line-height: $nav-height;
  681. .input-uni-icon {
  682. line-height: $nav-height;
  683. }
  684. .nav-bar-input {
  685. width: 80%;
  686. height: $nav-height;
  687. line-height: $nav-height;
  688. padding: 0 5rpx;
  689. background-color: #f8f8f8;
  690. }
  691. }
  692. .search {
  693. width: 20%;
  694. text-align: center;
  695. color: #808080;
  696. }
  697. }
  698. .list-title {
  699. width: 100%;
  700. margin-top: 16rpx;
  701. height: 64rpx;
  702. line-height: 64rpx;
  703. align-items: center;
  704. margin-left: 32rpx;
  705. .label {
  706. font-size: 32rpx;
  707. margin-right: 24rpx;
  708. }
  709. .icon-gear {
  710. font-size: 56rpx;
  711. }
  712. }
  713. .switch {
  714. margin-top: -8rpx;
  715. transform: scale(0.7);
  716. }
  717. .scroll-container {
  718. width: 92%;
  719. margin: 24rpx auto 0 auto;
  720. height: calc(90% - 100rpx);
  721. overflow: auto;
  722. }
  723. .list-item {
  724. background-color: #fff;
  725. position: relative;
  726. padding: 16rpx;
  727. padding-bottom: 24rpx;
  728. margin-bottom: 24rpx;
  729. border-radius: 24rpx;
  730. .title-container {
  731. margin-top: 8rpx;
  732. margin-bottom: 16rpx;
  733. .title {
  734. height: 48rpx;
  735. align-items: center;
  736. .label {
  737. font-size: 32rpx;
  738. font-weight: bold;
  739. &.code {
  740. margin-left: 8rpx;
  741. }
  742. }
  743. }
  744. .tag {
  745. border: 1px solid #1CE5B0;
  746. background-color: #F6FFFD;
  747. padding: 8rpx;
  748. border-radius: 8rpx;
  749. .label {
  750. color: #1CE5B0;
  751. font-size: 24rpx;
  752. }
  753. &.finished {
  754. border: 1px solid #BBBBBB;
  755. background-color: #F5F5F5;
  756. .label {
  757. color: #BBBBBB;
  758. }
  759. }
  760. &.turnover {
  761. border: 1px solid #FF7901;
  762. background-color: #F6FFFD;
  763. .label {
  764. color: #FF7901;
  765. }
  766. }
  767. }
  768. }
  769. .item-info {
  770. margin-bottom: 8rpx;
  771. .label {
  772. font-size: 28rpx;
  773. width: 220rpx;
  774. color: #808080;
  775. &.right {
  776. flex: 1;
  777. color: #000000;
  778. }
  779. }
  780. }
  781. .status-btn {
  782. justify-content: flex-end;
  783. align-items: center;
  784. .turnover-tag {
  785. padding-right: 12rpx;
  786. padding-left: 12rpx;
  787. border-radius: 8rpx;
  788. border: 1rpx solid #FF7901;
  789. background-color: #FF7901;
  790. font-size: 28rpx;
  791. color: #FFFFFF;
  792. }
  793. .reporting-tag {
  794. padding-right: 12rpx;
  795. padding-left: 12rpx;
  796. border-radius: 8rpx;
  797. margin-left: 16rpx;
  798. border: 1rpx solid #1684fc;
  799. background-color: #1684fc;
  800. font-size: 28rpx;
  801. color: #FFFFFF;
  802. }
  803. }
  804. }
  805. .bottom {
  806. height: 10%;
  807. position: fixed;
  808. right: 0;
  809. bottom: 0;
  810. left: 0;
  811. height: 100rpx;
  812. border-top: 1px solid #999999;
  813. padding: 16rpx 32rpx;
  814. align-items: center;
  815. background-color: #fff;
  816. justify-content: space-evenly;
  817. .start-batch-btn {
  818. flex: 1;
  819. height: 80rpx;
  820. line-height: 80rpx;
  821. border-radius: 8rpx;
  822. color: #FFFFFF;
  823. font-size: 28rpx;
  824. }
  825. .view-end-btn {
  826. flex: 1;
  827. height: 80rpx;
  828. line-height: 80rpx;
  829. border-radius: 8rpx;
  830. color: #FFFFFF;
  831. font-size: 28rpx;
  832. }
  833. }
  834. </style>