test #26

Merged
klaus merged 3 commits from test into main 2024-03-19 07:50:16 +00:00
4 changed files with 45 additions and 10 deletions

19
package-lock.json generated
View File

@ -13,6 +13,7 @@
"vue": "^2.6.11",
"vue-excel-xlsx": "^1.2.2",
"vue-router": "^3.2.0",
"vue-show-more-text": "^2.0.2",
"vue2-editor": "^2.10.3",
"vuedraggable": "^2.24.3",
"vuejs-datetimepicker": "^1.1.13",
@ -14602,6 +14603,15 @@
"resolved": "https://registry.npmjs.org/vue-router/-/vue-router-3.5.3.tgz",
"integrity": "sha512-FUlILrW3DGitS2h+Xaw8aRNvGTwtuaxrRkNSHWTizOfLUie7wuYwezeZ50iflRn8YPV5kxmU2LQuu3nM/b3Zsg=="
},
"node_modules/vue-show-more-text": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/vue-show-more-text/-/vue-show-more-text-2.0.2.tgz",
"integrity": "sha512-x/WuikWAx8Hm4gpZx6KHtJYiXDordGdSoXrd34lTiJeAnlT8Y7Yc0FfGBNdUv6mXncuET3LiRwwNz+X5gI+oiw==",
"dependencies": {
"core-js": "^3.6.5",
"vue": "^2.6.11"
}
},
"node_modules/vue-style-loader": {
"version": "4.1.3",
"resolved": "https://registry.npmjs.org/vue-style-loader/-/vue-style-loader-4.1.3.tgz",
@ -27443,6 +27453,15 @@
"resolved": "https://registry.npmjs.org/vue-router/-/vue-router-3.5.3.tgz",
"integrity": "sha512-FUlILrW3DGitS2h+Xaw8aRNvGTwtuaxrRkNSHWTizOfLUie7wuYwezeZ50iflRn8YPV5kxmU2LQuu3nM/b3Zsg=="
},
"vue-show-more-text": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/vue-show-more-text/-/vue-show-more-text-2.0.2.tgz",
"integrity": "sha512-x/WuikWAx8Hm4gpZx6KHtJYiXDordGdSoXrd34lTiJeAnlT8Y7Yc0FfGBNdUv6mXncuET3LiRwwNz+X5gI+oiw==",
"requires": {
"core-js": "^3.6.5",
"vue": "^2.6.11"
}
},
"vue-style-loader": {
"version": "4.1.3",
"resolved": "https://registry.npmjs.org/vue-style-loader/-/vue-style-loader-4.1.3.tgz",

View File

@ -15,6 +15,7 @@
"vue": "^2.6.11",
"vue-excel-xlsx": "^1.2.2",
"vue-router": "^3.2.0",
"vue-show-more-text": "^2.0.2",
"vue2-editor": "^2.10.3",
"vuedraggable": "^2.24.3",
"vuejs-datetimepicker": "^1.1.13",

View File

@ -122,13 +122,19 @@
</td>
<td>{{ item.title }}</td>
<td style="max-width: 350px !important; word-break:break-all; height: auto;">
{{ item.detail }}
<vue-show-more-text
:text="item.detail"
:lines="3"
/>
</td>
<td>{{ item.curationTitle || '없음' }}</td>
<td>{{ item.creatorNickname }}</td>
<td>{{ item.theme }}</td>
<td style="max-width: 200px !important; word-break:break-all; height: auto;">
{{ item.tags }}
<vue-show-more-text
:text="item.tags"
:lines="3"
/>
</td>
<td v-if="item.price > 0">
{{ item.price }} 코인
@ -369,11 +375,12 @@ import * as api from '@/api/audio_content'
import * as dynamicLink from "@/api/firebase_dynamic_link";
import VuetifyAudio from 'vuetify-audio'
import VueShowMoreText from 'vue-show-more-text'
export default {
name: "AudioContentList",
components: {VuetifyAudio},
components: {VuetifyAudio, VueShowMoreText},
data() {
return {

View File

@ -75,12 +75,21 @@
<td>{{ item.email }}</td>
<td>{{ item.nickname }}</td>
<td align="center">
<v-img
max-width="100"
max-height="100"
:src="item.profileUrl"
class="rounded-circle"
/>
<div>
<v-img
max-width="100"
max-height="100"
:src="item.profileUrl"
class="rounded-circle"
/>
<br>
<a
:href="item.profileUrl"
class="v-btn v-btn--outlined"
>
Download Image
</a>
</div>
</td>
<td>{{ item.userType }}</td>
<td>
@ -363,5 +372,4 @@ export default {
</script>
<style scoped>
</style>