Эх сурвалжийг харах

Merge branch 'dev' of http://36.137.93.232:3000/hf/byte-sailing-mobile into dev

lxf 1 жил өмнө
parent
commit
aa1f7e05a5

+ 1 - 2
src/components/testForm/index.vue

@@ -10,7 +10,7 @@
       ref="testForm">
       <van-cell-group inset>
         <div v-for="(i, index) in formConfig" :key="index" :style="i.style || ''">
-          <van-field v-if="i.type == 'title'" style="background: #ecebeb">
+          <van-field v-if="i.type == 'title'" style="background: #ecebeb;">
             <template #input>
               <div class="_title">
                 {{ i.title }}
@@ -329,7 +329,6 @@
 import { showLoadingToast, closeToast, showNotify } from "vant";
 import { formatDate } from "@/utils/auth";
 
-import { ref, getCurrentInstance, onMounted, reactive, computed, toRefs, watch, defineExpose } from "vue";
 const submitBtn = ref(null);
 const props = defineProps({
   modelValue: {

+ 2 - 0
src/lang/cn.js

@@ -57,6 +57,8 @@ export const lang = {
 		noMatchingData: '无匹配数据',
 		selectDate: '选择日期',
 		selectTime: '选择时间',
+		selectDate:'选择日期',
+		selectTime:'选择时间',
 	},
 	processApproval: {
 		//流程办理,流程类型,流程标题,发起人

+ 60 - 0
src/router/routerLXF.js

@@ -155,6 +155,66 @@ export function routesLXF() {
       name: "添加发票",
       component: () => import("../views/purchase-payment/invoice/add.vue"),
     },
+    {
+      path: "account",
+      name: "资金账户",
+      component: () => import("../views/fund/account/index.vue"),
+    },
+    {
+      path: "accountAdd",
+      name: "添加账户",
+      component: () => import("../views/fund/account/add.vue"),
+    },
+    {
+      path: "customerFile",
+      name: "客户档案",
+      component: () => import("../views/customer/file/index.vue"),
+    },
+    {
+      path: "customerFileAdd",
+      name: "添加客户",
+      component: () => import("../views/customer/file/add.vue"),
+    },
+    {
+      path: "customerFileDetail",
+      name: "客户详情",
+      component: () => import("../views/customer/file/detail.vue"),
+    },
+    {
+      path: "customerFileRecords",
+      name: "添加跟进记录",
+      component: () => import("../views/customer/file/addRecords.vue"),
+    },
+    {
+      path: "highseas",
+      name: "公海客户",
+      component: () => import("../views/customer/highseas/index.vue"),
+    },
+    {
+      path: "privatesea",
+      name: "私海客户",
+      component: () => import("../views/customer/privatesea/index.vue"),
+    },
+    {
+      path: "accountPayment",
+      name: "打款",
+      component: () => import("../views/fund/account-payment/index.vue"),
+    },
+    {
+      path: "accountPaymentAdd",
+      name: "添加打款",
+      component: () => import("../views/fund/account-payment/add.vue"),
+    },
+    {
+      path: "accountPaymentDetail",
+      name: "打款详情",
+      component: () => import("../views/fund/account-payment/detail.vue"),
+    },
+    {
+      path: "funds",
+      name: "请款",
+      component: () => import("../views/fund/funds/index.vue"),
+    },
   ];
   return routesLXF;
 }