9a52bfa0 by tianhaohao@pashanhoo.com

修改规则配置

1 parent b6d582b5
...@@ -107,59 +107,59 @@ class data extends filter { ...@@ -107,59 +107,59 @@ class data extends filter {
107 type: 'index' 107 type: 'index'
108 }, 108 },
109 { 109 {
110 prop: 'nodecode', 110 prop: 'djywbm',
111 label: '权利类型代码',
111 width: '105', 112 width: '105',
112 label: '登记情形编码', 113 // render: (h, scope) => {
113 render: (h, scope) => { 114 // return (
114 return ( 115 // <el-input placeholder="权利类型代码" value={scope.row[scope.column.property]} onInput={(val) => { scope.row[scope.column.property] = val; orderNoChange() }}></el-input>
115 <el-input placeholder="登记情形编码" value={scope.row[scope.column.property]} 116 // )
116 onInput={(val) => { scope.row[scope.column.property] = val; vm.orderNoChange() }} maxlength="8"> 117 // }
117 </el-input>
118 )
119 }
120 }, 118 },
121 { 119 {
122 prop: 'nodename', 120 prop: 'djywmc',
123 label: '登记情形名称', 121 label: '权利类型名称',
124 render: (h, scope) => { 122 // render: (h, scope) => {
125 return ( 123 // return (
126 <el-input placeholder="登记情形名称" value={scope.row[scope.column.property]} 124 // <el-input placeholder="权利类型名称" value={scope.row[scope.column.property]} onInput={(val) => { scope.row[scope.column.property] = val; orderNoChange() }}></el-input>
127 onInput={(val) => { scope.row[scope.column.property] = val; vm.orderNoChange() }}> 125 // )
128 </el-input> 126 // }
129 )
130 }
131 }, 127 },
132 { 128 {
133 prop: 'djywbm', 129 prop: 'nodecode',
134 label: '登记业务编码',
135 width: '105', 130 width: '105',
136 render: (h, scope) => { 131 label: '登记类型代码',
137 return ( 132 // render: (h, scope) => {
138 <el-input placeholder="登记业务编码" value={scope.row[scope.column.property]} onInput={(val) => { scope.row[scope.column.property] = val; orderNoChange() }}></el-input> 133 // return (
139 ) 134 // <el-input placeholder="登记情形编码" value={scope.row[scope.column.property]}
140 } 135 // onInput={(val) => { scope.row[scope.column.property] = val; vm.orderNoChange() }} maxlength="8">
141 }, 136 // </el-input>
142 { 137 // )
143 prop: 'djywmc', 138 // }
144 label: '登记业务名称',
145 render: (h, scope) => {
146 return (
147 <el-input placeholder="登记业务名称" value={scope.row[scope.column.property]} onInput={(val) => { scope.row[scope.column.property] = val; orderNoChange() }}></el-input>
148 )
149 }
150 }, 139 },
151 { 140 {
152 label: '移动', 141 prop: 'nodename',
153 width: '100', 142 label: '登记类型名称',
154 render: (h, scope) => { 143 // render: (h, scope) => {
155 return ( 144 // return (
156 <div> 145 // <el-input placeholder="登记情形名称" value={scope.row[scope.column.property]}
157 <el-button type='text' disabled={scope.$index == 0} onClick={() => { vm.moveUpward(scope.$index, scope.row, 'djqx') }}>上移</el-button> 146 // onInput={(val) => { scope.row[scope.column.property] = val; vm.orderNoChange() }}>
158 <el-button type='text' disabled={(scope.$index + 1) == vm.form.djlx.length} onClick={() => { vm.moveDown(scope.$index, scope.row, 'djqx') }}>下移</el-button > 147 // </el-input>
159 </div> 148 // )
160 ) 149 // }
161 } 150 }
162 } 151 // {
152 // label: '移动',
153 // width: '100',
154 // render: (h, scope) => {
155 // return (
156 // <div>
157 // <el-button type='text' disabled={scope.$index == 0} onClick={() => { vm.moveUpward(scope.$index, scope.row, 'djqx') }}>上移</el-button>
158 // <el-button type='text' disabled={(scope.$index + 1) == vm.form.djlx.length} onClick={() => { vm.moveDown(scope.$index, scope.row, 'djqx') }}>下移</el-button >
159 // </div>
160 // )
161 // }
162 // }
163 ] 163 ]
164 } 164 }
165 clxxCol () { 165 clxxCol () {
......