9a52bfa0 by tianhaohao@pashanhoo.com

修改规则配置

1 parent b6d582b5
......@@ -107,59 +107,59 @@ class data extends filter {
type: 'index'
},
{
prop: 'nodecode',
prop: 'djywbm',
label: '权利类型代码',
width: '105',
label: '登记情形编码',
render: (h, scope) => {
return (
<el-input placeholder="登记情形编码" value={scope.row[scope.column.property]}
onInput={(val) => { scope.row[scope.column.property] = val; vm.orderNoChange() }} maxlength="8">
</el-input>
)
}
// render: (h, scope) => {
// return (
// <el-input placeholder="权利类型代码" value={scope.row[scope.column.property]} onInput={(val) => { scope.row[scope.column.property] = val; orderNoChange() }}></el-input>
// )
// }
},
{
prop: 'nodename',
label: '登记情形名称',
render: (h, scope) => {
return (
<el-input placeholder="登记情形名称" value={scope.row[scope.column.property]}
onInput={(val) => { scope.row[scope.column.property] = val; vm.orderNoChange() }}>
</el-input>
)
}
prop: 'djywmc',
label: '权利类型名称',
// render: (h, scope) => {
// return (
// <el-input placeholder="权利类型名称" value={scope.row[scope.column.property]} onInput={(val) => { scope.row[scope.column.property] = val; orderNoChange() }}></el-input>
// )
// }
},
{
prop: 'djywbm',
label: '登记业务编码',
prop: 'nodecode',
width: '105',
render: (h, scope) => {
return (
<el-input placeholder="登记业务编码" value={scope.row[scope.column.property]} onInput={(val) => { scope.row[scope.column.property] = val; orderNoChange() }}></el-input>
)
}
},
{
prop: 'djywmc',
label: '登记业务名称',
render: (h, scope) => {
return (
<el-input placeholder="登记业务名称" value={scope.row[scope.column.property]} onInput={(val) => { scope.row[scope.column.property] = val; orderNoChange() }}></el-input>
)
}
label: '登记类型代码',
// render: (h, scope) => {
// return (
// <el-input placeholder="登记情形编码" value={scope.row[scope.column.property]}
// onInput={(val) => { scope.row[scope.column.property] = val; vm.orderNoChange() }} maxlength="8">
// </el-input>
// )
// }
},
{
label: '移动',
width: '100',
render: (h, scope) => {
return (
<div>
<el-button type='text' disabled={scope.$index == 0} onClick={() => { vm.moveUpward(scope.$index, scope.row, 'djqx') }}>上移</el-button>
<el-button type='text' disabled={(scope.$index + 1) == vm.form.djlx.length} onClick={() => { vm.moveDown(scope.$index, scope.row, 'djqx') }}>下移</el-button >
</div>
)
}
prop: 'nodename',
label: '登记类型名称',
// render: (h, scope) => {
// return (
// <el-input placeholder="登记情形名称" value={scope.row[scope.column.property]}
// onInput={(val) => { scope.row[scope.column.property] = val; vm.orderNoChange() }}>
// </el-input>
// )
// }
}
// {
// label: '移动',
// width: '100',
// render: (h, scope) => {
// return (
// <div>
// <el-button type='text' disabled={scope.$index == 0} onClick={() => { vm.moveUpward(scope.$index, scope.row, 'djqx') }}>上移</el-button>
// <el-button type='text' disabled={(scope.$index + 1) == vm.form.djlx.length} onClick={() => { vm.moveDown(scope.$index, scope.row, 'djqx') }}>下移</el-button >
// </div>
// )
// }
// }
]
}
clxxCol () {
......