| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <template>
- <view class="app-content">
- <view class="list">
- <view>
- <view class="video">
- <video id="myVideo" :src="`${constant.imgUrl}/getMyDebt.mp4`" :autoplay="true" object-fit="contain" style="width:700upx;height:1100upx;"></video>
- </view>
- </view>
- </view>
- <view style="text-align:center;margin-top:30upx;">
- <button class="admin-button-com big blue go-back" @click="goBack()">返回</button>
- </view>
- </view>
- </template>
- <script>
- export default {
- name: "loginRemind",
- components: {
- },
- mixins: [],
- data() {
- return {
- };
- },
- methods: {
- init(){
- },
- goBack(){
- uni.navigateBack()
- }
- },
- };
- </script>
- <style lang="scss" scoped>
- .app-content{
- padding:20upx 20upx 60upx 20upx;
- .title{
- font-weight: bold;
- font-size:40upx;
- margin-bottom:22upx;
- }
- .smallTitle{
- font-weight: bold;
- font-size:30upx;
- font-weight: bold;
- margin:25upx 0 25upx 0;
- }
- .info{
- font-size:30upx;
- margin-bottom:20upx;
- }
- .image{
- width:100%;
- margin-bottom:20upx;
- }
- .video{
- margin:0 auto;
- text-align: center;
- margin-bottom:10upx;
- }
- .book-button{
- margin-bottom:15upx;
- }
- .go-back{
- margin:0 auto;
- width:260upx;
- }
- }
- </style>
|