#
zhou zhou
2026-03-19 82c38c2dc22622acb181206c124e9bc8582779d9
#
2个文件已修改
22 ■■■■■ 已修改文件
pages/AGV/StartInTask.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/listing/matnrPalletising.vue 20 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/AGV/StartInTask.vue
@@ -249,7 +249,7 @@
                return
            }
            this.repeatClick = true
            const { code, data, msg } = await request('/AGV/task/start', {
            const { code, data, msg } = await request('/AGV/bindAndIn/start', {
                staNo: this.agvStationInput,
                area: this.whAreaId,
                barcode: this.barcode
pages/listing/matnrPalletising.vue
@@ -92,7 +92,9 @@
                            <text class="text-black">计划跟踪号:</text>
                        </view>
                        <view class="action">
                            <text class="text-grey">{{ item.platWorkCode }}</text>
                            <text class="text-grey">
                                {{ item.platWorkCode }}
                            </text>
                        </view>
                    </view>
                    <view class="cu-item">
@@ -253,10 +255,15 @@
                            />
                        </view>
                    </view>
                    <view class="form-item" v-if="agvStationName">
                    <view
                        class="form-item"
                        v-if="agvStationName"
                    >
                        <text class="form-label">站点名称</text>
                        <view class="input-wrapper">
                            <view class="agv-input text-grey">{{agvStationName}}</view>
                            <view class="agv-input text-grey">
                                {{ agvStationName }}
                            </view>
                        </view>
                    </view>
                    <view class="form-item">
@@ -363,7 +370,7 @@
                transferStationNo: this.agvStationInput
            })
            if (code === 200) {
                this.agvStationName = data.stationName
                this.agvStationName = data.stationId
            } else {
                uni.showToast({
                    title: msg,
@@ -448,8 +455,7 @@
            this.list = this.list.filter(
                (item, index, self) =>
                    self.findIndex(
                        (i) =>
                            i.id === item.id // 根据id去重
                        (i) => i.id === item.id // 根据id去重
                    ) === index && item.isptResult === self[0].isptResult
            )
            let newLength = this.list.length
@@ -575,7 +581,7 @@
                return
            }
            this.showAgvInputModal = false
            this.submitConfirm(this.agvStationName)
            this.submitConfirm(this.agvStationInput)
        },
        // 提交组托请求
        async submitConfirm(agvStation) {