Commit 982867ce authored by 刘攀's avatar 刘攀

修复bug

parent 7a9d97f9
......@@ -1787,6 +1787,7 @@
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
flex: 1;
}
.retail-wrapper .list-style-block .goods-price {
......
......@@ -649,7 +649,7 @@
position: relative;
padding: 20rpx;
overflow: unset;
line-height: unset;
line-height: normal;
box-sizing: border-box;
}
......
......@@ -131,9 +131,13 @@ class Fetch {
complete: () => {
const endTime = new Date().getTime()
let tmp = {}
tmp[url] = endTime - startTime
logger.push('INTERFACE_TIME', tmp)
// let tmp = {}
// tmp[url] = endTime - startTime
// logger.push('INTERFACE_TIME', tmp)
logger.push('INTERFACE_TIME', {
url,
time: endTime - startTime
})
}
})
}
......
......@@ -6,6 +6,7 @@ class Logger {
this.check = key => {
if (this.log[key].length > 10) {
util.logger(key, this.log[key])
// util.logger(key, null, ...this.log[key])
this.log[key] = []
}
}
......
......@@ -515,6 +515,11 @@ class Util {
let systemInfo = native.getSystemInfoSync()
native.getNetworkType().then(res => {
systemInfo.networkType = res.networkType
// platformModel.logger(Object.assign({
// type,
// data,
// systemInfo
// }, ...other))
platformModel.logger({
type,
data,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment