| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <template>
- <!-- 火运实绩页面 -->
- <div class="purchaseOrder">
- <div class="top">
- <el-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>
- <dilTable v-bind.sync="option">
- </dilTable>
- </div>
- </template>
- <script>
- export default {
- name: "purchaseOrder",
- data() {
- return {
- restaurants: [],
- state: "",
- option: {
- // 表格请求数据的地址
- requestUrl: "/api/v1/bms/getStatementTrainResultList?apiId=122&detailsId="
- + this.$route.params.detailsId
- },
- };
- },
- mounted() {
- },
- methods: {
- onclick() {
- console.log(1);
- },
- },
- };
- </script>
- <style lang='scss' scoped>
- .purchaseOrder {
- .top {
- padding: 1.25rem 1.875rem;
- }
- }
- </style>
|