123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290 |
- // 计时作业
- <template>
- <div class="sale">
- <div class="top">
- <!-- 框计算 -->
- <span class="text">计时时间:</span>
- <el-date-picker
- v-model="startTime"
- type="datetime"
- placeholder="选择日期"
- >
- </el-date-picker>
- <span class="text">至</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>
- <!-- excel导出 -->
- <el-button type="primary" @click="exportData()">
- <i class="el-icon-download"></i>导出(Excel)
- </el-button>
- </div>
- <div class="tab">
- <dilTable v-bind.sync="option" ref="excelDom">
- <el-table-column fixed="right" label="操作" width="180">
- <template slot-scope="scope">
- <div class="step">
- <el-button
- @click="detailclick1(scope.row)"
- type="text"
- size="small"
- >运输详情</el-button
- >
- </div>
- <!-- <el-button @click="" type="primary" style="margin-left: 16px;">
- 运输详情
- </el-button> -->
- </template>
- </el-table-column>
- <!-- 运输进程详情 -->
- <el-table-column type="expand" width="1">
- <template slot-scope="props">
- <el-form label-position="center" inline class="demo-table-expand">
- <div v-if="false">{{ props }}</div>
- <div>
- <el-table :data="tableData1" border>
- <el-table-column
- v-for="(item, i) in tableHead"
- :key="i"
- :prop="item.prop"
- :label="item.label"
- :width="item.width"
- ></el-table-column>
- </el-table>
- </div>
- </el-form>
- </template>
- </el-table-column>
- </dilTable>
- </div>
- <!-- 运输进程详情 -->
- <!-- <el-drawer
- :visible.sync="drawer"
- :direction="direction"> -->
- <!-- 步骤条显示 -->
- <!-- <div style="height: 200px;content-align:center" >
- <el-table
- :data="stepList"
- style="width: 100%">
- <el-table-column
- prop="linkName"
- label="计时状态"
- width="180">
- </el-table-column>
- <el-table-column
- prop="pointDate"
- label="时间"
- width="180">
- </el-table-column>
- </el-table>
- </div>
- </el-drawer> -->
- </div>
- </template>
- <script>
- import { getCookie } from "@/utils/util.js";
- import { sjTime } from "@/utils/sharedJsFile";
- export default {
- data() {
- return {
- inputText: "",
- option: {
- // 表格请求数据的地址
- requestUrl: ""
- },
- tableHead: [
- {
- prop: "linkName",
- label: "计时状态",
- width: 150
- },
- {
- prop: "pointDate",
- label: "时间",
- width: 150
- }
- ],
- tableData1: [],
- tableData: [],
- startTime: null,
- endTime: null,
- oldRow1: "",
- oldRowCount1: 1,
- drawer: false,
- direction: "rtl",
- orderId: 0,
- stepList: [],
- tableTitle: "计时统计"
- };
- },
- created() {
- if (
- getCookie("orgCode") == "dagangadmin" ||
- getCookie("orgCode") == "zidonghuabu" ||
- getCookie("orgCode") == "wuliuchuyunzhongxin"
- ) {
- this.option.requestUrl = "/api/v1/tms/getAllTimeTaskResult?apiId=458";
- } else {
- this.option.requestUrl =
- "/api/v1/tms/getAllTimeTaskResult?apiId=458&userId=" +
- getCookie("orgCode");
- }
- },
- methods: {
- // -------查看物资详情(已拒绝)
- detailclick1(row) {
- // 记录重复点击次数
- if (this.oldRow1 === row) {
- this.oldRowCount1 += 1;
- }
- this.orderId = row.orderId;
- let map = {
- orderId: this.orderId
- };
- // 切换当前详情表
- this.$refs.excelDom.toggleRowExpansion(row);
- // 打开前关闭上一个详情表
- if (this.oldRow1 != "") {
- if (this.oldRow1 != row) {
- if (this.oldRowCount1 % 2 === 1) {
- this.$refs.excelDom.toggleRowExpansion(this.oldRow1);
- } else {
- this.oldRowCount1 = 1;
- }
- } else {
- this.oldRow1 = null;
- return;
- }
- }
- // 重置上一个点击对象
- this.oldRow1 = row;
- // 根据销售订单物资中间表id查询物资信息
- this.axios.post("/api/v1/oms/getOrderResult?orderId=", map).then(res => {
- console.log("res", res);
- this.tableData1 = res.data;
- });
- },
- getStepsList(row) {
- console.log(row.orderId);
- this.orderId = row.orderId;
- this.drawer = true;
- let map = {
- orderId: this.orderId
- };
- this.axios.post("/api/v1/oms/getOrderResult", map).then(res => {
- console.log(res);
- if (res.status == 200) {
- this.stepList = res.data;
- } else {
- this.$message.error("展示失败!");
- }
- });
- console.log(this.stepList);
- },
- getRequirementMaterial1(row) {
- // 记录重复点击次数
- if (this.oldRow1 === row) {
- this.oldRowCount1 += 1;
- }
- // 切换当前详情表
- this.$refs.excelDom.toggleRowExpansion(row);
- // 打开前关闭上一个详情表
- if (this.oldRow1 != "") {
- if (this.oldRow1 != row) {
- if (this.oldRowCount1 % 2 === 1) {
- this.$refs.excelDom.toggleRowExpansion(this.oldRow1);
- } else {
- this.oldRowCount1 = 1;
- }
- } else {
- this.oldRow1 = null;
- return;
- }
- }
- // 重置上一个点击对象
- this.oldRow1 = row;
- this.getMaterial(row.orderId);
- },
- 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) {
- console.log(startTime);
- console.log(endTime);
- if (
- getCookie("orgCode") == "dagangadmin" ||
- getCookie("orgCode") == "zidonghuabu" ||
- getCookie("orgCode") == "wuliuchuyunzhongxin"
- ) {
- this.option.requestUrl =
- "/api/v1/tms/getAllTimeTaskResult?apiId=458&startTime=" +
- startTime +
- "&endTime=" +
- endTime +
- "&i=" +
- new Date();
- } else {
- this.option.requestUrl =
- "/api/v1/tms/getAllTimeTaskResult?apiId=458&userId=" +
- getCookie("orgCode") +
- "&startTime=" +
- startTime +
- "&endTime=" +
- endTime +
- "&i=" +
- new Date();
- }
- } else {
- this.startTime = null;
- this.endTime = null;
- this.$message.warning("开始时间要比结束时间早");
- }
- } else {
- }
- },
- getMaterial(orderId) {
- console.log(orderId);
- this.axios
- .post("/api/v1/oms/getPauseTimeTaskDetail/" + orderId)
- .then(res => {
- console.log(res);
- this.tableData = res.data.data;
- });
- }
- }
- };
- </script>
- <style lang="scss">
- .sale {
- .top {
- padding: 1.25rem 1.875rem;
- .el-input {
- width: 20%;
- }
- }
- }
- .el-table th.el-table__cell > .cell {
- display: inline-block;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- position: relative;
- vertical-align: middle;
- padding-left: 10px;
- padding-right: 10px;
- width: 100%;
- text-align: center;
- }
- .step {
- text-align: center;
- }
- </style>
|