1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <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">
- <el-table-column fixed="right" label="操作" width="50">
- <template slot-scope="scope">
- <el-button @click="updateClick(scope.row.resultId)" type="text" size="small">
- 修改
- </el-button>
- </template>
- </el-table-column>
- </dilTable>
- </div>
- </template>
- <script>
- export default {
- name: "wagonPlease",
- data() {
- return {
- status: "",
- input: "",
- option: {
- // 表格请求数据的地址
- requestUrl: "/api/v1/tms/getQualityResult?apiId=150&orderType=6",
- },
- };
- },
- methods: {
- onclick() {
- this.option.requestUrl = "/api/v1/tms/getQualityResult?apiId=150&orderType=6&con=" + this.input;
- },
- updateClick(resultId) {
- this.$router.push("/truckQualityRanLaoResultEdit/" + resultId);
- },
-
- },
- };
- </script>
- <style lang='scss' scoped>
- .homeworkPath {
- .top {
- padding: 1.25rem 1.875rem;
- .input{
- width: 12.5rem;
- }
- }
- }
- </style>
|