Blame view

src/components/Business/djfDjSz.vue 6.3 KB
yangwei committed
1 2 3 4 5 6 7 8 9 10 11 12 13
<template>
  <div class="certificateInfo itemForm">
    <el-form :model="certificateInfo" :rules="rules" ref="formList" label-width="100px" :key="key">
      <div v-for="(item, index) in certificateInfo.ruleForm" :key="index" class="obligee-item">
        <p class="obligee-item-name">善证信息{{ index + 1 }}</p>
        <div class="obligee-item-list">
          <el-row>
            <el-col :span="8">
              <el-form-item :prop="'ruleForm.' + index + '.YSDM'">
                <span slot="label">
                  要素代码: <br />
                  <p class="label-detail">(YSDM)</p>
                </span>
14 15
                <el-input :disabled="$store.state.business.Edit" v-model="certificateInfo.ruleForm[index].YSDM">
                </el-input>
yangwei committed
16 17 18 19 20 21 22 23 24
              </el-form-item>
            </el-col>

            <el-col :span="8">
              <el-form-item :prop="'ruleForm.' + index + '.YWH'">
                <span slot="label">
                  业务号: <br />
                  <p class="label-detail">(YWH)</p>
                </span>
25 26
                <el-input :disabled="$store.state.business.Edit" v-model="certificateInfo.ruleForm[index].YWH">
                </el-input>
yangwei committed
27 28 29 30 31 32 33 34 35
              </el-form-item>
            </el-col>

            <el-col :span="8">
              <el-form-item :prop="'ruleForm.' + index + '.SZMC'">
                <span slot="label">
                  缮证名称: <br />
                  <p class="label-detail">(SZMC)</p>
                </span>
36 37
                <el-input :disabled="$store.state.business.Edit" v-model="certificateInfo.ruleForm[index].SZMC">
                </el-input>
yangwei committed
38 39 40 41 42 43 44 45 46 47 48
              </el-form-item>
            </el-col>
          </el-row>

          <el-row>
            <el-col :span="8">
              <el-form-item :prop="'ruleForm.' + index + '.SZZH'">
                <span slot="label">
                  缮证证号: <br />
                  <p class="label-detail">(SZZH)</p>
                </span>
49 50
                <el-input :disabled="$store.state.business.Edit" v-model="certificateInfo.ruleForm[index].SZZH">
                </el-input>
yangwei committed
51 52 53 54 55 56 57 58 59
              </el-form-item>
            </el-col>

            <el-col :span="8">
              <el-form-item :prop="'ruleForm.' + index + '.YSXLH'">
                <span slot="label">
                  印刷序列号: <br />
                  <p class="label-detail">(YSXLH)</p>
                </span>
60 61
                <el-input :disabled="$store.state.business.Edit" v-model="certificateInfo.ruleForm[index].YSXLH">
                </el-input>
yangwei committed
62 63 64 65 66 67 68 69 70
              </el-form-item>
            </el-col>

            <el-col :span="8">
              <el-form-item :prop="'ruleForm.' + index + '.SZRY'">
                <span slot="label">
                  缮证人员: <br />
                  <p class="label-detail">(SZRY)</p>
                </span>
71 72
                <el-input :disabled="$store.state.business.Edit" v-model="certificateInfo.ruleForm[index].SZRY">
                </el-input>
yangwei committed
73 74 75 76 77 78 79 80 81 82 83
              </el-form-item>
            </el-col>
          </el-row>

          <el-row>
            <el-col :span="8">
              <el-form-item :prop="'ruleForm.' + index + '.SZSJ'">
                <span slot="label">
                  缮证时间: <br />
                  <p class="label-detail">(SZSJ)</p>
                </span>
84
                <el-date-picker :disabled="$store.state.business.Edit" type="datetime" clearable
yangwei committed
85 86 87 88 89 90 91 92 93 94 95
                  v-model="certificateInfo.ruleForm[index].SZSJ" value-format="yyyy-MM-dd HH:mm:ss">
                </el-date-picker>
              </el-form-item>
            </el-col>

            <el-col :span="8">
              <el-form-item :prop="'ruleForm.' + index + '.BZ'">
                <span slot="label">
                  备注: <br />
                  <p class="label-detail">(BZ)</p>
                </span>
96 97
                <el-input :disabled="$store.state.business.Edit" v-model="certificateInfo.ruleForm[index].BZ">
                </el-input>
yangwei committed
98 99 100 101 102 103 104 105 106
              </el-form-item>
            </el-col>

            <el-col :span="8">
              <el-form-item :prop="'ruleForm.' + index + '.QXDM'">
                <span slot="label">
                  区县代码: <br />
                  <p class="label-detail">(QXDM)</p>
                </span>
107 108
                <el-input :disabled="$store.state.business.Edit" v-model="certificateInfo.ruleForm[index].QXDM">
                </el-input>
yangwei committed
109 110 111 112 113 114 115 116 117 118
              </el-form-item>
            </el-col>
          </el-row>
        </div>
      </div>
    </el-form>
    <message-tips ref="msg" />
  </div>
</template>
<script>
119 120
import djfDjSz from "@/api/djfDjSz";
import ruleMixin from "@/mixins/ruleMixin.js";
yangwei committed
121 122 123 124 125 126
// 缮证信息
export default {
  mixins: [ruleMixin],
  props: {
    bsmSjsb: {
      type: String,
127
      default: "",
yangwei committed
128 129 130
    },
    bsmYwsjb: {
      type: String,
131 132
      default: "",
    },
yangwei committed
133
  },
134
  data() {
yangwei committed
135 136
    return {
      certificateInfo: {
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
        ruleForm: [
          {
            YSDM: "",
            YWH: "",
            SZMC: "",
            SZZH: "",
            YSXLH: "",
            SZRY: "",
            SZSJ: "",
            BZ: "",
            QXDM: "",
          },
        ],
      },
    };
yangwei committed
152 153
  },
  methods: {
154
    async featchData() {
yangwei committed
155
      try {
156
        let { result: res } = await djfDjSz.getDjfDjSzById(this.bsmSjsb);
yangwei committed
157 158 159
        this.certificateInfo.ruleForm = res;
        //this.featchRule()
      } catch (error) {
160
        this.$refs.msg.messageShow();
yangwei committed
161 162
      }
    },
163
    handleUpdateForm() {
yangwei committed
164 165
      return new Promise(async (resolve) => {
        try {
166
          let res = await djfDjSz.updateDjfDjSz(this.certificateInfo.ruleForm);
yangwei committed
167
          // this.$refs['formList'].resetFields();
168
          resolve(res.code);
yangwei committed
169
        } catch (error) {
170
          this.$refs.msg.messageShow();
yangwei committed
171
        }
172 173 174 175
      });
    },
  },
};
yangwei committed
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
</script>
<style scoped lang="scss">
@import "./css/itemForm.scss";

.obligee-item {
  display: flex;
  height: 100%;
  margin-bottom: 15px;
  margin-right: 5px;

  &-name {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    padding: 10px 20px;
    line-height: 28px;
    border: 1px solid #ccc;
    margin-right: 15px;
    border-radius: 3px;
  }

  &-list {
    width: 100%;
    flex: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}
</style>