diff --git a/client/src/views/supervision/taskdo.vue b/client/src/views/supervision/taskdo.vue
index 5fbe4d7..fb2a642 100644
--- a/client/src/views/supervision/taskdo.vue
+++ b/client/src/views/supervision/taskdo.vue
@@ -101,10 +101,12 @@
>
- {{
+
+ {{scope.row.dept_.sort}}-
+ {{
scope.row.dept_.name
}}
- {{scope.row.dept_.type_name}}
+
diff --git a/server/apps/system/serializers.py b/server/apps/system/serializers.py
index b398e98..ab50bf7 100644
--- a/server/apps/system/serializers.py
+++ b/server/apps/system/serializers.py
@@ -147,7 +147,7 @@ class OrganizationSimpleSerializer(serializers.ModelSerializer):
type_name = serializers.StringRelatedField(source='type', read_only=True)
class Meta:
model = Organization
- fields = ['id', 'name', 'type_name']
+ fields = ['id', 'name', 'type_name', 'sort']
class FileSimpleSerializer(serializers.ModelSerializer):
class Meta: