Merge pull request 'xbx' (#104) from xbx into master
Reviewed-on: http://git.luyuan.tk/luyuan/beelink/pulls/104
This commit is contained in:
		
						commit
						251a72282c
					
				@ -115,6 +115,7 @@
 | 
			
		||||
        .more {
 | 
			
		||||
        color: #999999;
 | 
			
		||||
        font-size: 11px;
 | 
			
		||||
        cursor: pointer;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
    .info {
 | 
			
		||||
@ -158,6 +159,7 @@
 | 
			
		||||
        border: 1px solid #09ae99;
 | 
			
		||||
        line-height: 23px;
 | 
			
		||||
        text-align: center;
 | 
			
		||||
        cursor: pointer;
 | 
			
		||||
        color: #09ae99;
 | 
			
		||||
        border-radius: 3px;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
@ -41,6 +41,7 @@
 | 
			
		||||
    border-radius: 17px;
 | 
			
		||||
    overflow: hidden;
 | 
			
		||||
    display: flex;
 | 
			
		||||
    cursor: pointer;
 | 
			
		||||
    flex-direction: column;
 | 
			
		||||
    position: relative;
 | 
			
		||||
    box-shadow: 0px 5px 6px 0px rgba(158, 158, 158, 0.11);
 | 
			
		||||
 | 
			
		||||
@ -74,6 +74,7 @@
 | 
			
		||||
            border-radius: 3px;
 | 
			
		||||
            margin-right: 29px;
 | 
			
		||||
            color: #08AE98;
 | 
			
		||||
            cursor: pointer;
 | 
			
		||||
            font-size: 13px;
 | 
			
		||||
            line-height: 29px;
 | 
			
		||||
            font-weight: bold;
 | 
			
		||||
 | 
			
		||||
@ -73,6 +73,7 @@
 | 
			
		||||
            height: 50px;
 | 
			
		||||
            padding: 0 18px;
 | 
			
		||||
            justify-content: space-between;
 | 
			
		||||
            cursor: pointer;
 | 
			
		||||
            .route{
 | 
			
		||||
                display: flex;
 | 
			
		||||
                .icon{
 | 
			
		||||
 | 
			
		||||
@ -23,7 +23,7 @@
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="bottom">
 | 
			
		||||
            <div class="date">{{date}}</div>
 | 
			
		||||
            <div class="reply" @click="reply(username)">{{lan.$t('huifu ')}}</div>
 | 
			
		||||
            <div class="reply" @click="reply(username)">{{lan.$t('huifu')}}</div>
 | 
			
		||||
        </div>
 | 
			
		||||
 
 | 
			
		||||
         <div class="huifu" v-if="ifshow">
 | 
			
		||||
@ -122,6 +122,7 @@
 | 
			
		||||
</style>
 | 
			
		||||
<script lang="ts">
 | 
			
		||||
import { getcommentlist } from '@/api';
 | 
			
		||||
import { useI18n } from '@/utils/i18n';
 | 
			
		||||
import { defineComponent, onMounted, ref } from 'vue';
 | 
			
		||||
import { useRoute } from 'vue-router';
 | 
			
		||||
import ReviewItemtwo from "./ReviewItemtwo.vue"
 | 
			
		||||
@ -154,6 +155,7 @@ export default defineComponent({
 | 
			
		||||
    },
 | 
			
		||||
    setup(prop,context){
 | 
			
		||||
        // console.log(1)
 | 
			
		||||
        const lan = useI18n()
 | 
			
		||||
        const replylist =ref({})
 | 
			
		||||
        const reviewlist=ref({})
 | 
			
		||||
        const videoid=ref(useRoute().query.id)
 | 
			
		||||
@ -203,7 +205,8 @@ export default defineComponent({
 | 
			
		||||
            replylist,
 | 
			
		||||
            reviewlist,
 | 
			
		||||
            refresh,
 | 
			
		||||
            ifshow
 | 
			
		||||
            ifshow,
 | 
			
		||||
            lan
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
})
 | 
			
		||||
 | 
			
		||||
@ -103,6 +103,7 @@
 | 
			
		||||
      color: #fff;
 | 
			
		||||
      line-height: 23px;
 | 
			
		||||
      text-align: center;
 | 
			
		||||
      cursor: pointer;
 | 
			
		||||
    }
 | 
			
		||||
    .modify {
 | 
			
		||||
      background-color: #08ae98;
 | 
			
		||||
 | 
			
		||||
@ -45,6 +45,7 @@
 | 
			
		||||
    flex-direction: column;
 | 
			
		||||
    position: relative;
 | 
			
		||||
    box-shadow: 0px 5px 6px 0px rgba(158, 158, 158, 0.11);
 | 
			
		||||
    cursor: pointer;
 | 
			
		||||
    .cover{
 | 
			
		||||
        width: 100%;
 | 
			
		||||
        height: 127px;
 | 
			
		||||
 | 
			
		||||
@ -76,11 +76,15 @@
 | 
			
		||||
            width: 62px;
 | 
			
		||||
            height: 22px;
 | 
			
		||||
            margin-top: 30px;
 | 
			
		||||
            background-color: #07AD97;
 | 
			
		||||
            background-color: #ccc;
 | 
			
		||||
            text-align: center;
 | 
			
		||||
            line-height: 22px;
 | 
			
		||||
            color: #fff;
 | 
			
		||||
            cursor: pointer;
 | 
			
		||||
            font-size: 9px;
 | 
			
		||||
            &:hover{
 | 
			
		||||
                background-color: #07AD97;
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										
											BIN
										
									
								
								src/static/images/left.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								src/static/images/left.png
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 After Width: | Height: | Size: 421 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/static/images/right.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								src/static/images/right.png
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 After Width: | Height: | Size: 423 B  | 
@ -107,6 +107,9 @@ export default defineComponent({
 | 
			
		||||
        cursor: pointer;
 | 
			
		||||
        text-align: center;
 | 
			
		||||
        width: 54px;
 | 
			
		||||
        &:hover{
 | 
			
		||||
          color: #08ae98;
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
      .on {
 | 
			
		||||
        color: #08ae98;
 | 
			
		||||
 | 
			
		||||
@ -22,7 +22,7 @@
 | 
			
		||||
                <div class="user-name" v-if="showname">
 | 
			
		||||
                    <div
 | 
			
		||||
                        class="update-btn"
 | 
			
		||||
                        @click="updateUserName"
 | 
			
		||||
                       
 | 
			
		||||
                        style="color: #fff; cursor: unset"
 | 
			
		||||
                    >
 | 
			
		||||
                        {{ lan.$t("xiugai") }}
 | 
			
		||||
@ -1035,6 +1035,7 @@ export default defineComponent({
 | 
			
		||||
                                            width: 15px;
 | 
			
		||||
                                            height: 15px;
 | 
			
		||||
                                            margin-right: 6px;
 | 
			
		||||
                                            cursor: pointer;
 | 
			
		||||
                                        }
 | 
			
		||||
                                    }
 | 
			
		||||
                                }
 | 
			
		||||
@ -1123,8 +1124,8 @@ export default defineComponent({
 | 
			
		||||
                    }
 | 
			
		||||
                    .confirm-btn {
 | 
			
		||||
                        display: inline-block;
 | 
			
		||||
                        background: #07ad97;
 | 
			
		||||
                        border-radius: 2px;
 | 
			
		||||
                        background: #ccc;
 | 
			
		||||
                        font-size: 9px;
 | 
			
		||||
                        font-weight: 500;
 | 
			
		||||
                        color: #ffffff;
 | 
			
		||||
@ -1137,7 +1138,7 @@ export default defineComponent({
 | 
			
		||||
                    }
 | 
			
		||||
 | 
			
		||||
                    .confirm-btn:hover {
 | 
			
		||||
                        background: #ccc;
 | 
			
		||||
                        background: #07ad97;
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
                .password-container {
 | 
			
		||||
@ -1202,7 +1203,7 @@ export default defineComponent({
 | 
			
		||||
        .submit-btn {
 | 
			
		||||
            width: 63px;
 | 
			
		||||
            height: 23px;
 | 
			
		||||
            background: #08ae98;
 | 
			
		||||
            background: #ccc;
 | 
			
		||||
            border-radius: 3px;
 | 
			
		||||
            font-size: 10px;
 | 
			
		||||
            font-weight: 500;
 | 
			
		||||
@ -1213,7 +1214,7 @@ export default defineComponent({
 | 
			
		||||
            user-select: none;
 | 
			
		||||
        }
 | 
			
		||||
        .submit-btn:hover {
 | 
			
		||||
            background: #ccc;
 | 
			
		||||
            background: #08ae98;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
    ::v-deep(.ant-upload-list) {
 | 
			
		||||
 | 
			
		||||
@ -211,7 +211,8 @@ export default defineComponent({
 | 
			
		||||
            sub,
 | 
			
		||||
            accountlist,
 | 
			
		||||
            store,
 | 
			
		||||
            lan
 | 
			
		||||
            lan,
 | 
			
		||||
            navto
 | 
			
		||||
        };
 | 
			
		||||
    },
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
@ -396,11 +396,14 @@ export default defineComponent({
 | 
			
		||||
        padding: 0;
 | 
			
		||||
        width: 63px;
 | 
			
		||||
        height: 23px;
 | 
			
		||||
        background: #08ae98;
 | 
			
		||||
        background: #ccc;
 | 
			
		||||
        border-radius: 3px;
 | 
			
		||||
        font-size: 10px;
 | 
			
		||||
        font-weight: 500;
 | 
			
		||||
        color: #ffffff;
 | 
			
		||||
        &:hover{
 | 
			
		||||
          background: #08ae98;
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
    .video-cover {
 | 
			
		||||
 | 
			
		||||
@ -597,11 +597,14 @@ export default defineComponent({
 | 
			
		||||
                padding: 0;
 | 
			
		||||
                width: 63px;
 | 
			
		||||
                height: 23px;
 | 
			
		||||
                background: #08ae98;
 | 
			
		||||
                background: #ccc;
 | 
			
		||||
                border-radius: 3px;
 | 
			
		||||
                font-size: 10px;
 | 
			
		||||
                font-weight: 500;
 | 
			
		||||
                color: #ffffff;
 | 
			
		||||
                &:hover{
 | 
			
		||||
                    background: #08ae98;
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
        .item-cover {
 | 
			
		||||
 | 
			
		||||
@ -188,7 +188,7 @@
 | 
			
		||||
              <td>{{i.typename}}</td>
 | 
			
		||||
              <td class="moneyadd moneyreverse" v-if="i.type==2">-¥{{i.money}}</td>
 | 
			
		||||
              <td class="moneyadd " v-else>+¥{{i.money}}</td>
 | 
			
		||||
              <td @click="navto(4,i.accountid)">查看详情</td>
 | 
			
		||||
              <td style="cursor: pointer;" @click="navto(4,i.accountid)">查看详情</td>
 | 
			
		||||
            </tr>
 | 
			
		||||
         
 | 
			
		||||
          </tbody>
 | 
			
		||||
@ -347,6 +347,9 @@ export default defineComponent({
 | 
			
		||||
      text-align: center;
 | 
			
		||||
      width: 40px;
 | 
			
		||||
      font-size:11px;
 | 
			
		||||
      &:hover{
 | 
			
		||||
        color: #08ae98;
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
    .on {
 | 
			
		||||
      color: #08ae98;
 | 
			
		||||
@ -397,6 +400,7 @@ export default defineComponent({
 | 
			
		||||
      border-radius: 3px;
 | 
			
		||||
      margin-top: 35px;
 | 
			
		||||
      margin-right: 12px;
 | 
			
		||||
      cursor: pointer;
 | 
			
		||||
    }
 | 
			
		||||
    .topbtn1 {
 | 
			
		||||
      color: #d22c2e;
 | 
			
		||||
@ -452,7 +456,7 @@ export default defineComponent({
 | 
			
		||||
    .add {
 | 
			
		||||
      width: 371px;
 | 
			
		||||
      height: 228px;
 | 
			
		||||
 | 
			
		||||
      cursor: pointer;
 | 
			
		||||
      background: #ffffff;
 | 
			
		||||
      border-radius: 17px;
 | 
			
		||||
      color: #08ae98;
 | 
			
		||||
@ -515,6 +519,7 @@ export default defineComponent({
 | 
			
		||||
          text-align: center;
 | 
			
		||||
          line-height: 23px;
 | 
			
		||||
          margin-right: 11px;
 | 
			
		||||
          cursor: pointer;
 | 
			
		||||
        }
 | 
			
		||||
        .btn1 {
 | 
			
		||||
          width: 46px;
 | 
			
		||||
@ -525,6 +530,7 @@ export default defineComponent({
 | 
			
		||||
          text-align: center;
 | 
			
		||||
          line-height: 23px;
 | 
			
		||||
          color: #d12c2e;
 | 
			
		||||
          cursor: pointer;
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
      .zhanghao {
 | 
			
		||||
 | 
			
		||||
@ -97,6 +97,9 @@
 | 
			
		||||
            cursor: pointer;
 | 
			
		||||
            text-align: center;
 | 
			
		||||
            width: 54px;
 | 
			
		||||
            &:hover{
 | 
			
		||||
                color: #08ae98;
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
        .on {
 | 
			
		||||
            color: #08ae98;
 | 
			
		||||
 | 
			
		||||
@ -119,6 +119,9 @@
 | 
			
		||||
        cursor: pointer;
 | 
			
		||||
        text-align: center;
 | 
			
		||||
        width: 54px;
 | 
			
		||||
        &:hover{
 | 
			
		||||
          color: #08ae98;
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
      .on {
 | 
			
		||||
        color: #08ae98;
 | 
			
		||||
 | 
			
		||||
@ -2,7 +2,7 @@
 | 
			
		||||
    <div class="date">
 | 
			
		||||
        <div class="head">
 | 
			
		||||
            <div @click="shang">
 | 
			
		||||
                <img src="" alt=""> 
 | 
			
		||||
                <img src="../../static/images/left.png" alt=""> 
 | 
			
		||||
                上一月
 | 
			
		||||
            </div>
 | 
			
		||||
            {{month.year}}年{{month.yue}}月
 | 
			
		||||
@ -11,7 +11,7 @@
 | 
			
		||||
            </a-button>
 | 
			
		||||
            <div @click="xia">
 | 
			
		||||
                下一月
 | 
			
		||||
                <img src="" alt="">
 | 
			
		||||
                <img src="../../static/images/right.png" alt="">
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="yue">
 | 
			
		||||
@ -61,6 +61,7 @@
 | 
			
		||||
            align-items: center;
 | 
			
		||||
            font-size: 13px;
 | 
			
		||||
            color: #0DBBA4;
 | 
			
		||||
            cursor: pointer;
 | 
			
		||||
            >img{
 | 
			
		||||
                width: 7px;
 | 
			
		||||
                height: 11px;
 | 
			
		||||
 | 
			
		||||
@ -2,14 +2,14 @@
 | 
			
		||||
    <div class="week">
 | 
			
		||||
        <div class="head">
 | 
			
		||||
            <div @click="zhou--">
 | 
			
		||||
                <img src="" alt="" />
 | 
			
		||||
                <img src="../../static/images/left.png" alt="" />
 | 
			
		||||
                上一周
 | 
			
		||||
            </div>
 | 
			
		||||
            {{week.year}}年{{week.yue}}月
 | 
			
		||||
            <a-button type="primary" class="button" @click="navto()"> 月日历 </a-button>
 | 
			
		||||
            <div @click="zhou++">
 | 
			
		||||
                下一周
 | 
			
		||||
                <img src="" alt="" />
 | 
			
		||||
                <img src="../../static/images/right.png" alt="" />
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="week">
 | 
			
		||||
@ -83,6 +83,7 @@
 | 
			
		||||
        > div {
 | 
			
		||||
            display: flex;
 | 
			
		||||
            align-items: center;
 | 
			
		||||
            cursor: pointer;
 | 
			
		||||
            font-size: 13px;
 | 
			
		||||
            color: #0dbba4;
 | 
			
		||||
            > img {
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user