ReservationSubmissionFormto.vue 11.7 KB
<template>
  <a-spin :spinning="confirmLoading">
    <j-form-container :disabled="formDisabled">
      <a-form-model ref="form" :model="model" :rules="validatorRules" slot="detail">
        <a-row>
          <a-col :span="24" v-if="this.visible == false">
            <a-form-model-item label="预约时间"  :labelCol="labelCol" :wrapperCol="wrapperCol" prop="appointmentTime">
              <j-dict-select-tag type="list" v-model="model.appointmentTime"  v-on:change="changeEvn($event)" dictCode="time" placeholder="请选择预约时间" />
            </a-form-model-item>
          </a-col>

          <a-col :span="24" v-if="this.visible == false">
            <a-form-model-item label="时间段:" :labelCol="labelCol" :wrapperCol="wrapperCol" >
              <a-select  class="extTimeSelection"  placeholder="请选择预约时间段"  v-model="model.timeSelection"  v-on:change="changeEvn2($event)" >
                <a-select-option  v-for="timeSelection in timeSelectionList" :key="timeSelection" :value="timeSelection">{{ timeSelection }}</a-select-option>
              </a-select>
            </a-form-model-item>
          </a-col>


          <a-col :span="24">
            <a-form-model-item label="订单号" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="orderNumber">
              <a-input v-model="model.orderNumber" placeholder="请输入订单号" :disabled="this.visible"  ></a-input>
            </a-form-model-item>
          </a-col>

          <a-col :span="24" v-if="this.visible == false">
            <a-form-model-item label="月台组"  :labelCol="labelCol" :wrapperCol="wrapperCol" prop="railwayPlatform">
              <a-select   placeholder="请选择月台组"  v-model="model.railwayPlatform" >
                <a-select-option  v-for="railwayPlatform in PlatformList" :key="railwayPlatform.name" :value="railwayPlatform.code">{{ railwayPlatform.name}}</a-select-option>
              </a-select>
            </a-form-model-item>
          </a-col>

          <a-col :span="24" v-if="this.visible == true">
            <a-form-model-item label="车牌号" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="carNumber">
              <a-input v-model="model.carNumber" placeholder="请输入车牌号"  @blur.native.capture="carNumberBlur"></a-input>
            </a-form-model-item>
          </a-col>
          <a-col :span="24" v-if="this.visible == true">
            <a-form-model-item label="司机名称" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="driverName">
              <a-input v-model="model.driverName" placeholder="请输入司机名称"  ></a-input>
            </a-form-model-item>
          </a-col>
          <a-col :span="24" v-if="this.visible == true">
            <a-form-model-item label="司机手机号" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="phoneNumber">
              <a-input v-model="model.phoneNumber" placeholder="请输入司机手机号"  ></a-input>
            </a-form-model-item>
          </a-col>
          <a-col :span="24" v-if="this.visible == true">
            <a-form-model-item label="身份证" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="identityCard">
              <a-input v-model="model.identityCard" placeholder="请输入身份证"  ></a-input>
            </a-form-model-item>
          </a-col>
          <a-col :span="24" v-if="this.visible == false">
            <a-form-model-item label="车型" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="vehicle">
              <j-dict-select-tag type="list" v-model="model.vehicle" dictCode="vehicle_table,name,name" placeholder="请选择车型" />
            </a-form-model-item>
          </a-col>
          <a-input  type="hidden" v-model="model.objective=1"></a-input>

          <a-input  type="hidden" v-model="model.reservationMethod='WEB页面'"></a-input>

          <a-col :span="24" v-if="this.visible == false">
            <a-form-model-item label="客户名称" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="customerName">
              <a-input v-model="model.customerName" placeholder="请输入客户名称"  ></a-input>
            </a-form-model-item>
          </a-col>
          <a-col :span="24" v-if="this.visible == false">
            <a-form-model-item label="填表人电话" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="submitPhone">
              <a-input v-model="model.submitPhone" placeholder="请输入填表人电话"  ></a-input>
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
            <a-form-model-item label="备注" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="remark">
              <a-input v-model="model.remark" placeholder="请输入备注"  ></a-input>
            </a-form-model-item>
          </a-col>
        </a-row>
      </a-form-model>
    </j-form-container>
  </a-spin>
</template>

