12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <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>
- <dilTable v-bind.sync="option">
-
- </dilTable>
- </div>
- </template>
- <script>
- export default {
- name: "homeworkPath",
- data() {
- return {
- restaurants: [],
- input: "",
- option: {
- // 表格请求数据的地址
- requestUrl: "/api/v1/tms/getReceiveResult?apiId=149&orderType=6",
- },
- };
- },
- methods: {
- onclick() {
- this.option.requestUrl = "/api/v1/tms/getReceiveResult?apiId=149&orderType=6&con=" + this.input;
- },
- }
- };
- </script>
- <style lang='scss'>
- .homeworkPath {
- .top {
- padding: 40px;
- .input{
- width: 250px;
- margin-right: 10px;
- }
- }
- }
- </style>
|