diff --git a/src/pages/business/CRM/map/checkInView.vue b/src/pages/business/CRM/map/checkInView.vue
index d1d874b..70d3636 100644
--- a/src/pages/business/CRM/map/checkInView.vue
+++ b/src/pages/business/CRM/map/checkInView.vue
@@ -1,164 +1,171 @@
-
-
-
-
+
+
+
+
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
- 类型:{{ item.mapType == 1 ? '签到' : '打卡' }}
-
- 开始签到时间
- {{ item.goVisistStartTime }}
-
-
-
- 开始签到地点
- {{ item.addressForStart }}
-
-
-
- 结束签到时间
- {{ item.goVisistEndTime }}
-
-
-
- 结束签到地点
- {{ item.addressForEnd }}
-
-
- 备注内容
- {{ item.remark }}
-
-
-
-
+
+
+
+ 类型:{{ MapType[item.mapType].label }}
+
+
+ 开始签到时间
+ {{ item.goVisistStartTime }}
+
+
+
+ 开始签到地点
+ {{ item.addressForStart }}
+
+
+
+ 结束签到时间
+ {{ item.goVisistEndTime }}
+
+
+
+ 结束签到地点
+ {{ item.addressForEnd }}
+
+
+ 备注内容
+ {{ item.remark }}
+
+
+
+
diff --git a/src/pages/business/CRM/map/dataMap.js b/src/pages/business/CRM/map/dataMap.js
new file mode 100644
index 0000000..8541f9a
--- /dev/null
+++ b/src/pages/business/CRM/map/dataMap.js
@@ -0,0 +1,9 @@
+/**
+ * 签到/打卡/出差
+ * @type {{"1": {label: 签到, bgc: string}, "2": {label: 打卡, bgc: string}, "3": {label: 出差, bgc: string}}}
+ */
+export const MapType = {
+ '1': {label:'签到', color:'#F5813A'},
+ '2': {label:'打卡', color:'#1989FA'},
+ '3': {label:'出差', color:'#42b883'}
+}
\ No newline at end of file