recyclebin.html 1.0 KB

1234567891011121314151617181920
  1. {include file="/shopro/common/script" /}
  2. <div id="recyclebin" class="stock-warning-recyclebin" v-cloak>
  3. <el-container class="panel-block">
  4. <el-main>
  5. <el-table height="100%" class="sa-table" :data="state.data" stripe @sort-change="onChangeSort">
  6. <el-table-column prop="id" label="ID" width="90" sortable="custom"></el-table-column>
  7. <el-table-column label="名称" min-width="120">
  8. <template #default="scope">
  9. <div class="sa-table-line-1">{{ scope.row.goods?.title || scope.row.goods_id }}</div>
  10. </template>
  11. </el-table-column>
  12. <el-table-column prop="deletetime" label="补货时间" width="172" sortable="custom"></el-table-column>
  13. </el-table>
  14. </el-main>
  15. <el-footer class="sa-footer sa-flex sa-row-right">
  16. <sa-pagination class="is-ellipsis" v-model="pagination" @pagination-change="getData"></sa-pagination>
  17. </el-footer>
  18. </el-container>
  19. </div>