Bladeren bron

feat(shareDialog): add qrcode usage tip text

add a tip note that the share link only works for ipad and pc
lsc 2 weken geleden
bovenliggende
commit
f5e07d0dfb
1 gewijzigde bestanden met toevoegingen van 7 en 0 verwijderingen
  1. 7 0
      src/components/pptEasyClass/shareDialog.vue

+ 7 - 0
src/components/pptEasyClass/shareDialog.vue

@@ -21,6 +21,7 @@
         </el-input>
         <div class="qrcode" ref="qrCodeRef"></div>
 				<el-link class="qrcodeBtn" type="primary" @click="downloadQrCode()">下载二维码</el-link>
+        <div class="qrcodeTip">注:此链接仅供ipad端和电脑端使用</div>
       </div>
       <!-- <span slot="footer" class="shareFooter">
         <el-button @click="close()">{{ lang.ssCancelBtn }}</el-button>
@@ -356,4 +357,10 @@ export default {
 	justify-content: center;
 	margin-top: 10px;
 }
+
+.qrcodeTip{
+	font-size: 12px;
+	color: #7f7f7f;
+	margin-top: 5px;
+}
 </style>