purchaseChemicalMaterialsOld.vue 1021 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. // 采购化工材料老区汽运监控
  2. <template>
  3. <div class="purchasFuelOldMonitor">
  4. <div class="frameCalculation">
  5. <el-input class="input" placeholder="请输入内容" v-model="input" clearable> </el-input>
  6. <el-button type="primary" class="btn" @click="onclick">
  7. <i class="el-icon-search"></i>查询
  8. </el-button>
  9. </div>
  10. <div class="table">
  11. <dilTable v-bind.sync="option"></dilTable>
  12. </div>
  13. </div>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. option: {
  20. requestUrl: "/api/v1/tms/getRLFLReport?apiId=382&orderType=17",
  21. },
  22. input: "",
  23. };
  24. },
  25. methods: {
  26. onclick() {
  27. this.option.requestUrl = "/api/v1/tms/getRLFLReport?apiId=382&orderType=17&con=" + this.input;
  28. },
  29. },
  30. };
  31. </script>
  32. <style lang="scss">
  33. .purchasFuelOldMonitor {
  34. .frameCalculation {
  35. width: 100%;
  36. height: 100px;
  37. display: flex;
  38. align-items: center;
  39. padding-left: 50px;
  40. .input{
  41. width: 250px;
  42. }
  43. }
  44. }
  45. </style>