|
@@ -480,7 +480,7 @@ const openDialog = async (type: number, title: string, row?: any) => {
|
|
|
|
|
|
// 表格配置项
|
|
|
const columns = reactive<ColumnProps<any>[]>([
|
|
|
- { type: 'selection', fixed: 'left', width: 70 },
|
|
|
+ { type: 'selection', width: 70 },
|
|
|
{ prop: 'yuan', label: '原图', width: 200 },
|
|
|
{
|
|
|
prop: 'batchNum',
|
|
@@ -581,7 +581,7 @@ const columns = reactive<ColumnProps<any>[]>([
|
|
|
},
|
|
|
width: 120
|
|
|
},
|
|
|
- { prop: 'operation', label: '操作', width: 230, fixed: 'right' }
|
|
|
+ { prop: 'operation', label: '操作', width: 230 }
|
|
|
])
|
|
|
// 表单配置项
|
|
|
let formItems: ProForm.ItemsOptions[] = []
|