陈鹏铭 1 年之前
父节点
当前提交
0847313801

+ 1 - 1
.env.development

@@ -1,3 +1,3 @@
    #VUE_APP_API_URL=http://192.168.2.106:9012
-    VUE_APP_API_URL= https://www.idea-co-sf.com/industryParkApi
+    VUE_APP_API_URL= https://snkd.idea-sf.com/industryParkApi
    #VUE_APP_API_URL= http://2.22.203.193:443/industryParkApi

二进制
dist.zip


+ 163 - 140
src/pages/announcement/detail.vue

@@ -1,160 +1,183 @@
 <template>
-	<div class="detail">
-		<div class="detail-body">
-			<div class="detail-card top-tit-card">
-				<div class="left">
-					<i class="iconfont icon-tongzhi"></i>
-				</div>
-				<div class="right">
-					<div class="top">
-						{{ title }}
-					</div>
-					<div class="bottom">
-						<span> {{ releaseTime }}</span>
-						<span>{{ createUserDept }}</span>
-					</div>
-				</div>
-				<div></div>
-			</div>
-			<div class="detail-card info" v-html="content"/>
-			<div style="width: 100%;height: 100%" class="img-list" v-if="imgUrlList.length>0">
-				<img style="width: 100%;height: 100%" v-for="item in imgUrlList" :src="item.url" alt=""/>
-			</div>
-			<div v-for="item in fileUrlList" style=" font-size: 16px; margin: 10px;color: #0000FF" @click="jumpFile(item)">
-				{{ item.name }}
-			</div>
-		</div>
-		<!--    <div class="white-bottom"></div>-->
-	</div>
+  <div class="detail">
+    <div class="detail-body">
+      <div class="detail-card top-tit-card">
+        <div class="left">
+          <i class="iconfont icon-tongzhi"></i>
+        </div>
+        <div class="right">
+          <div class="top">
+            {{ title }}
+          </div>
+          <div class="bottom">
+            <span> {{ releaseTime }}</span>
+            <span>{{ createUserDept }}</span>
+          </div>
+        </div>
+        <div></div>
+      </div>
+      <div class="detail-card info" v-html="content" />
+      <div
+        style="width: 100%; height: 100%"
+        class="img-list"
+        v-if="imgUrlList.length > 0"
+      >
+        <img
+          style="width: 100%; height: 100%"
+          v-for="item in imgUrlList"
+          :src="item.url"
+          alt=""
+        />
+      </div>
+      <div
+        v-for="item in fileUrlList"
+        style="font-size: 16px; margin: 10px; color: #0000ff"
+        @click="jumpFile(item)"
+      >
+        {{ item.name }}
+      </div>
+    </div>
+    <!--    <div class="white-bottom"></div>-->
+  </div>
 </template>
 
 <script>
-import { getParkNoticeById, updateReadStatus } from '../../service/api_park_notice'
+import {
+  getParkNoticeById,
+  updateReadStatus,
+} from "../../service/api_park_notice";
 // import { addUserNotice } from '@/service/api_user_notice'
