Blame view

src/views/workflow/components/tdytTable.vue 5.66 KB
xiaomiao committed
1 2 3
<!--
 * @Description:
 * @Autor: renchao
4
 * @LastEditTime: 2023-07-11 09:14:44
xiaomiao committed
5 6 7
-->
<template>
  <div>
xiaomiao committed
8 9 10
    <el-table
      :data="tableDataList"
      border
xiaomiao committed
11 12
      :pagination="false"
      :key="key"
13
      :header-cell-style="{'text-align':'center'}"
xiaomiao committed
14 15
      :heightNumSetting="true"
      :minHeight="150"
xiaomiao committed
16
      height="150"
17
      style="width: 100%">
xiaomiao committed
18 19 20
      <el-table-column
        prop="index"
        width="50"
21
        :render-header="renderHeader">
xiaomiao committed
22 23 24
        <template slot-scope="scope">
          <i
            class="el-icon-minus pointer"
25
            @click="deleClick(scope.$index, scope.row)"></i>
xiaomiao committed
26 27 28 29
        </template>
      </el-table-column>
      <el-table-column prop="yt" label="土地用途" min-width="100">
        <template slot-scope="scope">
30 31 32 33 34 35 36 37 38
          <treeselect
            v-model="tdyt"
            :disabled="disabled"
            noOptionsText="暂无数据"
            :show-count="true"
            :options="dictData['tdyt']"
            :normalizer="normalizer"
            :appendToBody="true" z-index="9999"
            @input="addrow(scope.row)" />
xiaomiao committed
39 40 41
        </template>
      </el-table-column>
      <el-table-column prop="qssj" label="土地使用起始时间" min-width="100">
42 43 44 45 46
        <template slot-scope="scope">
          <el-date-picker
            v-model='scope.row.qssj'
            type="date"
            :disabled="disabled"
xiaomiao committed
47 48 49
           placeholder="选择日期"
              value-format="yyyy-MM-dd HH:mm:ss"
              format="yyyy-MM-dd"
50 51
            @blur="addrow(scope.row)">
          </el-date-picker>
xiaomiao committed
52 53 54
        </template>
      </el-table-column>
      <el-table-column prop="jssj" label="土地使用结束时间" min-width="100">
55 56 57 58 59
        <template slot-scope="scope">
          <el-date-picker
            v-model='scope.row.jssj'
            type="date"
            :disabled="disabled"
xiaomiao committed
60 61 62
             placeholder="选择日期"
              value-format="yyyy-MM-dd HH:mm:ss"
              format="yyyy-MM-dd"
63 64
            @blur="addrow(scope.row)">
          </el-date-picker>
xiaomiao committed
65 66 67
        </template>
      </el-table-column>
      <el-table-column prop="syqx" label="土地使用期限" min-width="100">
68
        <template slot-scope="scope">
xiaomiao committed
69 70
          <el-input
            class="item"
71
            :disabled="disabled"
xiaomiao committed
72 73 74
            v-model="scope.row.syqx"
            placeholder="请输入内容"
            @blur="addrow(scope.row)">
75
            ></el-input>
xiaomiao committed
76 77 78
        </template>
      </el-table-column>
    </el-table>
xiaomiao committed
79 80 81
  </div>
</template>
<script>
82 83 84 85
  import { mapGetters } from "vuex";
  export default {
    computed: {
      ...mapGetters(["dictData"]),
xiaomiao committed
86
    },
87 88 89 90 91
    props: {
      tableData: {
        type: Array,
        default: function () {
          return []
xiaomiao committed
92 93
        }
      },
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
      disabled: {
        type: Boolean,
        default: false
      }
    },
    data () {
      return {
        isDisabled: this.disabled,
        // 键名转换,方法默认是label和children进行树状渲染
        tdyt: null,
        key: 0,
        newdata: {
          yt: "",
          qssj: "",
          jssj: "",
          syqx: "",
        },
        tableDataList: [],
        normalizer (node) {
          if (node.children == null || node.children == "null") {
            delete node.children;
xiaomiao committed
115
          }
116 117 118 119 120 121
          return {
            id: node.dcode,
            label: node.dname,
          };
        },
      };
xiaomiao committed
122
    },
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
    watch: {
      tableData: {
        handler: function (val, oldVal) {
          let that = this;
          this.$nextTick(() => {
            if (val.length == 0 || !val) {
              that.tableDataList = _.cloneDeep([
                {
                  yt: "",
                  qssj: "",
                  jssj: "",
                  syqx: "",
                },
              ]);
              if (that.tableDataList.length > 0) {
                this.tdyt = that.tableDataList[0].yt ? that.tableDataList[0].yt : null
              } else {
                this.tdyt = null
              }
            } else {
              that.tableDataList = _.cloneDeep(val);
              if (that.tableDataList.length > 0) {
                this.tdyt = that.tableDataList[0].yt ? that.tableDataList[0].yt : null
              } else {
                this.tdyt = null
              }
            }
          });
        },
        immediate: true,
        deep: true,
      },
xiaomiao committed
155
    },
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
    methods: {
      renderHeader () {
        return (
          <div>
            {" "}
            {this.$route.query.viewtype == 1 ? (
              "序号"
            ) : (
              <i
                class="el-icon-plus pointer"
                onClick={() => {
                  this.addClick();
                }}
              ></i>
            )}
          </div>
        );
      },
      // 修改事件
      addrow () {
xiaomiao committed
176
        this.tableDataList = this.tableDataList.map((item) => {
177 178 179 180 181 182 183 184 185 186
          return {
            ...item,
            yt: this.tdyt
          }
        })
        this.$emit("upDateTdytxxList", this.tableDataList);
      },
      // 新增
      addClick () {
        this.tableDataList[this.tableDataList.length] = _.cloneDeep(this.newdata);
xiaomiao committed
187

188 189
        this.$emit("upDateTdytxxList", this.tableDataList);
      },
xiaomiao committed
190

191 192 193 194 195 196
      // 删除
      deleClick (index, row) {
        this.$confirm("确定要删除吗, 是否继续?", "提示", {
          confirmButtonText: "确定",
          cancelButtonText: "取消",
          type: "warning",
xiaomiao committed
197
        })
198 199 200 201 202
          .then(() => {
            this.tableData.splice(index, 1);
          })
          .catch(() => { });
      },
xiaomiao committed
203
    },
204
  };
xiaomiao committed
205 206
</script>
<style scoped lang="scss">
207 208 209 210 211 212 213
  .el-input {
    border: none !important;
  }
  /deep/.el-table__row {
    border: none !important;
  }
  .el-date-editor.el-input {
xiaomiao committed
214 215
    width: 100%;
  }
xiaomiao committed
216
</style>