Files
ccc-devtools/index.html
LiangSai e55daf7c1b 修复bug: 如果url具有?号带参数,缓存图片会失效,显示不出来。
index.html
<img :src="window.location.href + row.preview" style="max-height: 40px;max-width: 120px;" v-if="row.preview">
============>
<img :src="window.location.protocol + '//' + window.location.host + '/' + row.preview" style="max-height: 40px;max-width: 120px;" v-if="row.preview">
2019-07-02 20:58:52 +08:00

11 KiB