-import auth from '@/service/auth'
-import wx from 'weixin-js-sdk'
+import auth from "@/service/auth";
+import wx from "weixin-js-sdk";
 
 export default {
-	data() {
-		return {
-			type: '', // 1 园区 2 物业
-			id: '',
-			title: '',
-			readStatus: '',
-			content: '',
-			releaseTime: '',
-			parkName: '',
-			fileUrlList: [],
-			imgUrlList: [],
-			createUserDept: '',
-			reader: {
-				userId: auth.currUser().id,
-				id: ''
-			}
-		}
-	},
+  data() {
+    return {
+      type: "", // 1 园区 2 物业
+      id: "",
+      title: "",
+      readStatus: "",
+      content: "",
+      releaseTime: "",
+      parkName: "",
+      fileUrlList: [],
+      imgUrlList: [],
+      createUserDept: "",
+      reader: {
+        userId: auth.currUser().id,
+        id: "",
+      },
+    };
+  },
 
-	mounted() {
-		this.readStatus = this.$route.query.readStatus
-		this.id = this.$route.query.id
-		this.reader.id = this.id
-		this.selectById()
-		if (!this.readStatus) {
-			this.getRead()
-		}
-	},
-	methods: {
-		getRead() {
-			updateReadStatus(this.reader).then(res => {
-
-			})
-		},
-		jumpFile(item) {
-			window.location.href = item.url
-			// console.log(window.location.href)
-			// console.log(window.location.href.split('#')[0])
-			wx.miniProgram.navigateTo({
-				url: '/pages/file/download?callBackUrl=' + encodeURIComponent(window.location.href.split('#')[0]) +
-				 '&url=' + item.url
-			})
-		},
-		selectById() {
-			const _this = this
-			getParkNoticeById({ id: _this.id }).then((res) => {
-				const data = res
-				_this.title = data.noticeTitle
-				_this.createUserDept = data.createUserDept
-				// if (data.content.indexOf('width') !== -1 && data.content.indexOf('height') !== -1) {
-				//     data.content = data.content.replace(/width="(\S*)"/, 'width="100%"').replace(/height="(\S*)"/, 'height="100%"')
-				// }
-				_this.content = data.noticeContent
-				_this.releaseTime = _this.publishDate
-				if (data.noticeFileId && data.noticeFileId.length > 2) {
-					const themeUrlList = []
-					const imgUrlList = []
-					const files = _this.$common.castEval(data.noticeFileId)
-					console.log('files', files)
-					files.forEach(item => {
-						if (item.url) {
-							const ul = {
-								name: item.name,
-								url: item.url
-							}
-							if (item.name.indexOf('png') > -1 || item.name.indexOf('jpg') > -1 || item.name.indexOf('jpeg') > -1) {
-								imgUrlList.push(ul)
-							} else {
-								themeUrlList.push(ul)
-							}
-						}
-					})
-					if (imgUrlList.length > 0) {
-						_this.imgUrlList = imgUrlList
-					}
-					_this.fileUrlList = themeUrlList
-				}
-				// 添加用户通知
-				// const params = {
-				//     userId: auth.currUser().id,
-				//     noticeId: _this.id,
-				//     type: '1'
-				// }
-				// addUserNotice(params).then((res) => {
-				//
-				// })
-			})
-		}
-	}
-}
+  mounted() {
+    this.readStatus = this.$route.query.readStatus;
+    this.id = this.$route.query.id;
+    this.reader.id = this.id;
+    this.selectById();
+    if (!this.readStatus) {
+      this.getRead();
+    }
+  },
+  methods: {
+    getRead() {
+      updateReadStatus(this.reader).then((res) => {});
+    },
+    jumpFile(item) {
+      console.log("item.url", item.url);
+      wx.miniProgram.navigateTo({
+        url:
+          "/pages/file/download?callBackUrl=" +
+          encodeURIComponent(window.location.href.split("#")[0]) +
+          "&url=" +
+          item.url,
+      });
+      return;
+      // window.location.href = item.url
+      // console.log(window.location.href)
+      // console.log(window.location.href.split('#')[0])
+    },
+    selectById() {
+      const _this = this;
+      getParkNoticeById({ id: _this.id }).then((res) => {
+        const data = res;
+        _this.title = data.noticeTitle;
+        _this.createUserDept = data.createUserDept;
+        // if (data.content.indexOf('width') !== -1 && data.content.indexOf('height') !== -1) {
+        //     data.content = data.content.replace(/width="(\S*)"/, 'width="100%"').replace(/height="(\S*)"/, 'height="100%"')
+        // }
+        _this.content = data.noticeContent;
+        _this.releaseTime = _this.publishDate;
+        if (data.noticeFileId && data.noticeFileId.length > 2) {
+          const themeUrlList = [];
+          const imgUrlList = [];
+          const files = _this.$common.castEval(data.noticeFileId);
+          console.log("files", files);
+          files.forEach((item) => {
+            if (item.url) {
+              const ul = {
+                name: item.name,
+                url: item.url,
+              };
+              if (
+                item.name.indexOf("png") > -1 ||
+                item.name.indexOf("jpg") > -1 ||
+                item.name.indexOf("jpeg") > -1
+              ) {
+                imgUrlList.push(ul);
+              } else {
+                themeUrlList.push(ul);
+              }
+            }
+          });
+          if (imgUrlList.length > 0) {
+            _this.imgUrlList = imgUrlList;
+          }
+          _this.fileUrlList = themeUrlList;
+        }
+        // 添加用户通知
+        // const params = {
+        //     userId: auth.currUser().id,
+        //     noticeId: _this.id,
+        //     type: '1'
+        // }
+        // addUserNotice(params).then((res) => {
+        //
+        // })
+      });
+    },
+  },
+};
 </script>
 
 <style lang="scss" type="text/scss">
 .detail {
-	box-sizing: border-box;
-	background-color: $bg2;
-	padding: 20px 30px 140px;
-	overflow-y: auto;
+  box-sizing: border-box;
+  background-color: $bg2;
+  padding: 20px 30px 140px;
+  overflow-y: auto;
 
-	.detail-body {
-		.detail-card {
-			padding: 20px 30px;
-			border-radius: 10px;
+  .detail-body {
+    .detail-card {
+      padding: 20px 30px;
+      border-radius: 10px;
 
-			&:first-child {
-				margin-bottom: 20px;
-			}
-		}
+      &:first-child {
+        margin-bottom: 20px;
+      }
+    }
 
-		.info {
-			font-size: 26px;
-			color: $text3;
-			line-height: 1.2;
-		}
-	}
+    .info {
+      font-size: 26px;
+      color: $text3;
+      line-height: 1.2;
+    }
+  }
 }
 
 .detail-card {
-	img {
-		width: 80vw !important;
-	}
+  img {
+    width: 80vw !important;
+  }
 }
 </style>

+ 29 - 22
src/pages/callus/index.vue

@@ -4,43 +4,45 @@
 			<div class="callus-row">
 				<img src="./img/1.png" alt="">
 				<div class="callus-label">电话:</div>
-				<div class="callus-value">18308643079</div>
+				<div class="callus-value">043-32149304</div>
 
 
 			</div>
 			<div class="callus-row">
 				<img src="./img/2.png" alt="">
 				<div class="callus-label">传真:</div>
-				<div class="callus-value">18308643079</div>
+				<div class="callus-value">043-32149304</div>
 
 
 			</div>
 			<div class="callus-row">
 				<img src="./img/3.png" alt="">
 				<div class="callus-label">邮箱:</div>
-				<div class="callus-value">m.iuxvytbc@fmwcsbh.tel</div>
+				<div class="callus-value">cons@wuxizhihuipark.com</div>
 			</div>
 			<div class="callus-row">
 				<img src="./img/4.png" alt="">
 				<div class="callus-label">网址:</div>
-				<div class="callus-value">http://pnjcd.name/orki</div>
+				<div class="callus-value">www.wuxiwisdompark.com</div>
 			</div>
 			<div class="callus-row">
 				<img src="./img/5.png" alt="">
 				<div class="callus-label">地址:</div>
-				<div class="callus-value">通顺路双兴东区甲1号楼
-					<br/>
-					1单元2层204室</div>
+				<div class="callus-value">
+					无锡市梁溪天安大厦
+
+				</div>
 			</div>
 
 		</div>
-			<baidu-map class="baiduMap"/>
+		<baidu-map class="baiduMap"/>
 	</div>
 
 </template>
 
 <script>
 import baiduMap from './map.vue'
