steel_rebound.vue 892 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //退库
  2. <template>
  3. <div class="steel_inbound">
  4. <div class="sache">
  5. <el-input
  6. placeholder="请输入内容"
  7. v-model="inputText"
  8. clearable>
  9. </el-input>
  10. <el-button type="primary" class="btn" @click="onclick">
  11. <i class="el-icon-search"></i>查询
  12. </el-button>
  13. </div>
  14. <div class="table">
  15. <dilTable v-bind.sync="options">
  16. </dilTable>
  17. </div>
  18. </div>
  19. </template>
  20. <script>
  21. export default {
  22. data(){
  23. return{
  24. inputText:"",
  25. options:{
  26. // first请求数据的地址
  27. requestUrl: "/api/v1/wms/getWmsReboundResult?apiId=161",
  28. },
  29. }
  30. },
  31. methods:{
  32. onclick(){
  33. console.log("点击事件");
  34. }
  35. }
  36. }
  37. </script>
  38. <style lang="scss" scode>
  39. .steel_inbound{
  40. .sache{
  41. height: 5rem;
  42. display: flex;
  43. align-items: center;
  44. padding-left: 1.875rem;
  45. }
  46. }
  47. </style>