Browse Source

店铺去掉区域,时间格式化处理

qzyReal 1 year ago
parent
commit
c33a409ae7
5 changed files with 37 additions and 9 deletions
  1. 2 2
      common/http.js
  2. 34 1
      common/util.js
  3. 1 1
      pages/index/index.vue
  4. 0 4
      pages/shop/detail.vue
  5. 0 1
      pages/shop/shop.vue

+ 2 - 2
common/http.js

@@ -1,6 +1,6 @@
 
-// const ip = 'http://127.0.0.1:8080'; //线下
-const ip = 'http://hs-server.aseanbusiness.cn'; //线上
+const ip = 'http://127.0.0.1:8080'; //线下
+// const ip = 'http://hs-server.aseanbusiness.cn'; //线上
 
 //const ip = 'http://192.168.88.36:8080'; //线下
 

+ 34 - 1
common/util.js

@@ -210,7 +210,39 @@ const format = (obj) => {
 	Minutes = Minutes > 9 ? Minutes : '0' + Minutes;
 	return `${year}-${month}-${day}` + ' ' + Hours + ':' + Minutes;
 }
+// 将时间戳转化为指定时间
+// way:方式(1=年月日,2=年月日时分秒)默认1,  也可以指定格式:yyyy-MM-dd HH:mm:ss  
+const forDate = (inputTime, way) => {
+	var date = new Date(inputTime);
+	var y = date.getFullYear();
+	var m = date.getMonth() + 1;
+	m = m < 10 ? ('0' + m) : m;
+	var d = date.getDate();
+	d = d < 10 ? ('0' + d) : d;
+	var h = date.getHours();
+	h = h < 10 ? ('0' + h) : h;
+	var minute = date.getMinutes();
+	var second = date.getSeconds();
+	minute = minute < 10 ? ('0' + minute) : minute;
+	second = second < 10 ? ('0' + second) : second;
+	var ms = date.getMilliseconds();
 
+	way = way || 1;
+	// way == 1  年月日
+	if (way === 1) {
+		return y + '-' + m + '-' + d;
+	}
+	// way == 1  年月日时分秒 
+	if (way === 2) {
+		return y + '-' + m + '-' + d + ' ' + h + ':' + minute + ':' + second;
+	}
+	// way == 具体格式   标准格式: yyyy-MM-dd HH:mm:ss
+	if (typeof way == 'string') {
+		return way.replace("yyyy", y).replace("MM", m).replace("dd", d).replace("HH", h).replace("mm", minute)
+			.replace("ss", second).replace("ms", ms);
+	}
+	return y + '-' + m + '-' + d;
+}
 module.exports = {
 	formatTime: formatTime,
 	formatLocation: formatLocation,
@@ -222,5 +254,6 @@ module.exports = {
 	getDaysBetween: getDaysBetween,
 	getdiffdate: getdiffdate,
 	selectDictLabel: selectDictLabel,
-	hasPermi:hasPermi
+	hasPermi: hasPermi,
+	forDate:forDate
 }

+ 1 - 1
pages/index/index.vue

@@ -46,7 +46,7 @@
 								<text class="icon">&#xe639;</text>
 								<text>{{ item.readCount }}</text>
 							</view>
-							<view class="releaseTime">{{ item.releaseTime }}</view>
+							<view class="releaseTime">{{ util.forDate(item.releaseTime,'yyyy-MM-dd HH:mm') }}</view>
 						</view>
 					</view>
 				</view>

+ 0 - 4
pages/shop/detail.vue

@@ -20,10 +20,6 @@
 					<text class="desc">{{item.tradeAreaName}}</text>
 				</view>
 				<view class="item">
-					<text class="label">区域</text>
-					<text class="desc">{{item.area}}</text>
-				</view>
-				<view class="item">
 					<text class="label">经营范围</text>
 					<text class="desc">{{item.bnsScope}}</text>
 				</view>

+ 0 - 1
pages/shop/shop.vue

@@ -13,7 +13,6 @@
 					<view style="float: left;margin-right: 10px;">铺主:{{item.ownerName}}</view>
 					<view style="">编号:{{item.shopNo}}</view>
 					<view class="tradeAreaName">{{ item.tradeAreaName }}</view>
-					<view class="date">区域:{{ item.area }}</view>
 				</view>
 				<view class="clear"></view>
 			</view>