|
@@ -0,0 +1,21 @@
|
|
|
|
+import { Cell } from 'vant'
|
|
|
|
+import { defineComponent } from 'vue'
|
|
|
|
+import styles from './index.module.less'
|
|
|
|
+
|
|
|
|
+export default defineComponent({
|
|
|
|
+ name: 'IncomeConsus',
|
|
|
|
+ render() {
|
|
|
|
+ return (
|
|
|
|
+ <div class={styles.incomeConsus}>
|
|
|
|
+ <Cell
|
|
|
|
+ class={styles.income}
|
|
|
|
+ title="总收入(元)"
|
|
|
|
+ value={'2022'}
|
|
|
|
+ v-slots={{
|
|
|
|
+ label: () => <span>124,323.00</span>
|
|
|
|
+ }}
|
|
|
|
+ ></Cell>
|
|
|
|
+ </div>
|
|
|
|
+ )
|
|
|
|
+ }
|
|
|
|
+})
|