Browse Source

栈板点位特殊处理

master
常熟吴彦祖 1 month ago
parent
commit
d5cf63e0a2
  1. 6
      src/views/modules/wcsSystem/agvStationSpecialAction.vue

6
src/views/modules/wcsSystem/agvStationSpecialAction.vue

@ -68,10 +68,10 @@
width="220"
label="操作">
<template slot-scope="scope">
<a type="text" @click="correctStatus(scope.row)" v-if="!scope.row.correctLoading&&!scope.row.stationId!=='D1'&&!scope.row.stationId!=='D2'">纠正状态</a>
<a type="text" @click="correctStatus(scope.row)" v-if="!scope.row.correctLoading&&scope.row.stationCode!=='D1'&&scope.row.stationCode!=='D2'">纠正状态</a>
<span v-if="scope.row.correctLoading" style="color: #999;">处理中...</span>
<a type="text" @click="viewPallets(scope.row)" style="margin-left: 10px;" v-if="!scope.row.stationId!=='D1'&&!scope.row.stationId!=='D2'">查看栈板</a>
<a type="text" @click="openAutoCallSetting(scope.row)" style="margin-left: 10px;" v-if="!scope.row.stationId!=='D1'&&!scope.row.stationId!=='D2'">续盘设置</a>
<a type="text" @click="viewPallets(scope.row)" style="margin-left: 10px;" v-if="scope.row.stationCode!=='D1'&&scope.row.stationCode!=='D2'">查看栈板</a>
<a type="text" @click="openAutoCallSetting(scope.row)" style="margin-left: 10px;" v-if="scope.row.stationCode!=='D1'&&scope.row.stationCode!=='D2'">续盘设置</a>
</template>
</el-table-column>
</el-table>

Loading…
Cancel
Save