This commit is contained in:
@@ -13,6 +13,7 @@
|
|||||||
<!-- Note: this is just a copy of the inner part of read/write version below
|
<!-- Note: this is just a copy of the inner part of read/write version below
|
||||||
with the action taken out -->
|
with the action taken out -->
|
||||||
<div class="mt-4" :style="cardTextStyle()">
|
<div class="mt-4" :style="cardTextStyle()">
|
||||||
|
<v-divider v-if="!hasFiles()"></v-divider>
|
||||||
<v-list three-line>
|
<v-list three-line>
|
||||||
<v-list-item
|
<v-list-item
|
||||||
v-for="item in displayList"
|
v-for="item in displayList"
|
||||||
@@ -194,6 +195,12 @@ export default {
|
|||||||
cardTextStyle() {
|
cardTextStyle() {
|
||||||
return "height: " + this.height + "px;overflow-y:auto;";
|
return "height: " + this.height + "px;overflow-y:auto;";
|
||||||
},
|
},
|
||||||
|
hasFiles(){
|
||||||
|
if(!this.displayList || this.displayList.length==0){
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
},
|
||||||
upload() {
|
upload() {
|
||||||
//similar code in wiki-control
|
//similar code in wiki-control
|
||||||
let vm = this;
|
let vm = this;
|
||||||
|
|||||||
Reference in New Issue
Block a user