rk
2025-09-24 f3c59a17062fb0a89b5f89b7845341386952a6b1
admin/src/views/platform/platform.vue
@@ -14,6 +14,12 @@
              </el-option>
            </el-select>
          </el-form-item>
          <el-form-item label="" prop="type">
            <el-select v-model="searchForm.type" placeholder="请选择月台类型" @change="search" clearable>
              <el-option label="整托盘" :value="0"></el-option>
              <el-option label="散件" :value="1"></el-option>
            </el-select>
          </el-form-item>
          <!-- <section> -->
          <el-button type="primary" @click="search">搜索</el-button>
          <el-button @click="reset">重置</el-button>
@@ -34,9 +40,17 @@
        <el-table-column type="selection" width="55"></el-table-column>
        <el-table-column prop="name" label="月台名称" fixed min-width="100px"></el-table-column>
        <el-table-column prop="code" label="月台编码" fixed min-width="100px"></el-table-column>
        <el-table-column prop="type" label="月台类型" min-width="100px">
          <template scope="{row}">
            <span v-if="row.type == 0" class="green">整托盘</span>
            <span v-else-if="row.type == 1" class="red">散件</span>
            <span v-else class="grey">-</span>
          </template>
        </el-table-column>
        <el-table-column prop="groupName" label="所属月台组" fixed min-width="150px"></el-table-column>
        <el-table-column prop="sortnum" label="排序码" min-width="90px"></el-table-column>
        <el-table-column prop="workingNum" label="同时叫号车辆数" min-width="120px"></el-table-column>
        <el-table-column prop="workingNum" label="同时叫号数量" min-width="120px"></el-table-column>
        <el-table-column prop="callReadyNum" label="同时准备数量" min-width="120px"></el-table-column>
        <el-table-column prop="stayTimeoutAlarmTime" label="停留超时报警时间(分钟)" min-width="180px">
          <template scope="{row}">{{ row.stayTimeoutAlarmTime ? (row.stayTimeoutAlarmTime) : '-' }}</template>
        </el-table-column>
@@ -100,6 +114,7 @@
      working1: false,
      searchForm: {
        name: '',
        type:null,
        groupId: null
      }
    }