liukangdong
2024-06-06 cc359f238d4ce86c96b224498a87902e1b2de557
admin/src/views/platform/index.vue
@@ -213,8 +213,9 @@
</template>
<script>
import { getPlatform } from '@/api'
export default {
  data() {
  data () {
    return {
      currentPlatform: '',
      platformList: [],
@@ -227,22 +228,30 @@
      queuingForm: {}
    }
  },
  created () {
    this.getPlatList()
  },
  methods: {
    handleQueuing(row) {
    handleQueuing (row) {
      this.isShowQueuing = true
    },
    handleFinish(item) {
    handleFinish (item) {
      this.$confirm('高架库6号月台 皖A12345 作业结束', '温馨提示', {
        confirmButtonText: '确定',
        cancelButtonText: '取消',
        type: 'warning'
      })
    },
    handleSet() {
    getPlatList () {
      getPlatform({
        model: {}
      })
    },
    handleSet () {
      this.isShowSet = true
    },
    setReset() { },
    setSub() { }
    setReset () { },
    setSub () { }
  }
}
</script>