| | |
| | | <template> |
| | | <div> |
| | | <avue-crud |
| | | ref="crud" |
| | | class="l-mes" |
| | | rowKey="oneId" |
| | | :data="tableData" |
| | | :option="option" |
| | | :span-method="spanMethod" |
| | | :page="page" |
| | | :table-loading="loading" |
| | | > |
| | | <avue-crud ref="crud" class="l-mes" rowKey="oneId" :data="tableData" :option="option" :span-method="spanMethod" |
| | | :page="page" :table-loading="loading"> |
| | | <template slot="code" slot-scope="scope"> |
| | | <avue-text-ellipsis use-tooltip :text="scope.row.code" :height="40" :width="100"> |
| | | <small slot="more">...</small> |
| | |
| | | <el-input @blur="checkType(scope.row)" :disabled="routingTemplateId!=null" :placeholder="'请输入'+scope.row.paramType" v-model="scope.row.paramValue"/> |
| | | </template> |
| | | </avue-crud> |
| | | <!-- <el-table :data="tableData" ref="commonTree" :span-method="objectSpanMethod" border row-key="id" style="width: 100%"> |
| | | <el-table-column prop="code" label="编码"></el-table-column> |
| | | <el-table-column prop="paramItem" label="一级"></el-table-column> |
| | | <el-table-column prop="paramItemTwo" label="二级"></el-table-column> |
| | | <el-table-column prop="paramItemThree" label="三级"></el-table-column> |
| | | <el-table-column prop="paramType" label="类型"></el-table-column> |
| | | <el-table-column prop="paramValue" label="值"></el-table-column> |
| | | <el-table-column prop="unit" label="单位"></el-table-column> |
| | | </el-table> --> |
| | | </div> |
| | | </template> |
| | | |
| | | <script> |
| | | export default { |
| | | // props: ["tableTreeData"], |
| | | data() { |
| | | return { |
| | | checkType(row) { |
| | | if (row.paramType == '数值格式') { |
| | | let val = row.paramValue |
| | | const reg = /^[0-9]*$/ |
| | | if (!reg.test(val)) { |
| | | row.paramValue = '' |
| | | this.$message.warning("请输入数值格式的数据!") |
| | | } |
| | | } |
| | | }, |
| | | mergeObj: {}, |
| | | mergeArr: ['code','paramItem', 'paramItemTwo',], |
| | | tableData: [], |
| | | // routingTemplateId: null |
| | | } |
| | | }, |
| | | props:{ |
| | | option:{ |
| | | type: Object, |
| | |
| | | } |
| | | } |
| | | }, |
| | | tableData:{ |
| | | tableTreeData: { |
| | | type: Array, |
| | | default: () => { |
| | | return [] |
| | |
| | | } |
| | | } |
| | | }, |
| | | watch:{ |
| | | tableTreeData:{ |
| | | handler(old,newval){ |
| | | console.log(this.tableTreeData); |
| | | this.tableData=JSON.parse(JSON.stringify(this.tableTreeData)) |
| | | // this.getSpanArr(this.tableData); |
| | | this.rowSort() |
| | | this.rowCalc() |
| | | }, |
| | | deep: true |
| | | } |
| | | }, |
| | | created(){ |
| | | // this.$nextTick(() => { |
| | | // this.$refs.crud.doLayout() |
| | | // }) |
| | | this.tableData=JSON.parse(JSON.stringify(this.tableTreeData)) |
| | | this.rowSort() |
| | | this.rowCalc() |
| | | }, |
| | |
| | | //动态合并方法 |
| | | rowCalc() { |
| | | this.spanArr.forEach((ele, index) => { |
| | | let parent |
| | | let parent = null |
| | | if (index !== 0) parent = this.spanArr[ele.parent || index - 1].span |
| | | ele.span = this.rowSpan(ele.prop, parent) |
| | | }) |