Blame view

src/views/system/sqywgz/components/clgzsd.vue 7.23 KB
1
<!--
2 3 4
 * @Description: 登记情形设定
 * @Autor: renchao
 * @LastEditTime: 2023-07-19 14:09:47
5 6
-->
<template>
任超 committed
7 8
  <div>
    <el-form :model="ruleForm">
9 10 11 12
      <el-row>
        <el-col :span="5">
          <el-form-item label="登记业务编码">
            {{ ruleForm.djywbm }}
13 14
          </el-form-item>
        </el-col>
15 16 17
        <el-col :span="12">
          <el-form-item label="登记业务名称">
            {{ ruleForm.djywmc }}
18 19 20 21
          </el-form-item>
        </el-col>
      </el-row>
    </el-form>
任超 committed
22
    <lb-table :column="column" border :key="key" heightNumSetting :pagination="false" :data="tableData">
23 24 25 26
    </lb-table>
  </div>
</template>
<script>
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
  import { mapGetters } from 'vuex'
  import { upward, down } from '@/utils/operation'
  export default {
    props: {
      ruleForm: {
        type: Object, default: {}
      },
      clzt: {
        type: Array, default: () => {
          return []
        }
      },
      djqx: {
        type: Array, default: () => {
          return []
        }
任超 committed
43 44
      }
    },
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
    computed: {
      ...mapGetters(['dictData'])
    },
    data () {
      return {
        key: 0,
        column: [
          {
            width: '60',
            renderHeader: (h, scope) => {
              return <i class="el-icon-plus pointer" onClick={() => { this.handleAdd() }} style="color:#409EFF"></i>
            },
            render: (h, scope) => {
              return (
                <i class="el-icon-minus pointer" onClick={() => { this.handleMinus(scope.$index, scope.row) }}></i>
              )
            }
62
          },
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 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 155 156 157 158 159 160 161
          {
            width: '60',
            label: '序号',
            type: 'index'
          },
          {
            label: '是否必填',
            width: '130',
            render: (h, scope) => {
              return (
                <el-radio-group v-model={scope.row.isrequired} onChange={(val) => { scope.row[scope.column.property] = val }}>
                  <el-radio label={'1'}></el-radio>
                  <el-radio label={'0'}></el-radio>
                </el-radio-group>
              )
            }
          },
          {
            prop: 'clbm',
            label: '材料编码',
            width: '100',
            render: (h, scope) => {
              return (
                <el-input placeholder="材料编码" value={scope.row[scope.column.property]}
                  onInput={(val) => { scope.row[scope.column.property] = val }} maxlength="8"></el-input>
              )
            }
          },
          {
            prop: 'clmc',
            label: '材料名称',
            render: (h, scope) => {
              return (
                <el-input placeholder="材料名称" value={scope.row[scope.column.property]}
                  onInput={(val) => { scope.row[scope.column.property] = val }}></el-input>
              )
            }
          },
          {
            prop: 'cllx',
            label: '材料类型',
            width: '115',
            render: (h, scope) => {
              return (
                <el-select value={scope.row[scope.column.property]}
                  onChange={(val) => { scope.row[scope.column.property] = val }} clearable>
                  {
                    this.dictData['A40'].map(option => {
                      return (
                        <el-option label={option.dname} value={option.dcode}></el-option>
                      )
                    })
                  }
                </el-select>
              )
            }
          },
          {
            label: '是否公共材料',
            width: '100',
            render: (h, scope) => {
              return (
                <el-radio-group v-model={scope.row.sfggcl} onChange={(val) => { scope.row[scope.column.property] = val; this.handleSelectGgcl(scope.row) }}>
                  <el-radio label={'1'}></el-radio>
                  <el-radio label={'0'}></el-radio>
                </el-radio-group>
              )
            }
          },
          {
            prop: 'djqxbm',
            label: '登记情形',
            width: '180',
            render: (h, scope) => {
              return (
                <el-select disabled={scope.row.sfggcl == '1'} value={scope.row[scope.column.property]}
                  onChange={(val) => { scope.row[scope.column.property] = val }} clearable>
                  {
                    this.djqx.map(option => {
                      return (
                        <el-option label={option.nodename} value={option.nodecode}></el-option>
                      )
                    })
                  }
                </el-select>
              )
            }
          },
          {
            label: '移动',
            width: '90',
            render: (h, scope) => {
              return (
                <div>
                  <el-button type='text' disabled={scope.$index == 0} onClick={() => { this.moveUpward(scope.$index, scope.row) }}>上移</el-button>
                  <el-button type='text' disabled={(scope.$index + 1) == this.tableData.length} onClick={() => { this.moveDown(scope.$index, scope.row) }}>下移</el-button >
                </div>
              )
            }
任超 committed
162
          }
163 164 165 166 167 168 169 170 171
        ],
        tableData: []
      }
    },
    watch: {
      tableData: {
        handler (newValue, oldValue) {
          if (!_.isEqual(newValue, this.clzt)) {
            this.$emit('updateValue', newValue)
任超 committed
172 173
          }
        },
174 175 176 177 178
        deep: true
      },
      clzt: {
        handler: function (newValue) {
          this.tableData = _.cloneDeep(newValue)
179
        },
180
        deep: true
181
      },
任超 committed
182
    },
183
    methods: {
yuanbo committed
184 185 186 187
      /**
       * @description: handleAdd
       * @author: renchao
       */
188 189 190 191 192 193 194 195 196 197 198 199
      handleAdd () {
        this.tableData.push(
          {
            isrequired: '1',
            djqxbm: '',
            clbm: '',
            clmc: '',
            cllx: '',
            sfggcl: '1'
          }
        )
        this.key++
任超 committed
200
      },
yuanbo committed
201 202 203 204 205
      /**
       * @description: handleSelectGgcl
       * @param {*} item
       * @author: renchao
       */
206 207 208
      handleSelectGgcl (item) {
        if (item.sfggcl == '1') {
          item.djqxbm = ''
209
        }
210
      },
yuanbo committed
211 212 213 214 215 216
      /**
       * @description: handleMinus
       * @param {*} index
       * @param {*} row
       * @author: renchao
       */
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
      handleMinus (index, row) {
        this.$confirm('此操作将永久删除, 是否继续?', '提示', {
          confirmButtonText: '确定',
          cancelButtonText: '取消',
          type: 'warning'
        }).then(() => {
          this.tableData.splice(index, 1)
          this.$message({
            type: 'success',
            message: '删除成功!'
          });
        }).catch(() => {
          this.$message({
            type: 'info',
            message: '已取消删除'
          });
233
        });
234 235
      },
      // 上移下移
yuanbo committed
236 237 238 239 240 241
      /**
       * @description: 上移下移
       * @param {*} index
       * @param {*} row
       * @author: renchao
       */
242 243 244
      moveUpward (index, row) {
        upward(index, this.tableData)
      },
yuanbo committed
245 246 247 248 249 250
      /**
       * @description: moveDown
       * @param {*} index
       * @param {*} row
       * @author: renchao
       */
251 252 253 254
      moveDown (index, row) {
        down(index, this.tableData)
      },
    }
255 256 257
  }
</script>
<style scoped lang='scss'>
yuanbo committed
258
</style>