+
+
-
-
-
{{ item.name }}
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+
+
+
+
+
+
{{ targetData.all.value }}
+
{{ targetData.all.title }}
+
+
+
+
+
+ {{ item.value }}
+
+
+
+
+
+
{{ item.title }}
+
+
@@ -22,34 +54,68 @@ const shortcut = ref([
{
id: 1,
name: "数据查询",
- icon: "home",
- path: "/home"
+ svg: "data-queries"
},
{
id: 2,
name: "新增凭证",
- icon: "dashboard",
- path: "/home"
+ svg: "add-voucher"
},
{
id: 3,
name: "余额查询",
- icon: "component",
- path: "/home"
+ svg: "balance-inquiry"
},
{
id: 4,
name: "财务报表",
- icon: "component",
- path: "/home"
+ svg: "financial-statement"
},
{
id: 5,
+ name: "数据统计",
+ svg: "data-analysis"
+ },
+ {
+ id: 6,
name: "更多",
- icon: "form",
- path: "/home"
+ svg: "more"
}
]);
+
+const targetData = reactive({
+ all: {
+ title: "综合评分",
+ value: 9.9
+ },
+ list: [
+ {
+ title: "资产负债率",
+ value: "78%",
+ type: "up"
+ },
+ {
+ title: "毛利率",
+ value: "88%",
+ type: "down"
+ },
+ {
+ title: "营业收入增长率",
+ value: "58%",
+ type: "up"
+ },
+ {
+ title: "净利润增长率",
+ value: "76%",
+ type: "up"
+ },
+ {
+ title: "净资产收益率",
+ value: "76%",
+ type: "down"
+ }
+ ]
+});