dydjbInfo.vue 1.5 KB
<template>
  <div>
    <el-form :model="ruleForm" label-width="120px">
      <el-row>
        <el-col :span="6">
          <el-form-item label="查询时间:">
            <!-- <el-input disabled v-model="ruleForm.cxlx"></el-input> -->
            {{ ruleForm.cxsj }}
          </el-form-item>
        </el-col>
        <el-col :span="8">
          <el-form-item label="不动产单元号:">
            {{ ruleForm.bdcdyh }}
          </el-form-item>
        </el-col>
      </el-row>
      <el-row>
        <el-col :span="24">
          <table class="table1">
            <tr>
              <td>1</td>
              <td>2</td>
              <td>3</td>
              <td>4</td>
              <td>5</td>
              <td>6</td>
              <td>7</td>
              <td>8</td>
              <td>9</td>
              <td>10</td>
              <td>11</td>

            </tr>
          </table>
        </el-col>
      </el-row>
    </el-form>
  </div>
</template>
  
  <script>
import { getJtfcInfo } from "@/api/sqcxjl";

export default {
  components: {},
  props: ["formData"],

  created() {
    var sqcxdata = this.formData.sqcxdata;
    this.ruleForm = sqcxdata;
  },

  data() {
    return {
      ruleForm: {
        cxsj: "",
        bdcdyh: "",
      },
    };
  },

  mounted() {},

  methods: {},
};
</script>
  <style scoped lang="scss">
@import "~@/styles/mixin.scss";

.table1 {
  border-spacing: 0; 
  border-collapse: collapse;
  width: 100%;
  
}

.table1 td {
  border: 1px solid #acbed1;
  height: 30px;
}
</style>