1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- // 采购化工材料老区汽运监控
- <template>
- <div class="purchasFuelOldMonitor">
- <div class="frameCalculation">
- <el-input class="input" placeholder="请输入内容" v-model="input" clearable> </el-input>
- <el-button type="primary" class="btn" @click="onclick">
- <i class="el-icon-search"></i>查询
- </el-button>
- </div>
- <div class="table">
- <dilTable v-bind.sync="option"></dilTable>
- </div>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {
- option: {
- requestUrl: "/api/v1/tms/getRLFLReport?apiId=382&orderType=17",
- },
- input: "",
- };
- },
- methods: {
- onclick() {
- this.option.requestUrl = "/api/v1/tms/getRLFLReport?apiId=382&orderType=17&con=" + this.input;
- },
- },
- };
- </script>
- <style lang="scss">
- .purchasFuelOldMonitor {
- .frameCalculation {
- width: 100%;
- height: 100px;
- display: flex;
- align-items: center;
- padding-left: 50px;
- .input{
- width: 250px;
- }
- }
- }
- </style>
|