<script>

  import { httpAction, getAction } from '@/api/manage'
  import { validateDuplicateValue } from '@/utils/util'
  import {getSchedulerPrint, Platform, searchTimePeriod} from "../../../../api/api";

  export default {
    name: 'ReservationSubmissionForm',
    components: {
    },
    props: {
      //表单禁用
      disabled: {
        type: Boolean,
        default: false,
        required: false
      }
    },
    data () {
      return {
        timeSelection:'',
        timeSelectionList:[],
        PlatformList:[],
        model:{
          appointmentTime:'',
          orderNumber:'',
          railwayPlatform:'',
          carNumber:'',
          driverName:'',
          phoneNumber:'',
          vehicle:'',
          customerName:'',
          submitPhone:'',
        },
        visible: false,
        labelCol: {
          xs: { span: 24 },
          sm: { span: 5 },
        },
        wrapperCol: {
          xs: { span: 24 },
          sm: { span: 16 },
        },
        confirmLoading: false,
        validatorRules: {
          appointmentTime: [
            { required: true, message: '请输入预约时间!'},
          ],

          orderNumber: [
            { required: true, message: '请输入订单号!'},
            { pattern: /^.{6,18}$/, message: '请输入6到18位任意字符!'},
          ],
          reservationMethod: [
            { required: true, message: '请输入预约形式!'},
          ],
          railwayPlatform:[
            { required: true, message: '请选择月台组!'},
          ],
          phoneNumber: [
          ],
          vehicle:[
            { required: true, message: '请选择车型!'},
          ],
          driverName:[],
          carNumber:[

          ],
          identityCard:[
            { required: true, message: '请输入身份证号!'},
            {
            pattern: /(^[1-9]\d{7}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}$)|(^[1-9]\d{5}(18|19|20)\d{2}((0[1-9])|(1[0-2]))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$)/
          ,message:'请输入正确的身份证格式'}
          ],
          customerName:[{required: true, message: '请输入客户名称!'}],
          submitPhone: [
            { required: true, message: '请输入填表人电话!'},
            { pattern: /^1[3456789]\d{9}$/, message: '请输入正确的手机号码!'},
          ],
        },
        url: {
          add: "/reservationsubmission/reservationSubmission/add",
          // edit: "/reservationsubmission/reservationSubmission/editor",
          edit: "/reservationsubmission/reservationSubmission/edit",
          queryById: "/reservationsubmission/reservationSubmission/queryById",
          getDriverInfo:"/reservationsubmission/reservationSubmission/getDriverInfo"
        }
      }
    },
    computed: {
      formDisabled(){
        return this.disabled
      },
    },
    mounted:function() {
      let id = this.$route.query.id;

      this.PlatformTimeSlot(id);
    },
    created () {
      //备份model原始值
      this.modelDefault = JSON.parse(JSON.stringify(this.model));
    },
    methods: {
      timeSlot(id){
        searchTimePeriod(id).then((res) => {
          this.timeSelectionList=res;

        });
      },

      PlatformTimeSlot(id){
        Platform(id).then((res) => {
          this.PlatformList=res;
        });
      },
      changeEvn(event){
        let tempEl= document.querySelector(".extTimeSelection .ant-select-selection-selected-value");

        if(tempEl!=null && tempEl!=event) tempEl.innerText="";

        this.timeSlot(event)
      },
      changeEvn2(event){

        var str1=event.substring(0, event.indexOf("---"));
        if (event.substring(event.indexOf("预约")+2,event.length-1)==0)
        {
          alert("当前预约次数是不足的,您可以继续预约,不能确保审核通过")
        };
        let els= document.querySelector(".extTimeSelection .ant-select-selection-selected-value");
        if(els!=null)els.innerText=str1;
        this.model.timeSelection=str1;
      },

      add () {
        debugger;
        this.visible = false;
        this.model = Object.assign({}, this.modelDefault);
      },
      edit (record) {
        debugger
        this.model = Object.assign({}, record);
        this.visible = true;
        this.validatorRules.phoneNumber.push({ required: true, message: '请输入司机手机号!'}, { pattern: /^1[3456789]\d{9}$/, message: '请输入正确的手机号码!'},);
        this.validatorRules.driverName.push({required:true, message: "请输入司机名称"});
        this.validatorRules.carNumber.push({ required: true, message: '请输入车牌号!'},
          { pattern: /^([京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领A-Z]{1}[A-Z]{1}(([0-9]{5}[DF])|([DF]([A-HJ-NP-Z0-9])[0-9]{4})))|([京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领A-Z]{1}[A-Z]{1}[A-HJ-NP-Z0-9]{4}[A-HJ-NP-Z0-9挂学警港澳]{1})$/
            , message: '请输入正确的车牌号'});
      },
      carNumberBlur(){
        if (this.model.carNumber != null){
          this.getDriverInfo(this.model.carNumber);
        }
      },
      getDriverInfo(carNumber){
        httpAction(this.url.getDriverInfo, {"carNumber": carNumber}, 'post').then((res) => {
          if (res.success ) {
            if (res.result != null){
              this.model.phoneNumber = res.result.phoneNumber;
              this.model.driverName = res.result.driverName;
              this.model.identityCard = res.result.identityCard;
            }
          } else {
            this.$message.error(res.message);
          }
        }).finally(() => {
          this.confirmLoading = false;
        })
      },
      submitForm () {
        const that = this;
        // 触发表单验证
        this.$refs.form.validate(valid => {
          if (valid) {
            that.confirmLoading = true;
            let httpurl = '';
            let method = '';
            method = 'post';
            if(!this.model.id){
              httpurl+=this.url.add;
            }else{
              httpurl+=this.url.edit;
              method = 'put';
            }
            debugger
            let parameter = {
              "id":this.model.id,
              "carNumber":this.model.carNumber,
              "driverName":this.model.driverName,
              "phoneNumber": this.model.phoneNumber,
              "identityCard":this.model.identityCard,
              "remark":this.model.remark
            }
            httpAction(httpurl,parameter,method).then((res)=>{
              if(res.success){
                if(!this.model.id){
                  that.$message.success("预约成功!");
                }else{
                  that.$message.success("预约信息补充成功!");
                }
                that.$emit('ok');
              }else{
                that.$message.warning(res.message);
              }
            }).finally(() => {
              that.confirmLoading = false;
            })
          }

        })
      },
    }
  }
</script>