You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1020 B
Vue

<template>
<view class="g_flex_column_center" style="min-height: 69px;">
<view class="btn" @click="goLogin">
8 months ago
{{ text }}
<view class="u-dom" >
<u-upload :action="action" :file-list="fileList" ></u-upload>
</view>
<view class="g_text_c g_fs_13" style="color: #c0c4cc;" v-if="subText">{{subText}}</view>
</view>
</view>
</template>
<script>
/*
*/
export default{
data(){
return{
8 months ago
action: 'http://www.example.com/upload',
fileList: [
{
url: 'http://pics.sc.chinaz.com/files/pic/pic9/201912/hpic1886.jpg',
}
]
}
},
props:{
text:{
type:String,
default:()=>{
return "暂无数据"
}
},
subText:{
type:String,
default:()=>{
return ""
}
},
},
methods:{
goLogin(){
let that = this;
if(that.text == '请登录'){
uni.reLaunch({
url: '/pages/login/index?path=' + that.G.getPath().path + '&level=' + that.G.getPath().level
});
}
}
}
}
</script>
<style>
</style>