123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- <template>
- <!-- 装船指令页面 -->
- <div class="shipTransport">
- <div class="top">
- <el-input
- class="el-input"
- placeholder="请输入内容"
- v-model="input"
- clearable
- >
- </el-input>
- <el-button type="primary" class="btn" @click="onclick">
- <i class="el-icon-search"></i>查询
- </el-button>
- <el-button class="btn" type="primary" @click="btnclick(0)">
- <i class="el-icon-circle-plus-outline"></i>新增
- </el-button>
- <el-button
- type="primary"
- class="btn"
- @click="addPick"
- v-if="activeName === 'second'"
- >
- <i class="el-icon-circle-plus-outline"></i>生成装船指令PDF
- </el-button>
- </div>
- <el-tabs v-model="activeName" @tab-click="handleClick">
- <!-- 未下发 -->
- <el-tab-pane label="未下发" name="first">
- <dilTable v-bind.sync="option" ref="table">
- <el-table-column
- fixed="right"
- label="操作"
- align="center"
- width="180"
- >
- <template slot-scope="scope">
- <el-button
- @click="selectclick(scope.row)"
- type="text"
- size="small"
- >加船</el-button
- >
- <el-button
- @click="issueclick(scope.row.instructionsId)"
- type="text"
- size="small"
- >下发</el-button
- >
- <el-button
- @click="click(scope.row.instructionsId)"
- type="text"
- size="small"
- >编辑</el-button
- >
- <el-button
- type="text"
- size="small"
- @click="deleteclick(scope.row.instructionsId)"
- >删除</el-button
- >
- </template>
- </el-table-column>
- </dilTable>
- </el-tab-pane>
- <!-- 已下发 -->
- <el-tab-pane label="已下发" name="second">
- <dilTable
- v-bind.sync="option2"
- @selection-change="selectionChange"
- ></dilTable>
- </el-tab-pane>
- </el-tabs>
- </div>
- </template>
- <script>
- export default {
- name: "homeworkPath",
- data() {
- return {
- restaurants: [],
- input: "",
- activeName: "first",
- option: {
- // 表格请求数据的地址
- requestUrl:
- "/api/v1/tms/getShipMentInstructionsList?apiId=74&status=未下发",
- },
- option2: {
- // 表格请求数据的地址
- requestUrl:
- "/api/v1/tms/getShipMentInstructionsList?apiId=74&status=已下发",
- selectionType: "select",
- },
- shipmentInstructionList: [],
- };
- },
- mounted() {},
- methods: {
- selectionChange(selection) {
- // console.log(selection);
- this.shipmentInstructionList = selection;
- },
- addPick() {
- if (this.shipmentInstructionList.length == 0) {
- this.$message.warning("请勾选已下发的装船指令,方可生成装船通知书");
- return;
- }
- // if (this.shipmentInstructionList.instructions = null) {
- // this.$message.warning("装船通知书暂时针对");
- // return;
- // }
- let shipmentInstructionList = {
- shipmentInstructionList: this.shipmentInstructionList,
- };
- // console.log("list", shipmentInstructionList);
- let test = encodeURIComponent(JSON.stringify(shipmentInstructionList));
- console.log("test",test);
- this.$router.push("/shipmentInstructionText/" + test);
- },
- handleClick(tab, event) {
- console.log(tab, event);
- },
- onclick() {
- if (this.activeName == "first") {
- this.option1.requestUrl =
- "/api/v1/tms/getShipMentInstructionsList?apiId=74&status=未下发&carrierSSOId=" +
- getCookie("userId") +
- "&con=" +
- this.input;
- } else{
- this.option2.requestUrl =
- "/api/v1/tms/getShipMentInstructionsList?apiId=74&status=已下发&carrierSSOId=" +
- getCookie("userId") +
- "&con=" +
- this.input;
- }
- },
- btnclick() {
- this.$router.push("/addShipmentInstructions/");
- },
- selectclick(row) {
- this.$router.push("/instructionsCapacity/" + row.instructionsId);
- },
- click(instructionsId) {
- this.$router.push("/updateShipmentInstructions/" + instructionsId);
- },
- deleteclick(scope) {
- let instructionsId = scope;
- this.$confirm("是否删除", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- center: true,
- })
- .then(() => {
- this.axios
- .post("/api/v1/tms/deleteByPrimaryKey/" + instructionsId)
- .then(() => {
- this.$message({
- type: "success",
- message: "删除成功!",
- });
- this.option.requestUrl =
- "/api/v1/tms/getShipMentInstructionsList?apiId=74&status=未下发&i=" +
- new Date();
- this.option2.requestUrl =
- "/api/v1/tms/getShipMentInstructionsList?apiId=74&status=已下发&i=" +
- new Date();
- });
- })
- .catch(() => {
- this.$message({
- type: "info",
- message: "取消删除!",
- });
- });
- },
- issueclick(scope) {
- let instructionsId = scope;
- this.$confirm("是否下发", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- center: true,
- })
- .then(() => {
- this.axios
- .post(
- "/api/v1/tms/sendShipmentInstructionsStatus/" + instructionsId
- )
- .then(() => {
- this.$message({
- type: "success",
- message: "下发成功!",
- });
- this.option.requestUrl =
- "/api/v1/tms/getShipMentInstructionsList?apiId=74&status=未下发&i=" +
- new Date();
- this.option2.requestUrl =
- "/api/v1/tms/getShipMentInstructionsList?apiId=74&status=已下发&i=" +
- new Date();
- });
- })
- .catch(() => {
- this.$message({
- type: "info",
- message: "取消下发!",
- });
- });
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .shipTransport {
- .top {
- padding: 1.25rem 0.375rem;
- .el-input {
- width: 20%;
- margin-right: 40rpx;
- }
- .btn {
- width: 12%;
- margin-left: 0.25rem;
- }
- }
- }
- </style>
|