123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <template>
- <!-- 燃料运输派单 -->
- <div class="homeworkPath">
- <div class="top">
- <el-input placeholder="请输入内容" class="input" v-model="input" clearable> </el-input>
- <el-button type="primary" class="btn" @click="onclick">
- <i class="el-icon-search"></i>查询
- </el-button>
- </div>
- <el-tabs v-model="activeName">
- <!-- 未下发 -->
- <el-tab-pane label="已接收" name="first">
- <dilTable v-bind.sync="option1" ref="table">
- </dilTable>
- </el-tab-pane>
- <!-- 已下发 -->
- <el-tab-pane label="已拒绝" name="second">
- <dilTable v-bind.sync="option2">
- </dilTable>
- </el-tab-pane>
- </el-tabs>
- </div>
- </template>
- <script>
- export default {
- name: "inplantTMS",
- data() {
- return {
- input: "",
- Time: "",
- activeName: "first",
- option1: {
- // 表格请求数据的地址
- requestUrl: "/api/v1/oms/getTransportDispatch?apiId=148&fuelOrder=1&orderStatus=5"
- },
- option2: {
- // 表格请求数据的地址
- requestUrl: "/api/v1/oms/getTransportDispatch?apiId=241&fuelOrder=1&orderStatus=6"
- }
- };
- },
- methods: {
- onclick() {
- if(this.activeName == "first"){
- this.option1.requestUrl = "/api/v1/oms/getTransportDispatch?apiId=241&fuelOrder=1&orderStatus=5&con=" + this.input;
- }else{
- this.option2.requestUrl = "/api/v1/oms/getTransportDispatch?apiId=241&fuelOrder=1&orderStatus=6&con=" + this.input;
- }
- },
- },
- };
- </script>
- <style lang='scss' scoped>
- .homeworkPath {
- .top {
- padding: 1.25rem 1.875rem;
- .input{
- width: 12.5rem;
- }
- }
- }
- </style>
|