|
|
@ -2,34 +2,34 @@ |
|
|
|
<a-card :bordered="false"> |
|
|
|
<a-card :bordered="false"> |
|
|
|
|
|
|
|
|
|
|
|
<!-- 查询区域 --> |
|
|
|
<!-- 查询区域 --> |
|
|
|
<div class="table-page-search-wrapper"> |
|
|
|
<!-- <div class="table-page-search-wrapper">--> |
|
|
|
<a-form layout="inline" @keyup.enter.native="searchQuery"> |
|
|
|
<!-- <a-form layout="inline" @keyup.enter.native="searchQuery">--> |
|
|
|
<a-row :gutter="24"> |
|
|
|
<!-- <a-row :gutter="24">--> |
|
|
|
|
|
|
|
|
|
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24"> |
|
|
|
<!-- <a-col :xl="6" :lg="7" :md="8" :sm="24">--> |
|
|
|
<a-form-item label="工位ID"> |
|
|
|
<!-- <a-form-item label="工位ID">--> |
|
|
|
<a-input placeholder="请输入工位ID" v-model="queryParam.stationId"></a-input> |
|
|
|
<!-- <a-input placeholder="请输入工位ID" v-model="queryParam.stationId"></a-input>--> |
|
|
|
</a-form-item> |
|
|
|
<!-- </a-form-item>--> |
|
|
|
</a-col> |
|
|
|
<!-- </a-col>--> |
|
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24"> |
|
|
|
<!-- <a-col :xl="6" :lg="7" :md="8" :sm="24">--> |
|
|
|
<a-form-item label="设备ID"> |
|
|
|
<!-- <a-form-item label="设备ID">--> |
|
|
|
<a-input placeholder="请输入设备ID" v-model="queryParam.machineId"></a-input> |
|
|
|
<!-- <a-input placeholder="请输入设备ID" v-model="queryParam.machineId"></a-input>--> |
|
|
|
</a-form-item> |
|
|
|
<!-- </a-form-item>--> |
|
|
|
</a-col> |
|
|
|
<!-- </a-col>--> |
|
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24"> |
|
|
|
<!-- <a-col :xl="6" :lg="7" :md="8" :sm="24">--> |
|
|
|
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons"> |
|
|
|
<!--<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">--> |
|
|
|
<a-button type="primary" @click="searchQuery" icon="search">查询</a-button> |
|
|
|
<!-- <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>--> |
|
|
|
<a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button> |
|
|
|
<!-- <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>--> |
|
|
|
<a @click="handleToggleSearch" style="margin-left: 8px"> |
|
|
|
<!-- <a @click="handleToggleSearch" style="margin-left: 8px">--> |
|
|
|
{{ toggleSearchStatus ? '收起' : '展开' }} |
|
|
|
<!-- {{ toggleSearchStatus ? '收起' : '展开' }}--> |
|
|
|
<a-icon :type="toggleSearchStatus ? 'up' : 'down'"/> |
|
|
|
<!-- <a-icon :type="toggleSearchStatus ? 'up' : 'down'"/>--> |
|
|
|
</a> |
|
|
|
<!-- </a>--> |
|
|
|
</span> |
|
|
|
<!-- </span>--> |
|
|
|
</a-col> |
|
|
|
<!-- </a-col>--> |
|
|
|
|
|
|
|
|
|
|
|
</a-row> |
|
|
|
<!-- </a-row>--> |
|
|
|
</a-form> |
|
|
|
<!-- </a-form>--> |
|
|
|
</div> |
|
|
|
<!-- </div>--> |
|
|
|
|
|
|
|
|
|
|
|
<!-- 操作按钮区域 --> |
|
|
|
<!-- 操作按钮区域 --> |
|
|
|
<div class="table-operator"> |
|
|
|
<div class="table-operator"> |
|
|
@ -39,17 +39,17 @@ |
|
|
|
<!-- @change="handleImportExcel">--> |
|
|
|
<!-- @change="handleImportExcel">--> |
|
|
|
<!-- <a-button type="primary" icon="import">导入</a-button>--> |
|
|
|
<!-- <a-button type="primary" icon="import">导入</a-button>--> |
|
|
|
<!-- </a-upload>--> |
|
|
|
<!-- </a-upload>--> |
|
|
|
<a-dropdown v-if="selectedRowKeys.length > 0"> |
|
|
|
<!-- <a-dropdown v-if="selectedRowKeys.length > 0">--> |
|
|
|
<a-menu slot="overlay"> |
|
|
|
<!-- <a-menu slot="overlay">--> |
|
|
|
<a-menu-item key="1" @click="batchDel"> |
|
|
|
<!-- <a-menu-item key="1" @click="batchDel">--> |
|
|
|
<a-icon type="delete"/> |
|
|
|
<!-- <a-icon type="delete"/>--> |
|
|
|
删除 |
|
|
|
<!-- 删除--> |
|
|
|
</a-menu-item> |
|
|
|
<!-- </a-menu-item>--> |
|
|
|
</a-menu> |
|
|
|
<!-- </a-menu>--> |
|
|
|
<a-button style="margin-left: 8px"> 批量操作 |
|
|
|
<!-- <a-button style="margin-left: 8px"> 批量操作--> |
|
|
|
<a-icon type="down"/> |
|
|
|
<!-- <a-icon type="down"/>--> |
|
|
|
</a-button> |
|
|
|
<!-- </a-button>--> |
|
|
|
</a-dropdown> |
|
|
|
<!-- </a-dropdown>--> |
|
|
|
<a-button type="primary" @click="fanHui()">返回</a-button> |
|
|
|
<a-button type="primary" @click="fanHui()">返回</a-button> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
@ -75,19 +75,21 @@ |
|
|
|
@change="handleTableChange"> |
|
|
|
@change="handleTableChange"> |
|
|
|
|
|
|
|
|
|
|
|
<span slot="action" slot-scope="text, record"> |
|
|
|
<span slot="action" slot-scope="text, record"> |
|
|
|
<a @click="handleEdit(record)">编辑</a> |
|
|
|
<!-- <a @click="handleEdit(record)">编辑</a>--> |
|
|
|
|
|
|
|
|
|
|
|
<a-divider type="vertical"/> |
|
|
|
|
|
|
|
<a-dropdown> |
|
|
|
|
|
|
|
<a class="ant-dropdown-link">更多 <a-icon type="down"/></a> |
|
|
|
|
|
|
|
<a-menu slot="overlay"> |
|
|
|
|
|
|
|
<a-menu-item> |
|
|
|
|
|
|
|
<a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)"> |
|
|
|
<a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)"> |
|
|
|
<a>删除</a> |
|
|
|
<a>删除</a> |
|
|
|
</a-popconfirm> |
|
|
|
</a-popconfirm> |
|
|
|
</a-menu-item> |
|
|
|
<!-- <a-divider type="vertical"/>--> |
|
|
|
</a-menu> |
|
|
|
<!-- <a-dropdown>--> |
|
|
|
</a-dropdown> |
|
|
|
<!-- <a class="ant-dropdown-link">更多 <a-icon type="down"/></a>--> |
|
|
|
|
|
|
|
<!-- <a-menu slot="overlay">--> |
|
|
|
|
|
|
|
<!-- <a-menu-item>--> |
|
|
|
|
|
|
|
<!-- <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">--> |
|
|
|
|
|
|
|
<!-- <a>删除</a>--> |
|
|
|
|
|
|
|
<!-- </a-popconfirm>--> |
|
|
|
|
|
|
|
<!-- </a-menu-item>--> |
|
|
|
|
|
|
|
<!-- </a-menu>--> |
|
|
|
|
|
|
|
<!-- </a-dropdown>--> |
|
|
|
</span> |
|
|
|
</span> |
|
|
|
|
|
|
|
|
|
|
|
</a-table> |
|
|
|
</a-table> |
|
|
|