|
@@ -67,6 +67,14 @@
|
|
|
</a-row>
|
|
|
</a-form-model>
|
|
|
</div>
|
|
|
+ <div style="margin-bottom: 10px">
|
|
|
+ <a-button type="primary" id="shelfMonitoringList-export" @click="handleAddBack">新增调回单</a-button>
|
|
|
+ <span style="margin-left: 5px">
|
|
|
+ <template v-if="hasSelected">
|
|
|
+ {{ `已选 ${selectedRowKeys.length} 项` }}
|
|
|
+ </template>
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
<!-- 列表 -->
|
|
|
<s-table
|
|
|
class="sTable fixPagination"
|
|
@@ -204,6 +212,8 @@ export default {
|
|
|
this.$refs.ruleForm.resetFields()
|
|
|
this.$refs.table.clearTable()
|
|
|
},
|
|
|
+ // 新增调回单
|
|
|
+ handleAddBack () {},
|
|
|
// 详情
|
|
|
handleDetail (row) {
|
|
|
this.$router.push({ path: `/allocationManagement/chainTransferIn/detail/${row.allocationLinkagePutSn}` })
|