This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
yiyun-fe
/
yiyunjianzhu-vue
Watch
4
Star
0
Fork
0
Code
Pull Requests
0
Releases
0
Activity
Browse Source
Merge branch 'dev' of
http://47.104.91.134:3000/yiyun-fe/yiyunjianzhu-vue
into dev
dev-remain
revive
4 years ago
parent
ff58ca0972
79ca4687d4
commit
125d902d7b
2 changed files
with
3 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/services/system.js
+2
-1
src/views/main_web/watchall/components/title.vue
+ 1
- 1
src/services/system.js
View File
@@ -153,7 +153,7 @@ const system = {
return {
fileName,
extension,
relativePath: relativePath.
replace(/(\\)+/g,
'/'),
relativePath: relativePath.
split('\\').filter(identity).join(
'/'),
fullPath: absolutePath,
};
});
+ 2
- 1
src/views/main_web/watchall/components/title.vue
View File
@@ -1,7 +1,8 @@
<template>
<div class="top">
<div class="title"><slot name="center">{{ topTitle}}</slot></div>
<div class="right"><slot name="right"><img class="yiyun_icon enlarge-btn" src="static/img/放大.svg"/></slot></div>
<!-- <div class="right"><slot name="right"><img class="yiyun_icon enlarge-btn" src="static/img/放大.svg"/></slot></div> -->
<div class="right"><slot name="right"></slot></div>
</div>
</template>
Write
Preview
Loading…
Cancel
Save