123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- <template>
- <!-- 修改装船指令 -->
- <div class="shipTransport">
- <page-title>返回</page-title>
- <div class="form">
- <div class="form_box">
- <dil-form :formId="114" v-model="form1" ref="from1"></dil-form>
- </div>
- </div>
- <!-- 确定和取消 -->
- <div class="button_box">
- <el-button type="primary" @click="onClickConfirm">确认</el-button>
- <el-button @click="onClickCancel">返回</el-button>
- </div>
- </div>
- </template>
- <script>
- import PageTitle from "@/components/Page/Title";
- import { sjTime } from "@/utils/sharedJsFile";
- export default {
- components: { PageTitle },
- data() {
- return {
- form1: {},
- };
- },
- mounted() {
- this.information();
- },
- methods: {
- information() {
- //编辑装船指令
- this.axios
- .post(
- "/api/v1/tms/getShipmentInstructions/" +
- this.$route.params.instructionsId
- )
- .then((res) => {
- res.data.data.forEach((e) => {
- this.form1 = e;
- });
- });
- },
- handleCheckedCitiesChange(value) {
- console.log(value);
- },
- // 返回
- onClickCancel() {
- this.$router.go(-1);
- },
- currentRadioChange(row) {
- this.aaaa = row;
- },
- // 确认
- onClickConfirm() {
- let omsshipShipmentInstructions = {
- shipmentInstructionsId: this.$route.params.instructionsId,
- // batchId: this.form1.batchId,
- instructionsTotalTonnage: this.form1.instructionsTotalTonnage,
- instructionTime: sjTime(this.form1.instructionTime),
- };
- //判断合计吨位是否为数字
- function isNumber() {
- var value = omsshipShipmentInstructions.instructionsTotalTonnage;
- //验证是否为数字
- var patrn = /^(-)?\d+(\.\d+)?$/;
- if (patrn.exec(value) == null || value == "") {
- return false;
- } else {
- return true;
- }
- }
- var val = this.value;
-
- if (
- omsshipShipmentInstructions.instructionsTotalTonnage == null ||
- omsshipShipmentInstructions.instructionTime==null
- )
- this.$message.error("存在空值!");
- else if (!isNumber(val)) this.$message.warning("合计吨位请填写数字");
- else
- this.axios
- .post(
- "/api/v1/tms/updateShipmentInstructions",
- omsshipShipmentInstructions
- )
- .then((res) => {
- if (res.data.code == 200) {
- this.$message({
- type: "success",
- message: "修改成功!",
- });
- // this.$refs.table.refreshData();
- this.$router.go(-1);
- } else {
- this.$message.error("修改失败!");
- }
- this.$refs["table"].resetField();
- });
- },
- },
- };
- </script>
- <style lang="scss">
- .shipTransport {
- .form {
- display: flex;
- .form_box {
- width: 320px;
- margin-left: 35%;
- margin-top: 30px;
- margin-right: 20px;
- .el-form {
- .preview-group {
- .el-form-item {
- .el-form-item__label {
- display: inline-block;
- width: 70px !important;
- }
- .el-form-item__content {
- .el-select {
- width: 250px;
- }
- .el-input {
- width: 250px;
- }
- }
- }
- }
- }
- }
- }
- .button_box {
- margin-left: 45%;
- }
- }
- </style>
|