lifanagju_citu 11 meses atrás
pai
commit
742c04caaa

+ 1 - 1
components.d.ts

@@ -20,7 +20,7 @@ declare module 'vue' {
     CtPagination: typeof import('./src/components/CtPagination/index.vue')['default']
     CtSearch: typeof import('./src/components/CtSearch/index.vue')['default']
     CtTextField: typeof import('./src/components/CtVuetify/CtTextField/index.vue')['default']
-    DatePicker: typeof import('./src/components/FormUI/datePicker/index.vue')['default']
+    DatePicker: typeof import('./src/components/DatePicker/index.vue')['default']
     Details: typeof import('./src/components/Enterprise/details.vue')['default']
     Empty: typeof import('./src/components/Empty/index.vue')['default']
     HeadSearch: typeof import('./src/components/headSearch/index.vue')['default']

+ 1 - 1
src/router/modules/personal.js

@@ -88,7 +88,7 @@ const personal = [
       },
       {
         path: '/enterprise/joiningEnterprise',
-        component: () => import('@/views/enterprise/components/joining'),
+        component: () => import('@/views/enterprise/components/joiningEnterprise'),
         meta: {
           title: '加入企业'
         }

+ 0 - 0
src/views/enterprise/components/joining.vue → src/views/enterprise/components/joiningEnterprise.vue


+ 3 - 1
src/views/enterprise/systemManagement/informationSettings.vue

@@ -49,7 +49,9 @@ defineOptions({ name: 'enterprise-system-management-information-settings'})
 const tab = ref(1)
 
 const infoData = {
-  name: '苏州工业园区娄葑镇香草叶咖啡店'
+  name: '苏州工业园区娄葑镇香草叶咖啡店', // 企业名称
+  suozaidi: '企业所在地',
+  dizhi: '企业地址',
 }
 provide('infoData', JSON.stringify(infoData))
 </script>