刘洋 7 달 전
부모
커밋
c9a0504d1f
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      src/views/work-hours/work-hours-manage/work-statistics/append-hours-dialog.vue

+ 3 - 3
src/views/work-hours/work-hours-manage/work-statistics/append-hours-dialog.vue

@@ -78,9 +78,9 @@ const rules = {
 const getSopList = () => {
   const { serviceId, userId } = props.curRow;
   findSopList({ serviceId, userId }).then((res) => {
-    sopOptions.value = (res?.sopNoList || []).map((item) => ({
-      value: item,
-      label: item,
+    sopOptions.value = (res?.crmDetailInfo || []).map((item) => ({
+      value: item.sopNo,
+      label: item.sopNo + '_' + item.customName + '_' + item.courseName,
     }));
     needChoose.value = res?.needChoose || false;
   });