外包材

This commit is contained in:
2026-01-08 10:57:11 +08:00
parent afc569e771
commit e05a972dbd
17 changed files with 131 additions and 77 deletions

View File

@@ -141,7 +141,7 @@
try { try {
let res = await insideCodeInsert(e) let res = await insideCodeInsert(e)
if (res) { if (res) {
this.dataList.push(res.data) this.dataList = [...this.dataList, ...res.data]
} else { } else {
this.dataList = [] this.dataList = []
} }

View File

@@ -16,7 +16,7 @@
</view> </view>
<view class="zd-row border-bottom"> <view class="zd-row border-bottom">
<view class="zd-col-7"> <view class="zd-col-7">
<span class="filter_label">总数量</span> <span class="filter_label filter_input_disabled">总数量</span>
</view> </view>
<view class="zd-col-24"> <view class="zd-col-24">
<input type="number" v-model="num" class="filter_input filter_input_disabled" disabled> <input type="number" v-model="num" class="filter_input filter_input_disabled" disabled>
@@ -124,7 +124,7 @@
try { try {
let res = await getPalletAssembly(e) let res = await getPalletAssembly(e)
if (res) { if (res) {
this.dataList.push(res.data) this.dataList = [...this.dataList, ...res.data]
this.num = this.dataList.reduce((sum, item) => sum + Number(item.qty), 0) this.num = this.dataList.reduce((sum, item) => sum + Number(item.qty), 0)
} else { } else {
this.dataList = [] this.dataList = []

View File

@@ -152,7 +152,7 @@
try { try {
let res = await directlyOutCodeInsert(e) let res = await directlyOutCodeInsert(e)
if (res) { if (res) {
this.dataList.push(res.data) this.dataList = [...this.dataList, ...res.data]
this.dataList.forEach(e => { this.dataList.forEach(e => {
e.initialQty = e.qty e.initialQty = e.qty
}) })

View File

@@ -16,7 +16,7 @@
</view> </view>
<view class="zd-row border-bottom"> <view class="zd-row border-bottom">
<view class="zd-col-7"> <view class="zd-col-7">
<span class="filter_label">总数量</span> <span class="filter_label filter_input_disabled">总数量</span>
</view> </view>
<view class="zd-col-24"> <view class="zd-col-24">
<input type="number" v-model="num" class="filter_input filter_input_disabled" disabled> <input type="number" v-model="num" class="filter_input filter_input_disabled" disabled>

View File

@@ -26,7 +26,7 @@
</view> </view>
<view class="zd-row border-bottom"> <view class="zd-row border-bottom">
<view class="zd-col-7"> <view class="zd-col-7">
<span class="filter_label">总数量</span> <span class="filter_label filter_input_disabled">总数量</span>
</view> </view>
<view class="zd-col-24"> <view class="zd-col-24">
<input type="number" v-model="num" class="filter_input filter_input_disabled" disabled> <input type="number" v-model="num" class="filter_input filter_input_disabled" disabled>

View File

@@ -102,7 +102,18 @@
return { return {
title: '', title: '',
// options: [], // options: [],
options: [{text:'原粉区', value: '1'}, {text:'批料室', value: '1'}, {text:'粉碎室1', value: 'f1'}, {text:'粉碎室2', value: 'f2'}], // options: [{text:'原粉区', value: '1'}, {text:'批料室', value: '1'}, {text:'粉碎室1', value: 'f1'}, {text:'粉碎室2', value: 'f2'}],
// options: [{text:'原粉区', value: '1', aaa:'n1'}, {text:'批料室', value: '1', aaa:'n1'}],
options: [{
forder_seg: 4,
updateid: 1,
text:"AGy对接区",
updatename:"管理员",
update_time: "2026-01-07 10:28:48",
value:"AGVDTO1",
workshop_code:"1"
}
],
index: '', index: '',
val1: '', val1: '',
val2: '', val2: '',

View File

@@ -1,6 +1,6 @@
<template> <template>
<view class="zd_container"> <view class="zd_container">
<!-- 产线转运 --> <!-- 点对点转运 -->
<nav-bar :title="title"></nav-bar> <nav-bar :title="title"></nav-bar>
<view class="zd_content"> <view class="zd_content">
<view class="zd_wrapper"> <view class="zd_wrapper">
@@ -40,8 +40,7 @@
<script> <script>
import NavBar from '@/components/NavBar.vue' import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue' import SearchBox from '@/components/SearchBox.vue'
// import {queryVehicleType} from '@/utils/mork2.js' import {createTask} from '@/utils/getData3.js'
import {queryVehicleType, createTask} from '@/utils/getData2.js'
export default { export default {
components: { components: {
NavBar, NavBar,
@@ -50,34 +49,18 @@
data() { data() {
return { return {
title: '', title: '',
vehicleCode: null,
code1: '', code1: '',
code2: '', code2: '',
options: [], options: [{text:'普通任务', value: '1'}],
index: '', index: '',
disabled: false disabled: false
}; };
}, },
onLoad (options) { onLoad (options) {
this.title = options.title this.title = options.title
this._queryVehicleType()
}, },
methods: { methods: {
/** 下拉框*/
async _queryVehicleType () {
try {
let res = await queryVehicleType()
if (res && res.data.length > 0) {
this.options = [...res.data]
} else {
this.options = []
}
} catch (e) {
this.options = []
}
},
toEmpty () { toEmpty () {
this.vehicleCode = null
this.code1 = '' this.code1 = ''
this.code2 = '' this.code2 = ''
this.index = '' this.index = ''
@@ -90,7 +73,7 @@
return return
} }
try { try {
let res = await createTask(this.vehicleCode, this.code1, this.code2, this.index) let res = await createTask(this.code1, this.code2, this.index)
if (res) { if (res) {
uni.showToast({ uni.showToast({
title: res.message, title: res.message,

View File

@@ -47,12 +47,12 @@
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr v-for="(e, i) in dataList" :key="i" :class="{'checked': e.material_id === pkId}" @tap="toCheck(e)"> <tr v-for="(e, i) in dataList" :key="i">
<td>{{e.task_time}}</td> <td>{{e.task_time}}</td>
<td>{{e.vehicle_code}}</td> <td>{{e.vehicle_code}}</td>
<td>{{e.point_code1}}</td> <td>{{e.point_code1}}</td>
<td>{{e.point_code2}}</td> <td>{{e.point_code2}}</td>
<td>{{['生成', '', '', '下发', '执行中', '完成'][Number(e.task_status)]}}</td> <td>{{['', '', '', '', '', '完成', '取消'][Number(e.task_status)]}}</td>
<td>{{e.task_code}}</td> <td>{{e.task_code}}</td>
<td>{{e.config_name}}</td> <td>{{e.config_name}}</td>
<td>{{e.car_no}}</td> <td>{{e.car_no}}</td>
@@ -73,7 +73,7 @@
import NavBar from '@/components/NavBar.vue' import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue' import SearchBox from '@/components/SearchBox.vue'
import {getDate} from '@/utils/utils.js' import {getDate} from '@/utils/utils.js'
import {queryHistoryTask} from '@/utils/getData2.js' import {queryHistoryTask} from '@/utils/getData3.js'
export default { export default {
components: { components: {
NavBar, NavBar,

View File

@@ -19,7 +19,7 @@
<view class="zd-col-13"> <view class="zd-col-13">
<search-box v-model="vehicleCode"/> <search-box v-model="vehicleCode"/>
</view> </view>
<button class="mini-btn" type="primary" @tap="_updatePointqueryPointInfo">查询</button> <button class="mini-btn" type="primary" @tap="_pdaPointAndPointqueryPointDtl">查询</button>
</view> </view>
</view> </view>
<view class="zd_wrapper grid-wraper"> <view class="zd_wrapper grid-wraper">
@@ -28,6 +28,8 @@
<thead> <thead>
<tr> <tr>
<th>序号</th> <th>序号</th>
<th>点位编码</th>
<th>载具编码</th>
<th>物料编码</th> <th>物料编码</th>
<th>物料名称</th> <th>物料名称</th>
<th>批次</th> <th>批次</th>
@@ -38,6 +40,8 @@
<tbody> <tbody>
<tr v-for="(e, i) in dataList" :key="i" :class="{'checked': e.material_code === pkId}"> <tr v-for="(e, i) in dataList" :key="i" :class="{'checked': e.material_code === pkId}">
<td>{{i+1}}</td> <td>{{i+1}}</td>
<td>{{e.point_code}}</td>
<td>{{e.vehicle_code}}</td>
<td>{{e.material_code}}</td> <td>{{e.material_code}}</td>
<td>{{e.material_name}}</td> <td>{{e.material_name}}</td>
<td>{{e.pcsn}}</td> <td>{{e.pcsn}}</td>
@@ -51,7 +55,7 @@
</view> </view>
<view class="zd-row submit-bar"> <view class="zd-row submit-bar">
<button class="zd-col-5 button-default" @tap="toEmpty">清空</button> <button class="zd-col-5 button-default" @tap="toEmpty">清空</button>
<button class="zd-col-6 button-primary" :class="{'button-info': !pointCode || !vehicleCode}" :disabled="disabled" @tap="_bindVehicle">绑定</button> <button class="zd-col-6 button-primary" :class="{'button-info': !pointCode || !vehicleCode}" :disabled="disabled" @tap="_bind">绑定</button>
<button class="zd-col-6 button-primary" :class="{'button-info': !pointCode || !vehicleCode}" :disabled="disabled" @tap="_clearVehicle">清载具</button> <button class="zd-col-6 button-primary" :class="{'button-info': !pointCode || !vehicleCode}" :disabled="disabled" @tap="_clearVehicle">清载具</button>
<button class="zd-col-6 button-primary" :class="{'button-info': !pointCode || !vehicleCode}" :disabled="disabled" @tap="_clearMaterial">清物料</button> <button class="zd-col-6 button-primary" :class="{'button-info': !pointCode || !vehicleCode}" :disabled="disabled" @tap="_clearMaterial">清物料</button>
</view> </view>
@@ -61,8 +65,7 @@
<script> <script>
import NavBar from '@/components/NavBar.vue' import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue' import SearchBox from '@/components/SearchBox.vue'
// import {updatePointqueryPointInfo} from '@/utils/mork2.js' import {pdaPointAndPointqueryPointDtl, bind, clearVehicle, clearMaterial} from '@/utils/getData3.js'
import {updatePointqueryPointInfo, bindVehicle, clearVehicle, clearMaterial} from '@/utils/getData2.js'
export default { export default {
components: { components: {
NavBar, NavBar,
@@ -81,9 +84,12 @@
this.title = options.title this.title = options.title
}, },
methods: { methods: {
async _updatePointqueryPointInfo () { async _pdaPointAndPointqueryPointDtl () {
if (!this.pointCode && !this.vehicleCode) {
return
}
try { try {
let res = await updatePointqueryPointInfo(this.pointCode, this.vehicleCode) let res = await pdaPointAndPointqueryPointDtl(this.pointCode, this.vehicleCode)
if (res && res.data.length > 0) { if (res && res.data.length > 0) {
this.dataList = [...res.data] this.dataList = [...res.data]
} else { } else {
@@ -99,9 +105,9 @@
this.dataList = [] this.dataList = []
this.disabled = false this.disabled = false
}, },
async _bindVehicle () { async _bind () {
try { try {
let res = await bindVehicle(this.pointCode, this.vehicleCode) let res = await bind(this.pointCode, this.vehicleCode, this.dataList)
if (res) { if (res) {
uni.showToast({ uni.showToast({
title: res.message, title: res.message,
@@ -115,7 +121,7 @@
}, },
async _clearVehicle () { async _clearVehicle () {
try { try {
let res = await clearVehicle(this.pointCode, this.vehicleCode) let res = await clearVehicle(this.pointCode, this.vehicleCode, this.dataList)
if (res) { if (res) {
uni.showToast({ uni.showToast({
title: res.message, title: res.message,
@@ -129,7 +135,7 @@
}, },
async _clearMaterial () { async _clearMaterial () {
try { try {
let res = await clearMaterial(this.pointCode, this.vehicleCode) let res = await clearMaterial(this.pointCode, this.vehicleCode, this.dataList)
if (res) { if (res) {
uni.showToast({ uni.showToast({
title: res.message, title: res.message,

View File

@@ -34,7 +34,7 @@
<td>{{e.vehicle_code}}</td> <td>{{e.vehicle_code}}</td>
<td>{{e.point_code1}}</td> <td>{{e.point_code1}}</td>
<td>{{e.point_code2}}</td> <td>{{e.point_code2}}</td>
<td>{{['生成', '', '', '下发', '执行中', '完成'][Number(e.task_status)]}}</td> <td>{{['生成', '申请', '创建完成', '下发', '执行中'][Number(e.task_status)]}}</td>
<td>{{e.task_code}}</td> <td>{{e.task_code}}</td>
<td>{{e.config_name}}</td> <td>{{e.config_name}}</td>
<td>{{e.car_no}}</td> <td>{{e.car_no}}</td>
@@ -46,7 +46,7 @@
</view> </view>
</view> </view>
<view class="zd-row submit-bar"> <view class="zd-row submit-bar">
<button class="zd-col-8 button-primary" :class="{'button-info': !pkId}" :disabled="disabled1" @tap="_taskOperation">重新生成</button> <button class="zd-col-8 button-primary" :class="{'button-info': !pkId}" :disabled="disabled1" @tap="_taskOperation">重新下发</button>
<button class="zd-col-8 button-primary" :class="{'button-info': !pkId}" :disabled="disabled2" @tap="_forceConfirmTask">强制完成</button> <button class="zd-col-8 button-primary" :class="{'button-info': !pkId}" :disabled="disabled2" @tap="_forceConfirmTask">强制完成</button>
<button class="zd-col-6 button-primary" @tap="toJump('ls-search?title=历史查询')">历史查询</button> <button class="zd-col-6 button-primary" @tap="toJump('ls-search?title=历史查询')">历史查询</button>
</view> </view>
@@ -56,7 +56,7 @@
<script> <script>
import NavBar from '@/components/NavBar.vue' import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue' import SearchBox from '@/components/SearchBox.vue'
import {queryTask, taskOperation, forceConfirmTask} from '@/utils/getData2.js' import {queryTask, taskOperation, forceConfirmTask} from '@/utils/getData3.js'
export default { export default {
components: { components: {
NavBar, NavBar,

View File

@@ -16,7 +16,7 @@
</view> </view>
<view class="zd-row border-bottom"> <view class="zd-row border-bottom">
<view class="zd-col-7"> <view class="zd-col-7">
<span class="filter_label">总数量</span> <span class="filter_label filter_input_disabled">总数量</span>
</view> </view>
<view class="zd-col-24"> <view class="zd-col-24">
<input type="number" v-model="num" class="filter_input filter_input_disabled" disabled> <input type="number" v-model="num" class="filter_input filter_input_disabled" disabled>
@@ -82,7 +82,7 @@
index: '', index: '',
val1: '', val1: '',
dataList: [], dataList: [],
dataList: [{material_code: 'm001', qty: 100, checked: false, initialQty: 100}, {material_code: 'm002', qty: 200, checked: false, initialQty: 200}], // dataList: [{material_code: 'm001', qty: 100, checked: false, initialQty: 100}, {material_code: 'm002', qty: 200, checked: false, initialQty: 200}],
disabled: false disabled: false
}; };
}, },

View File

@@ -14,7 +14,7 @@
</view> </view>
<view class="zd-row border-bottom"> <view class="zd-row border-bottom">
<view class="zd-col-7"> <view class="zd-col-7">
<span class="filter_label">总数量</span> <span class="filter_label filter_input_disabled">总数量</span>
</view> </view>
<view class="zd-col-24"> <view class="zd-col-24">
<input type="number" v-model="num" class="filter_input filter_input_disabled" disabled> <input type="number" v-model="num" class="filter_input filter_input_disabled" disabled>
@@ -74,7 +74,7 @@
allCheck: false, allCheck: false,
checkedArr: [], checkedArr: [],
dataList: [], dataList: [],
dataList: [{material_code: 'm001', qty: 100, checked: false, initialQty: 100}, {material_code: 'm002', qty: 200, checked: false, initialQty: 200}], // dataList: [{material_code: 'm001', qty: 100, checked: false, initialQty: 100}, {material_code: 'm002', qty: 200, checked: false, initialQty: 200}],
disabled: false disabled: false
}; };
}, },

View File

@@ -14,10 +14,10 @@
</view> </view>
<view class="zd-row border-bottom"> <view class="zd-row border-bottom">
<view class="zd-col-6"> <view class="zd-col-6">
<span class="filter_label">区域</span> <span class="filter_label filter_input_disabled">区域</span>
</view> </view>
<view class="zd-col-18 filter_select"> <view class="zd-col-18 filter_select">
<uni-data-select v-model="index1" :localdata="options1"></uni-data-select> <uni-data-select v-model="index1" :localdata="options1" disabled></uni-data-select>
</view> </view>
</view> </view>
<view class="zd-row border-bottom"> <view class="zd-row border-bottom">
@@ -140,6 +140,7 @@
let res = await queryPointRegion(this.val1) let res = await queryPointRegion(this.val1)
if (res && res.data) { if (res && res.data) {
this.options1 = [...res.data] this.options1 = [...res.data]
this.index1 = this.options1[0].value
} else { } else {
this.options1 = [] this.options1 = []
} }

View File

@@ -14,7 +14,7 @@
</view> </view>
<view class="zd-row border-bottom"> <view class="zd-row border-bottom">
<view class="zd-col-7"> <view class="zd-col-7">
<span class="filter_label">总数量</span> <span class="filter_label filter_input_disabled">总数量</span>
</view> </view>
<view class="zd-col-24"> <view class="zd-col-24">
<input type="number" v-model="num" class="filter_input filter_input_disabled" disabled> <input type="number" v-model="num" class="filter_input filter_input_disabled" disabled>
@@ -85,7 +85,7 @@
allCheck: false, allCheck: false,
checkedArr: [], checkedArr: [],
dataList: [], dataList: [],
dataList: [{material_code: 'm001', qty: 100, checked: false, initialQty: 100}, {material_code: 'm002', qty: 200, checked: false, initialQty: 200}], // dataList: [{material_code: 'm001', qty: 100, checked: false, initialQty: 100}, {material_code: 'm002', qty: 200, checked: false, initialQty: 200}],
disabled: false disabled: false
}; };
}, },

View File

@@ -42,28 +42,28 @@
return { return {
userName: '', userName: '',
menuList: [ menuList: [
{title: '通用功能0', path: 'RF07', sonTree: [ // {title: '通用功能0', path: 'RF07', sonTree: [
{title: '入库组箱', path: '/pages/General/warehouse-box'}, // {title: '入库组箱', path: '/pages/General/warehouse-box'},
{title: '配送组箱', path: '/pages/General/distribution-box'}, // {title: '配送组箱', path: '/pages/General/distribution-box'},
{title: '点对点转运', path: '/pages/General/line-transfer'}, // {title: '点对点转运', path: '/pages/General/line-transfer'},
{title: '确认取放货', path: '/pages/General/pick-place-goods'}, // {title: '确认取放货', path: '/pages/General/pick-place-goods'},
{title: '作业管理', path: '/pages/General/ops-mgmt'}, // {title: '作业管理', path: '/pages/General/ops-mgmt'},
{title: '点位更新', path: '/pages/General/pt-update'} // {title: '点位更新', path: '/pages/General/pt-update'}
]}, // ]},
{title: '小料箱功能0', path: 'RF08', sonTree: [ // {title: '小料箱功能0', path: 'RF08', sonTree: [
{title: '空载具出库', path: '/pages/Material/kzj-out-store'}, // {title: '空载具出库', path: '/pages/Material/kzj-out-store'},
{title: '空载具入库', path: '/pages/Material/kzj-in-store'}, // {title: '空载具入库', path: '/pages/Material/kzj-in-store'},
{title: '小料箱入库', path: '/pages/Material/xlx-in-store'} // {title: '小料箱入库', path: '/pages/Material/xlx-in-store'}
]}, // ]},
{title: '大料箱功能0', path: 'RF09', sonTree: [ // {title: '大料箱功能0', path: 'RF09', sonTree: [
{title: '空载具出入库', path: '/pages/Material/kzj-inout-store'}, // {title: '空载具出入库', path: '/pages/Material/kzj-inout-store'},
{title: '料箱入库', path: '/pages/Material/lx-in-store'}, // {title: '料箱入库', path: '/pages/Material/lx-in-store'},
{title: '物料入库', path: '/pages/Material/mater-in-store'}, // {title: '物料入库', path: '/pages/Material/mater-in-store'},
{title: '大料箱出库', path: '/pages/Material/dlx-out-store'}, // {title: '大料箱出库', path: '/pages/Material/dlx-out-store'},
{title: '退库确认', path: '/pages/Material/tuiku-confirm'}, // {title: '退库确认', path: '/pages/Material/tuiku-confirm'},
{title: '大料箱移库', path: '/pages/Material/dlx-move-store'}, // {title: '大料箱移库', path: '/pages/Material/dlx-move-store'},
{title: '大料箱盘库', path: '/pages/Material/dlx-pan-store'} // {title: '大料箱盘库', path: '/pages/Material/dlx-pan-store'}
]}, // ]},
{title: '无人车对接', path: 'RF10', sonTree: [ {title: '无人车对接', path: 'RF10', sonTree: [
{title: '无人车卸货', path: '/pages/hdyy/wrcdj/wrc-unload'}, {title: '无人车卸货', path: '/pages/hdyy/wrcdj/wrc-unload'},
{title: '无人车装货', path: '/pages/hdyy/wrcdj/wrc-load'} {title: '无人车装货', path: '/pages/hdyy/wrcdj/wrc-load'}

View File

@@ -103,7 +103,7 @@ export const inEmptyVehicle = (scode, stcode, pcode) => request({
}) })
// 库区下拉框 // 库区下拉框
export const getSectList = (code) => request({ export const getSectList = (code) => request({
url:'/api/pdaCommon/getSectList', url:'api/pdaCommon/getSectList',
data: {code: code} data: {code: code}
}) })
// 空载具出库 // 空载具出库
@@ -221,7 +221,7 @@ export const getGroupInfo = (search) => request({
}) })
// 剩料回库 // 剩料回库
export const leftoverMaterialBack = (search, rows) => request({ export const leftoverMaterialBack = (search, rows) => request({
url:'/api/pdaProduction/leftoverMaterialBack', url:'api/pdaProduction/leftoverMaterialBack',
data: {search: search, rows: rows} data: {search: search, rows: rows}
}) })
@@ -288,3 +288,56 @@ export const receivedIn = (pcode, vcode, scode, rows) => request({
url:'api/pdaProduction/receivedIn', url:'api/pdaProduction/receivedIn',
data: {point_code: pcode, vehicle_code: vcode, sect_code: scode, rows: rows} data: {point_code: pcode, vehicle_code: vcode, sect_code: scode, rows: rows}
}) })
/**
* 通用功能
*/
// 点对点转运(通用功能)共 (1) 个
// 生成任务
export const createTask = (pcode1, pcode2, type) => request({
url:'api/pdaPointAndPoint/createTask',
data: {point_code1: pcode1, point_code2: pcode2, task_type: type}
})
// 点位更新(通用功能)共 (4) 个
// 查询明细
export const pdaPointAndPointqueryPointDtl = (pcode, vcode) => request({
url:'api/pdaPointAndPoint/queryPointDtl',
data: {point_code: pcode, vehicle_code: vcode}
})
// 绑定
export const bind = (pcode, vcode, rows) => request({
url:'api/pdaPointAndPoint/bind',
data: {point_code: pcode, vehicle_code: vcode, rows: rows}
})
// 清载具
export const clearVehicle = (pcode, vcode, rows) => request({
url:'api/pdaPointAndPoint/clearVehicle',
data: {point_code: pcode, vehicle_code: vcode, rows: rows}
})
// 清物料
export const clearMaterial = (pcode, vcode, rows) => request({
url:'api/pdaPointAndPoint/clearMaterial',
data: {point_code: pcode, vehicle_code: vcode, rows: rows}
})
// 作业管理(通用功能)共 (4) 个
// 查询任务
export const queryTask = (search) => request({
url:'api/pdaTask/queryTask',
data: {search: search}
})
// 查询历史任务
export const queryHistoryTask = (search, stime, etime) => request({
url:'api/pdaTask/queryHistoryTask',
data: {search: search, start_time: stime, end_time: etime}
})
// 重新下发
export const againSendTask = (obj) => request({
url:'api/pdaTask/againSendTask',
data: {obj}
})
// 强制完成
export const forceConfirmTask = (obj) => request({
url:'api/pdaTask/forceConfirmTask',
data: {obj}
})

View File

@@ -1,6 +1,6 @@
import * as types from '../types' import * as types from '../types'
const baseUrl = process.env.NODE_ENV === 'development' ? 'http://192.168.18.218:8012' : 'http://192.168.18.218:8012' const baseUrl = process.env.NODE_ENV === 'development' ? 'http://192.168.10.70:8011' : 'http://192.168.10.70:8011'
const acsUrl = process.env.NODE_ENV === 'development' ? 'http://192.168.18.250:8012' : 'http://192.168.18.250:8012' const acsUrl = process.env.NODE_ENV === 'development' ? 'http://192.168.18.250:8012' : 'http://192.168.18.250:8012'
const printUrl = process.env.NODE_ENV === 'development' ? 'http://192.168.18.4:8000' : 'http://192.168.18.4:8000' const printUrl = process.env.NODE_ENV === 'development' ? 'http://192.168.18.4:8000' : 'http://192.168.18.4:8000'
const state = { const state = {