空轴送回

This commit is contained in:
2023-03-06 11:38:08 +08:00
parent 46fe7fd6d5
commit 70b1979cd8
2 changed files with 37 additions and 2 deletions

View File

@@ -77,6 +77,7 @@
<uni-load-more color="#007AFF" iconType="circle" :status="status" :icon-size="14" :content-text="contentText" v-if="dataList.length > 0"/> <uni-load-more color="#007AFF" iconType="circle" :status="status" :icon-size="14" :content-text="contentText" v-if="dataList.length > 0"/>
</view> </view>
<view class="submit-bar"> <view class="submit-bar">
<button class="submit-button" :class="{'btn-disabled': !val1}" :disabled="disabled2" @tap="_feedingVehicleReturn">空轴送回</button>
<button class="submit-button" @tap="handleSure">人工呼叫</button> <button class="submit-button" @tap="handleSure">人工呼叫</button>
<button class="submit-button" :class="{'btn-disabled': !pkId}" :disabled="disabled" @tap="toSure">呼叫</button> <button class="submit-button" :class="{'btn-disabled': !pkId}" :disabled="disabled" @tap="toSure">呼叫</button>
<button class="submit-button" @tap="searchList">查询</button> <button class="submit-button" @tap="searchList">查询</button>
@@ -121,7 +122,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 {queryProductArea, feedingQueryMaterialInfo, feedingConfirm, feedingQueryPoint, feedingHandleConfirm} from '@/utils/getData2.js' import {queryProductArea, feedingQueryMaterialInfo, feedingConfirm, feedingQueryPoint, feedingHandleConfirm, feedingVehicleReturn} from '@/utils/getData2.js'
export default { export default {
components: { components: {
NavBar, NavBar,
@@ -151,7 +152,8 @@
val3: '', val3: '',
val4: '', val4: '',
val5: '', val5: '',
disabled1: false disabled1: false,
disabled2: false
}; };
}, },
created () { created () {
@@ -284,6 +286,32 @@
this.disabled1 = false this.disabled1 = false
} }
}, },
/** 空轴送回 */
async _feedingVehicleReturn () {
this.disabled2 = true
if (!this.val1) {
this.disabled2 = false
uni.showToast({
title: '点位不能为空',
icon: 'none'
})
return
}
try {
let res = await feedingVehicleReturn(this.val1)
this.disabled2 = false
this.active = false
this.val1 = '''
this.pkId = ''
this.searchList()
uni.showToast({
title: res.message,
icon: 'none'
})
} catch (e) {
this.disabled2 = false
}
},
} }
} }
</script> </script>

View File

@@ -445,6 +445,13 @@ export const feedingHandleConfirm = (code, cn, ncode) => request({
next_point_code: ncode next_point_code: ncode
} }
}) })
// 1.5空轴送回
export const feedingVehicleReturn = (code) => request({
url:'api/pda/feeding/vehicleReturn',
data: {
point_code: code
}
})
/** /**
* 任务管理 * 任务管理