+
 export default {
 	name: 'index.vue',
 	components: {
@@ -49,46 +51,51 @@ export default {
 	mounted() {
 
 	},
-	methods: {
-
-	}
+	methods: {}
 }
 </script>
 
 <style lang="scss">
-.callus{
+.callus {
 	width: 100%;
 	height: 100%;
-	.baiduMap{
+
+	.baiduMap {
 		position: fixed;
 		z-index: 99;
 	}
-	.callus-row{
-		margin:1.2vh 2vw;
-		.callus-label{
+
+	.callus-row {
+		margin: 1.2vh 2vw;
+
+		.callus-label {
 			width: 16vw;
 		}
-		.callus-value{
+
+		.callus-value {
 
 		}
 	}
-	.callus-form{
+
+	.callus-form {
 
 		border-radius: 8px 8px 8px 8px;
 		width: 80%;
-		margin:32px 10%;
+		margin: 32px 10%;
 		font-weight: 400;
 		color: #FFFFFF;
-		background:rgba(0,0,0,0.6) ;
+		background: rgba(0, 0, 0, 0.6);
 		font-size: 32px;
 		position: fixed;
 		z-index: 100;
 		bottom: 10vh;
-		.callus-row{
+
+		.callus-row {
 			display: flex;
 			line-height: 32px;
 		}
-		img{
+
+		img {
 			width: 32px;
 			height: 32px;
 			margin-right: 10px;

+ 9 - 4
src/pages/callus/map.vue

@@ -42,6 +42,7 @@ export default {
 
 				this.mouseTool = new AMap.MouseTool(this.map)
 				let marker = new AMap.Marker({
+					show: false,
 					position: [120.366855, 31.492167],//要展示marker的经度、纬度。数据格式就是数组里放入经纬度数据
 					// icon: require("../../../public/img/bg/site.png"), //显示的图标
 					offset: [-16, -32]//图标偏移量,展示时会默认以图标的左上角为原点,不设置偏移量会导致地图放大缩小时造成图标偏移的情况,偏移量设置为图标宽度的负一半,负整个高度。
@@ -49,9 +50,9 @@ export default {
 				this.map.add(marker) //添加marker
 
 				var info = []
-				info.push('<div style="padding:7px 0px 0px 0px;"><h4>无锡xxx公司</h4>')
-				info.push('<p class=\'input-item\'>电话 : 010-84107000   邮编 : 100102</p>')
-				info.push('<p class=\'input-item\'>地址 :江苏省无锡市新吴区演示街道测试地址xx大楼</p></div></div>')
+				// info.push('<div style="padding:7px 0px 0px 0px;"><h4>无锡xxx公司</h4>')
+				// info.push('<p class=\'input-item\'>电话 : 010-84107000   邮编 : 100102</p>')
+				// info.push('<p class=\'input-item\'>地址 :江苏省无锡市新吴区演示街道测试地址xx大楼</p></div></div>')
 
 				let infoWindow = new AMap.InfoWindow({
 					content: info.join('')  //使用默认信息窗体框样式,显示信息内容
@@ -116,9 +117,13 @@ export default {
 	}
 }
 </script>
-<style>
+<style lang="scss">
 #bai-du-map {
 	height: 100vh;
 	width: 100vw;
+
+	.bottom-center {
+		display: none !important;
+	}
 }
 </style>

+ 1 - 1
src/pages/parkActivities/detail.vue

@@ -8,7 +8,7 @@
 
 			<div class="collect-part">
 				<div class="normal-tip by y-bg" v-if="activityDetail.registrationStatus === '1'">报名中</div>
-				<div class="normal-tip by h-bg" v-else>已结束</div>
+				<div class="normal-tip by h-bg" v-else>报名已结束</div>
 				<div class="right">
 					<span class="num">{{ activityDetail.partakeNumber }}人参与</span>
 					<div class="icon-collect" @click="changeCollectorsStatus()">

+ 1 - 1
src/pages/parkActivities/index.vue

@@ -77,7 +77,7 @@
 								<div class="bottom">
 									<p class="normal-tip by y-bg" style="text-align: center" v-if="item1.registrationStatus === '1'">
 										报名中</p>
-									<p class="normal-tip by h-bg" style="text-align: center" v-else>已结束</p>
+									<p class="normal-tip by h-bg" style="text-align: center" v-else>报名已结束</p>
 								</div>
 							</div>
 						</div>

+ 40 - 16
src/pages/parkTraining/detail.vue

@@ -7,8 +7,13 @@
 			</div>
 
 			<div class="collect-part">
-				<div class="normal-tip by y-bg" v-if="trainDetail.registrationStatus === '1'">报名中</div>
-				<div class="normal-tip by h-bg" v-else>已结束</div>
+				<div
+				 class="normal-tip by y-bg"
+				 v-if="trainDetail.registrationStatus === '1'"
+				>
+					报名中
+				</div>
+				<div class="normal-tip by h-bg" v-else>报名已结束</div>
 				<div class="right">
 					<span class="num">{{ trainDetail.partakeNumber }}人参与</span>
 					<div class="icon-collect" @click="changeCollectorsStatus()">
@@ -41,7 +46,9 @@
 
 				<div class="info-item">
 					<div class="custom-item-tit"><span class="tit">培训时间</span></div>
-					<div class="text">{{ trainDetail.trainStartTime }} — {{ trainDetail.trainEndTime }}</div>
+					<div class="text">
+						{{ trainDetail.trainStartTime }} — {{ trainDetail.trainEndTime }}
+					</div>
 				</div>
 
 				<div class="info-item">
@@ -59,7 +66,10 @@
 
 				<div class="info-item">
 					<div class="custom-item-tit"><span class="tit">报名时间</span></div>
-					<div class="text">{{ trainDetail.registrationStartTime }} — {{ trainDetail.registrationEndTime }}</div>
+					<div class="text">
+						{{ trainDetail.registrationStartTime }} —
+						{{ trainDetail.registrationEndTime }}
+					</div>
 				</div>
 				<div class="info-item">
 					<div class="custom-item-tit"><span class="tit">培训参与</span></div>
@@ -67,10 +77,20 @@
 				</div>
 			</div>
 		</div>
-		<div class="but-bottom" @click="getApply" v-if="trainDetail.registrationStatus === '1'">我要报名</div>
+		<div
+		 class="but-bottom"
+		 @click="getApply"
+		 v-if="trainDetail.registrationStatus === '1'"
+		>
+			我要报名
+		</div>
 
 		<!-- 申请弹框 -->
-		<ApplyPopup ref="apply" :reference-id="trainDetail.id" :reference-type="'2'"/>
+		<ApplyPopup
+		 ref="apply"
+		 :reference-id="trainDetail.id"
+		 :reference-type="'2'"
+		/>
 	</div>
 </template>
 
@@ -104,21 +124,25 @@ export default {
 		// this.getMyPowerById()
 	},
 	methods: {
-
 		getTrainById() {
 			const _this = this
 			getTrainById(this.id, auth.currUser().id).then((res) => {
 				if (res.data) {
 					console.log(res.data)
-					res.data.annexArray[0] = res.data.annexArray[0].replace('/webServer/FileController/download/', process.env.VUE_APP_API_URL + '/FileController/download/')
+					res.data.annexArray[0] = res.data.annexArray[0].replace(
+					 '/webServer/FileController/download/',
+					 process.env.VUE_APP_API_URL + '/FileController/download/'
+					)
 
 					_this.trainDetail = res.data
-					_this.trainDetail.registrationStartTime = this.$common.transBaseDateTime(
-					 _this.trainDetail.registrationStartTime
-					)
-					_this.trainDetail.registrationEndTime = this.$common.transBaseToDateTime(
-					 _this.trainDetail.registrationEndTime
-					)
+					_this.trainDetail.registrationStartTime =
+					 this.$common.transBaseDateTime(
+						_this.trainDetail.registrationStartTime
+					 )
+					_this.trainDetail.registrationEndTime =
+					 this.$common.transBaseToDateTime(
+						_this.trainDetail.registrationEndTime
+					 )
 					_this.trainDetail.trainStartTime = this.$common.transBaseDateTime(
 					 _this.trainDetail.trainStartTime
 					)
@@ -130,7 +154,8 @@ export default {
 					} else {
 						_this.active = false
 					}
-					_this.number = _this.trainDetail.trainQuota - _this.trainDetail.partakeNumber
+					_this.number =
+					 _this.trainDetail.trainQuota - _this.trainDetail.partakeNumber
 				}
 			})
 		},
@@ -161,7 +186,6 @@ export default {
 				console.log('企业账号')
 				this.$refs.apply.init()
 			}
-
 		},
 		changeCollectorsStatus() {
 			if (this.active) {

+ 84 - 30
src/pages/parkTraining/index.vue

@@ -30,20 +30,48 @@
 							<div class="info-part">
 								<div class="top">
 									<p class="text">{{ item.trainTitle }}</p>
-									<span v-if="item.onlineOfflineStatus === '线下'" class="tip-grid-bg">线下</span>
+									<span
+									 v-if="item.onlineOfflineStatus === '线下'"
+									 class="tip-grid-bg"
+									>线下</span
+									>
 									<span v-else class="tip-grid-bg red">线上</span>
 								</div>
 
 								<div class="bottom">
-									<div v-if="item.onlineOfflineStatus === '线下' && item.registrationStatus === '1'" class="left">
-										<span class="normal-tip by y-bg" style="text-align: center">报名中</span>
+									<div
+									 v-if="
+                      item.onlineOfflineStatus === '线下' &&
+                      item.registrationStatus === '1'
+                    "
+									 class="left"
+									>
+                    <span class="normal-tip by y-bg" style="text-align: center"
+                    >报名中</span
+                    >
 									</div>
-									<div v-if="item.onlineOfflineStatus === '线下' && item.registrationStatus === '2'" class="left">
-										<span class="normal-tip by h-bg" style="text-align: center">已结束</span>
+									<div
+									 v-if="
+                      item.onlineOfflineStatus === '线下' &&
+                      item.registrationStatus === '2'
+                    "
+									 class="left"
+									>
+                    <span class="normal-tip by h-bg" style="text-align: center"
+                    >报名已结束</span
+                    >
 									</div>
 
-									<div v-if="item.onlineOfflineStatus === '线上' && item.trainStatus === '2'" class="left">
-										<span class="normal-tip by z-bg" style="text-align: center">可观看</span>
+									<div
+									 v-if="
+                      item.onlineOfflineStatus === '线上' &&
+                      item.trainStatus === '2'
+                    "
+									 class="left"
+									>
+                    <span class="normal-tip by z-bg" style="text-align: center"
+                    >可观看</span
+                    >
 									</div>
 									<div class="right">
 										<div class="num">{{ item.partakeNumber }}人参与</div>
@@ -51,9 +79,14 @@
 										 class="icon-collect"
 										 @click.stop="changeCollectorsStatus(item)"
 										>
-											<i v-if="item.collectorsStatus === '2'"
-											   class="iconfont icon-wujiaoxingxingxingshoucangdianji blue"></i>
-											<i v-else class="iconfont icon-wujiaoxingxingxingshoucangdianji"></i>
+											<i
+											 v-if="item.collectorsStatus === '2'"
+											 class="iconfont icon-wujiaoxingxingxingshoucangdianji blue"
+											></i>
+											<i
+											 v-else
+											 class="iconfont icon-wujiaoxingxingxingshoucangdianji"
+											></i>
 										</div>
 									</div>
 								</div>
@@ -63,7 +96,10 @@
 				</van-tab>
 				<van-tab title="报名记录">
 					<div class="card-news-list">
-						<div v-for="item1 in regisSignList" class="record-card shadow-radius">
+						<div
+						 v-for="item1 in regisSignList"
+						 class="record-card shadow-radius"
+						>
 							<div class="left">
 								<img :src="item1.annexArray[0]" alt=""/>
 								<p class="text">请出示二维码签到</p>
@@ -78,9 +114,20 @@
 								</div>
 
 								<div class="bottom">
-									<p v-if="item1.registrationStatus === '1'" class="normal-tip by y-bg" style="text-align: center">
-										报名中</p>
-									<p v-else class="normal-tip by h-bg" style="text-align: center">已结束</p>
+									<p
+									 v-if="item1.registrationStatus === '1'"
+									 class="normal-tip by y-bg"
+									 style="text-align: center"
+									>
+										报名中
+									</p>
+									<p
+									 v-else
+									 class="normal-tip by h-bg"
+									 style="text-align: center"
+									>
+										已结束
+									</p>
 								</div>
 							</div>
 						</div>
@@ -132,30 +179,37 @@ export default {
 				_this.list = res
 
 				_this.list.forEach((e) => {
-					e.annexArray[0] = e.annexArray[0].replace('/webServer/FileController/download/', process.env.VUE_APP_API_URL + '/FileController/download/')
-
+					e.annexArray[0] = e.annexArray[0].replace(
+					 '/webServer/FileController/download/',
+					 process.env.VUE_APP_API_URL + '/FileController/download/'
+					)
 				})
-
 			})
 		},
 		getRegisSignInfo() {
 			const _this = this
-			listRegisSignInfo({ userId: this.userId, referenceType: '2' }).then((res) => {
-				_this.regisSignList = res
-				_this.regisSignList.forEach((item) => {
-					console.log(this.url)
-					item.annexArray[0] = item.annexArray[0].replace('/server/FileController/download/', process.env.VUE_APP_API_URL + '/FileController/download/')
-
-					item.trainStartTime = this.$common.transBaseDateTime(item.trainStartTime)
-				})
-				console.log(_this.regisSignList)
-			}).catch(() => {
-			})
+			listRegisSignInfo({ userId: this.userId, referenceType: '2' })
+			 .then((res) => {
+				 _this.regisSignList = res
+				 _this.regisSignList.forEach((item) => {
+					 console.log(this.url)
+					 item.annexArray[0] = item.annexArray[0].replace(
+						'/server/FileController/download/',
+						process.env.VUE_APP_API_URL + '/FileController/download/'
+					 )
+
+					 item.trainStartTime = this.$common.transBaseDateTime(
+						item.trainStartTime
+					 )
+				 })
+				 console.log(_this.regisSignList)
+			 })
+			 .catch(() => {
+			 })
 		},
 		selectChange(value) {
 			let tel = true
-			this.tipList.forEach(i => {
-
+			this.tipList.forEach((i) => {
 				if (i.value === value) {
 					if (i.active) {
 						tel = false

文件差异内容过多而无法显示
+ 732 - 700
src/pages/settleIn/index.vue