#
whycq
2024-04-05 c7870012df5f69ed1abcf30e08f31f34e96053d1
#
1个文件已修改
7 ■■■■ 已修改文件
pages/phyz/stationManage/stationDetl.vue 7 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/phyz/stationManage/stationDetl.vue
@@ -11,7 +11,7 @@
            <view>站点状态:{{station.locSts$}}</view>
            <view class="mt-flex">
                <view class="station-barcode" style="flex: 1">货架码:<text>{{station.barcode ? station.barcode : '--'}}</text></view>
                <view v-if="station.barcode"><button size="mini" type="warn">解除绑定</button></view>
                <view v-if="station.barcode"><button size="mini" type="warn" @click="unbind">解除绑定</button></view>
            </view>
        </view>
        
@@ -52,6 +52,7 @@
            })
        },
        methods: {
            // 更新站点
            reloadStation()  {
                let _this = this
                _this.reload.loading = true
@@ -92,6 +93,10 @@
                        }
                    }
                })
            },
            // 站点解绑
            unbind() {
            }
        }
    }