addDialog.vue 7.11 KB
<template>
  <dialogBox title="证书入库" @submitForm="submitForm"  saveButton="保存" width="45%"  @closeDialog="closeDialog" v-model="value">
    <div>
        <el-form ref="ruleForm" :model="ruleForm" label-width="100px" :rules="rules">
          <el-row>
            <el-col :span="12">
              <el-form-item label="入库编号:" prop="batchno">
                    <el-input v-model="ruleForm.batchno" :disabled="true"></el-input>
                </el-form-item>
            </el-col>
            <el-col :span="12">
              <el-form-item label="登记机构:" prop="djjg">
                    <el-select v-model="ruleForm.djjg" placeholder="请选择">
                        <el-option v-for="item in dictData['ywly']" :key="item.dname" :label="item.dname" :value="item.dname"></el-option>
                    </el-select>
                </el-form-item>
            </el-col>
          </el-row>
          <el-row>
            <el-col :span="12">
              <el-form-item label="入库人员:" prop="rkry">
                    <el-input v-model="ruleForm.rkry" :disabled="true"></el-input>
                </el-form-item>
            </el-col>
            <el-col :span="12">
              <el-form-item label="入库时间:" prop="rksj">
                    <el-date-picker v-model="ruleForm.rksj" type="datetime" placeholder="选择日期时间"></el-date-picker>
                </el-form-item>
            </el-col>
          </el-row>
            <div>
              <el-table :data="tableForm" border style="width: 100%" :header-cell-style="{'text-align':'center',background: 'rgb(236, 245, 255)'}" :cell-style="{'text-align':'center'}">
                  <el-table-column prop="name" label="纸质证书类型" width="200"></el-table-column>
                  <el-table-column prop="ksysxlh" label="开始印刷序列号" width="200">
                    <template slot-scope="scope">
                      <el-input v-model="scope.row.ksysxlh" @blur="ysxlhDeal(scope.row)" maxlength="11"
                       oninput="value=value.replace(/[^\d.]/g,'')" ></el-input>
                    </template>
                  </el-table-column>
                  <el-table-column prop="jsysxlh" label="结束印刷序列号" width="200">
                    <template slot-scope="scope">
                      <el-input v-model="scope.row.jsysxlh" @blur="ysxlhDeal(scope.row)" maxlength="11"
                       oninput="value=value.replace(/[^\d.]/g,'')" ></el-input>
                    </template>
                  </el-table-column>
                  <el-table-column prop="bs" label="本数">
                    <template slot-scope="scope">
                      <span v-if="scope.row.bs == 0" style="color:red">系统计算</span>
                      <span v-else-if="scope.row.bs < 0" style="color:red">印刷序列号有误</span>
                      <span v-else>{{scope.row.bs}}</span>
                    </template>
                  </el-table-column>
              </el-table>
            </div>
             <el-form-item label="备注" style="margin-top:20px">
                <el-input type="textarea" v-model="ruleForm.bz" :rows="4"></el-input>
             </el-form-item>
        </el-form>
    </div>
  </dialogBox>
</template>

<script>
import { mapGetters } from 'vuex'
import { getSysSerialSingle,zsrk} from "@/api/zsgl.js"
export default {
  components: {
  },
  computed: {
    ...mapGetters(['dictData']),
  },
  props: {
    value: { type: Boolean, default: false },
  },
  data () {
    return {
      //表单提交数据
      ruleForm: {
          batchno: '',
          djjg: '',
          rkry: '超级管理员',
          rksj: '',
          bz: '',
          zsstarno: '',
          zsendno: '',
          zsnum: '',
          zmstarno: '',
          zmendno: '',
          zmnum: ''
        },
      //表格数据
      tableForm: [
        {
          name: '不动产权证书',
          ksysxlh: '',
          jsysxlh: '',
          bs: 0,
          zslx:1
        },
        {
          name: '不动产权登记证明',
          ksysxlh: '',
          jsysxlh: '',
          bs: 0,
          zslx:2
        }
      ],  
      //证书入库业务号参数
      ywhQueryForm: {
        serialtype: 'zsrkbh',
        serialname: '证书入库编号',
        serialcode: 'zsrk',
        digit: '5'
      },
      rules: {
          batchNo: [
            { required: true, message: '入库编号不能为空', trigger: 'blur' }
          ],
          djjg: [
            { required: true, message: '请选择登记机构', trigger: 'change' }
          ],
          rkry: [
            { required: true, message: '入库人员不能为空', trigger: 'blur' }
          ],
          rksj: [
            { required: true, message: '请选择入库时间', trigger: 'change' }
          ],
        },
    }
  },
  methods: {
    //表单提交
    submitForm () {
      this.tableForm.forEach((item,index)=>{  
          if(item.bs < 0){
              return;
          }
      })
      zsrk(this.ruleForm).then(res => {
        if(res.code == 200){
          this.$message.success('保存成功')
          this.$emit("input", false);
          this.ruleForm = {};
          this.resetTableFields();
          this.$parent.fetchData();
        }else{
          this.$message.error(res.message);
        }
      })
    },
    //序列号获取
    ywhSerial(){
      getSysSerialSingle(this.ywhQueryForm).then(res => {
        if(res.code == 200){
            this.ruleForm.batchno = res.message;
        }
      })
    },
    //印刷序列号处理
    ysxlhDeal(item){
      if(item.ksysxlh && item.jsysxlh){
        if(item.ksysxlh.length == item.jsysxlh.length){
          if(item.ksysxlh.length != 11){
            item.bs = -1;
            return;
          }
          if(item.ksysxlh > item.jsysxlh){
            item.bs = -1;
            return;
          }
          item.bs = item.jsysxlh - item.ksysxlh + 1;
          if(item.zslx == 1){
            this.ruleForm.zsstarno = item.ksysxlh;
            this.ruleForm.zsendno = item.jsysxlh;
            this.ruleForm.zsnum = item.bs
          }else if(item.zslx == 2){
            this.ruleForm.zmstarno = item.ksysxlh;
            this.ruleForm.zmendno = item.jsysxlh;
            this.ruleForm.zmnum = item.bs
          }
        }else{
          item.bs = -1;
        }
      }else{
        item.bs = 0;
        if(item.zslx == 1){
            this.ruleForm.zsstarno = '';
            this.ruleForm.zsendno = '';
            this.ruleForm.zsnum = item.bs
          }else if(item.zslx == 2){
            this.ruleForm.zmstarno = '';
            this.ruleForm.zmendno = '';
            this.ruleForm.zmnum = item.bs
          }
      }
    },
    resetTableFields() {
      this.tableForm = [
        {
          name: '不动产权证书',
          ksysxlh: '',
          jsysxlh: '',
          bs: 0,
          zslx:1
        },
        {
          name: '不动产权登记证明',
          ksysxlh: '',
          jsysxlh: '',
          bs: 0,
          zslx:2
        }
      ]
    },
    closeDialog () {
      this.$emit("input", false);
    },
  }
}
</script>
<style scoped lang="scss">
@import "~@/styles/mixin.scss";

</style>