|
@@ -1,4 +1,4 @@
|
|
|
-import { Cell, Dialog, Grid, GridItem, Sticky } from 'vant'
|
|
|
+import { Cell, Dialog, Grid, GridItem, Icon, Sticky } from 'vant'
|
|
|
import { defineComponent, onMounted, reactive, ref } from 'vue'
|
|
|
import styles from '../index.module.less'
|
|
|
import iconTime from '../images/icon-time.png'
|
|
@@ -11,6 +11,7 @@ import OSticky from '@/components/o-sticky'
|
|
|
import dayjs from 'dayjs'
|
|
|
import { moneyFormat } from '@/helpers/utils'
|
|
|
import ODialog from '@/components/o-dialog'
|
|
|
+import questIcon from '@/school/images/quest-icon.png'
|
|
|
|
|
|
export default defineComponent({
|
|
|
name: 'subsidy-grant-detail',
|
|
@@ -61,8 +62,11 @@ export default defineComponent({
|
|
|
>
|
|
|
<OHeader
|
|
|
class={styles.rightTip}
|
|
|
- rightText="?"
|
|
|
+ // rightText="?"
|
|
|
onClickRight={() => (dialog.value = true)}
|
|
|
+ v-slots={{
|
|
|
+ right: () => <Icon name={questIcon} size={22} color="#333" />
|
|
|
+ }}
|
|
|
></OHeader>
|
|
|
</OSticky>
|
|
|
<OFullRefresh
|
|
@@ -97,7 +101,7 @@ export default defineComponent({
|
|
|
<GridItem>
|
|
|
<div class={styles.gridItem}>
|
|
|
<div class={styles.gridItemTop}>
|
|
|
- <span class={styles.topNum} style={{ color: '#333', fontFamily: 'DINA' }}>
|
|
|
+ <span class={styles.topNum} style={{ color: '#333' }}>
|
|
|
{moneyFormat(data.manageSalary.standardSalary || 0)}
|
|
|
</span>
|
|
|
元/周
|
|
@@ -119,7 +123,7 @@ export default defineComponent({
|
|
|
<GridItem>
|
|
|
<div class={styles.gridItem}>
|
|
|
<div class={styles.gridItemTop}>
|
|
|
- <span class={styles.topNum} style={{ fontFamily: 'DINA' }}>
|
|
|
+ <span class={styles.topNum}>
|
|
|
{moneyFormat(data.manageSalary.actualSalary || 0)}
|
|
|
</span>
|
|
|
元
|
|
@@ -137,7 +141,7 @@ export default defineComponent({
|
|
|
<div class={styles.itemTitle}>
|
|
|
<img class={styles.titleIcon} src={iconTime} />
|
|
|
{item.startTime && item.endTime ? (
|
|
|
- <span>
|
|
|
+ <span class={styles.timesinfo}>
|
|
|
{dayjs(item.startTime).format('YYYY-MM-DD HH:mm')}~
|
|
|
{dayjs(item.endTime).format('HH:mm')}
|
|
|
</span>
|