刘洋 7 mēneši atpakaļ
vecāks
revīzija
c9a0504d1f

+ 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;
   });