|
@@ -121,7 +121,7 @@ const createTaskNew = () => {
|
|
|
}
|
|
|
// 表格配置项
|
|
|
const columns = reactive<ColumnProps<User.ResUserList>[]>([
|
|
|
- { type: 'selection', fixed: 'left', width: 70 },
|
|
|
+ { type: 'selection', width: 70 },
|
|
|
{ prop: 'name', label: '任务名称' },
|
|
|
// {
|
|
|
// prop: 'status',
|
|
@@ -144,7 +144,7 @@ const columns = reactive<ColumnProps<User.ResUserList>[]>([
|
|
|
// el: 'input'
|
|
|
// }
|
|
|
},
|
|
|
- { prop: 'operation', label: '操作', width: 230, fixed: 'right' }
|
|
|
+ { prop: 'operation', label: '操作', width: 230 }
|
|
|
])
|
|
|
</script>
|
|
|
<style scoped lang="scss">
|