|
@@ -152,6 +152,15 @@ export default {
|
|
|
render: (h, { row, column }) => {
|
|
|
return <div>{this.toFixed(row[column.columnAttributes.prop])}</div>
|
|
|
}
|
|
|
+ },
|
|
|
+ {
|
|
|
+ columnAttributes: {
|
|
|
+ label: '备注',
|
|
|
+ prop: 'reason'
|
|
|
+ },
|
|
|
+ render: (h, { row, column }) => {
|
|
|
+ return <div>{this.toFixed(row[column.columnAttributes.prop])}</div>
|
|
|
+ }
|
|
|
}
|
|
|
// ...(() => {
|
|
|
// if (!!~[1, 2, 3].indexOf(this?.workOrderType)) {
|