123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- <template>
- <!-- 装车作业页面 -->
- <div class="trainTransport">
- <div class="top">
- <el-input
- class="el-input"
- placeholder="请输入内容"
- v-model="input"
- clearable
- >
- </el-input>
- <el-date-picker
- v-model="startTime"
- type="datetime"
- placeholder="选择日期"
- >
- </el-date-picker>
- <span>至</span>
- <el-date-picker v-model="endTime" type="datetime" placeholder="选择日期">
- </el-date-picker>
- <el-button type="primary" class="btn" @click="onclick">
- <i class="el-icon-search"></i>查询
- </el-button>
- <el-button type="primary" @click="btnclick(0)">
- <i class="el-icon-plus"></i>新增
- </el-button>
- </div>
- <dilTable v-bind.sync="option">
- <el-table-column fixed="right" label="操作" width="100">
- <template slot-scope="scope">
- <el-button @click="click(scope.row.resultId)"
- :disabled="!scope.row.isEdit"
- type="text" size="small"
- >修改</el-button
- >
- <!-- <el-button
- type="text"
- size="small"
- @click="deleteclick(scope.row.resultId)"
- >删除</el-button
- > -->
- </template>
- </el-table-column>
- </dilTable>
- </div>
- </template>
- <script>
- import { sjTime } from "@/utils/sharedJsFile";
- export default {
- name: "wagonload",
- data() {
- return {
- startTime: null,
- endTime: null,
- input: "",
- option: {
- // 表格请求数据的地址
- requestUrl: ""
- }
- };
- },
- created() {
- this.getRequestUrl();
- },
- methods: {
- getRequestUrl() {
- this.option.requestUrl =
- "/api/v1/tms/getTmstrainWagonLoad?apiId=58&resultType=1&i=" +
- new Date();
- },
- onclick() {
- let startTime = null;
- let endTime = null;
- if (this.startTime) {
- startTime = sjTime(this.startTime);
- }
- if (this.endTime) {
- endTime = sjTime(this.endTime);
- }
- if (startTime && endTime) {
- if (startTime < endTime) {
- this.option.requestUrl =
- "/api/v1/tms/getTmstrainWagonLoad?apiId=58&resultType=1&con=" +
- this.input +
- "&startTime=" +
- startTime +
- "&endTime=" +
- endTime +
- "&i=" +
- new Date();
- }
- } else {
- this.option.requestUrl =
- "/api/v1/tms/getTmstrainWagonLoad?apiId=58&resultType=1&con=" +
- this.input;
- }
- },
- btnclick() {
- this.$router.push("/addWagonLoad");
- },
- click(resultId) {
- this.$router.push("/editWagonLoad/" + resultId);
- },
- deleteclick(scope) {
- let resultId = scope;
- this.$confirm("是否删除", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- center: true
- })
- .then(() => {
- this.$message({
- type: "success",
- message: "删除成功!"
- });
- this.axios
- .post(
- "/api/v1/tms/deleteTmstrainLoadingResultByResultId?resultId=" +
- resultId
- )
- .then(() => {
- this.getRequestUrl();
- });
- })
- .catch(() => {
- this.$message({
- type: "info",
- message: "取消删除!"
- });
- });
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .trainTransport {
- .top {
- padding: 1.25rem 0.375rem;
- .el-input {
- width: 20%;
- margin-right: 1.25rem;
- }
- }
- }
- </style>
|