KuaidiImportModal.vue 3.16 KB
<template>
  <j-modal
    :title="title"
    :width="width"
    :visible="visible"
    :confirmLoading="confirmLoading"
    switchFullscreen
    @ok="handleOk"
    @cancel="handleCancel"
    cancelText="关闭">
    <a-spin :spinning="confirmLoading">
      <a-form-model ref="form" :model="model" :rules="validatorRules">
        <a-row>
          <a-col :span="24" >
            <a-input v-model="model.orderBill" hidden ></a-input>
          </a-col>
          <a-col :span="24">
            <a-select @change=""  placeholder="请选择快递公司"
                      v-model="model.kuaidiCom">
              <a-icon slot="suffixIcon" type="gold"/>
              <a-select-option v-for="d in kuaidiComList" :key="d.value" :value="d.value">
                {{ d.remark }}
              </a-select-option>
            </a-select>
          </a-col>
        </a-row>
      </a-form-model>
    </a-spin>
  </j-modal>
</template>

<script>

import {httpAction} from '@/api/manage'
import {validateDuplicateValue} from '@/utils/util'
import {getKuaidiConfig, importKDS} from '@/api/api'

export default {
  name: "KuaidiImportModal",
  components: {},
  data() {
    return {
      spinning: true,
      loading: true,
      showPrise: false,
      title: "操作",
      width: 500,
      visible: false,
      model: {},
      labelCol: {
        xs: {span: 24},
        sm: {span: 5},
      },
      wrapperCol: {
        xs: {span: 24},
        sm: {span: 16},
      },
      kuaidiComList: [],
      confirmLoading: false,
      validatorRules: {
        orderBill: [
          {required: true, message: '请输入U8出库单单号!'},
        ],
        sourceCode: [
          {required: true, message: '请输入U8发货单单号!'},
        ],
      },
      url: {
      }

    }
  },
  created() {
    //备份model原始值
    this.modelDefault = JSON.parse(JSON.stringify(this.model));
    getKuaidiConfig(this.model).then((res) => {
      if (res.success) {
        this.kuaidiComList=res.result

      } else {
        this.$message.warning(res.message);
      }
    }).finally(() => {
      this.confirmLoading = false;
      this.close();
    })
    this.departList =[];

  },
  methods: {
    add() {
      this.edit(this.modelDefault);
    },
    edit(orderBills) {
      // console.log('orderBills=========',orderBills)
      this.visible = true;
      this.model.orderBill=orderBills;
    },

    close() {
      this.$emit('close');
      this.visible = false;
      // this.$refs.form.clearValidate();
    },
    handleOk() {
      const that = this;
      // 触发表单验证
      this.$refs.form.validate(valid => {
        if (valid) {
          that.confirmLoading = true;
          importKDS(this.model).then((res) => {
            if (res.success) {
              that.$message.success(res.message);
              that.$emit('ok');
              that.model.containerCode = '';
            } else {
              that.$message.warning(res.message);
            }
          }).finally(() => {
            that.confirmLoading = false;
            that.close();
          })
        } else {
          return false
        }
      })
    },
    handleCancel() {
      this.close()
    },


  }
}
</script>