|
@@ -91,7 +91,7 @@
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
|
-import { onMounted, ref } from 'vue'
|
|
|
+import { nextTick, onMounted, ref } from 'vue'
|
|
|
import { useAppStore } from '~src/store'
|
|
|
import { getArrValue, getObjValue } from 'js-fast-way'
|
|
|
import tasksFlowApi from '~api/tasks/flow'
|
|
@@ -263,7 +263,7 @@ const tableSortClick = () => {
|
|
|
const sortTableColumn = ref([
|
|
|
{ key: 'fixedFlowName', name: '流程名称' },
|
|
|
{ key: 'linkUserJoinString', name: '流程详情' },
|
|
|
- { key:'action', name: '排序', width: 90 },
|
|
|
+ { key:'action', name: '排序', width: 90, align: 'center' },
|
|
|
])
|
|
|
const sortTableData = ref([])
|
|
|
|