123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <template>
- <!-- 批车作业页面 -->
- <div class="homeworkPath">
- <div class="top">
- <el-input placeholder="请输入内容" v-model="inputText" clearable>
- </el-input>
- <el-button type="primary" class="btn" @click="onclick">
- <i class="el-icon-search"></i>查询
- </el-button>
- <el-button type="primary" @click="btnclick">
- <i class="el-icon-plus"></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 {
- inputText: "",
- option: {
- // 表格请求数据的地址
- requestUrl:
- "/api/v1/tms/getApproveAllWagonPlease?apiId=254&status=2&resultType=4",
- },
- };
- },
- methods: {
- onclick() {
- this.option.requestUrl =
- "/api/v1/tms/getApproveAllWagonPlease?apiId=254&status=2&resultType=4&con=" + this.inputText;
- },
- btnclick() {
- this.$router.push("/truckTrain/addApproveWagonPlease");
- },
- updateClick(resultId) {
- this.$router.push("/truckTrain/editApproveWagonPlease/" + resultId);
- },
- },
- };
- </script>
- <style lang='scss'>
- .homeworkPath {
- .top {
- padding: 1.25rem 1.875rem;
- }
- }
- </style>
|