cancelClear.vue 2.32 KB
Newer Older
zhoutong's avatar
zhoutong committed
1 2 3 4 5
<template>
  <div class="shipping-update-error">
    <div class="message-title">{{$t(`您确定撤销${cancelClearInfo.orderNo}已清关状态吗?`)}}</div>
    <el-form ref="arrivalForm" :rules="rules" :model="cusClearanceObj" label-width="120px">
      <el-form-item :label="$t('撤销理由')" prop="clEstTime">
6 7 8 9
        <el-input v-if="flag" v-model="cusClearanceObj.applyReason" type="textarea" :rows="4"></el-input>
        <template v-else>
          {{apply.applyReason}}
        </template>
zhoutong's avatar
zhoutong committed
10 11 12 13
      </el-form-item>
    </el-form>

    <el-row class="operate-button">
14 15
      <el-button v-if="flag" type="primary" @click="onSubmit">{{$t('确定')}}</el-button>
      <el-button v-if="!flag" type="primary" @click="$router.push({path: '/bpm/process-instance/detail', query: {id: apply.bpmProcessId}})">{{$t('审核中')}}</el-button>
zhoutong's avatar
zhoutong committed
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
      <el-button @click="cancel">{{$t('取消')}}</el-button>
    </el-row>
  </div>
</template>

<script>
import { approvalCreate } from "@/api/ecw/boxSea";

export default {
  name: "updateError",
  inheritAttrs: false,
  components: {},
  props: {
    shipmentObj: Object,
    cancelClearInfo: Object,
  },
  data() {
    return {
      // 到港对象
      cusClearanceObj: {},
      // 校验
      rules: {
        applyReason: [
          { required: true, message: this.$t("必填"), trigger: "change" },
        ]
41 42 43
      },
      apply: {},
      flag: true
zhoutong's avatar
zhoutong committed
44 45
    };
  },
46 47 48 49 50 51 52 53
  created() {
    let orders = this.shipmentObj.clearanceInfo?.clearanceOrderBackList
    let order = orders.find(item=>item.orderId == this.cancelClearInfo.orderId)
    if(order){
      this.apply = order
      this.flag = false
    }
  },
zhoutong's avatar
zhoutong committed
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
  methods: {
    onSubmit() {
      this.$refs["arrivalForm"].validate((valid) => {
        if (valid) {
          approvalCreate({
            shipmentId: this.shipmentObj.id,
            approvalStatus: 0,
            approvalType: 21,
            orderId: this.cancelClearInfo.orderId,
            applyReason: this.cusClearanceObj.applyReason
          }).then(()=>{
              this.$message.success("成功");
              this.cancel()
            })
        }
      });
    },
    cancel() {
      this.$emit("closeDialog");
    },
  },
};
</script>

<style lang="scss" scoped>
.shipping-update-error {
  .message-title {
    text-align: center;
    font-size: 20px;
    margin: 0 20px 10px;
  }
}
</style>