|
@@ -11,6 +11,7 @@ import OHeader from '@/components/o-header'
|
|
|
import OSticky from '@/components/o-sticky'
|
|
|
import { courseEmnu } from '@/constant'
|
|
|
import { moneyFormat } from '@/helpers/utils'
|
|
|
+import dayjs from 'dayjs'
|
|
|
|
|
|
export const courseSalaryRecordDetailItem = ref<ICourseSalaryRecordDetailItem>()
|
|
|
|
|
@@ -106,7 +107,8 @@ export default defineComponent({
|
|
|
<div class={styles.item}>
|
|
|
<Cell
|
|
|
center
|
|
|
- value={`${item.days}天`}
|
|
|
+ value={`${dayjs(item.date).format('YYYY-MM-DD')}`}
|
|
|
+ valueClass={styles.exerciseValue}
|
|
|
isLink
|
|
|
class={styles.itemCourseName}
|
|
|
onClick={() => {
|
|
@@ -115,7 +117,8 @@ export default defineComponent({
|
|
|
path: '/subsidy-exercise-details',
|
|
|
query: {
|
|
|
...route.query,
|
|
|
- courseType: item.courseType
|
|
|
+ courseType: item.courseType,
|
|
|
+ courseSalaryId: item.courseSalaryId
|
|
|
}
|
|
|
})
|
|
|
}}
|
|
@@ -138,7 +141,7 @@ export default defineComponent({
|
|
|
</span>
|
|
|
元
|
|
|
</div>
|
|
|
- <div>预计补助</div>
|
|
|
+ <div>补助标准</div>
|
|
|
</div>
|
|
|
</GridItem>
|
|
|
<GridItem>
|