소스 검색

添加了关于水母星球页面里的 视频

yerong 4 년 전
부모
커밋
460292daae
3개의 변경된 파일36개의 추가작업 그리고 7개의 파일을 삭제
  1. 1 1
      dist/wx
  2. 4 4
      src/pages/agent/invite_card_inventory/index.vue
  3. 31 2
      src/pages/none/index.vue

+ 1 - 1
dist/wx

@@ -1 +1 @@
-Subproject commit e26095c4d3497a8ed6dc3a45ed7e568b11a3014a
+Subproject commit d269c3d57630e0bf795ac52429b28cd1255c06e4

+ 4 - 4
src/pages/agent/invite_card_inventory/index.vue

@@ -56,12 +56,12 @@
               style="background-image:url(https://img.shuimuai.com/web/icon_dingdan.png);"></view>
         <view slot="title" class="flex justify-between">
           <view>
-            <text class="text-sm" v-if="cu.status == 1">未注册</text>
-            <text class="text-sm" v-else>{{ cu.user_name }}</text>
+            <text class="text-sm" v-if="cu.status == 2">未注册</text>
+            <text class="text-sm" v-if="cu.status == 1">{{ cu.user_name }}</text>
           </view>
           <view>
-            <text class="text-gray text-sm" v-if="cu.status == 1">{{ cu.invite_time }}</text>
-            <text class="text-gray text-sm" v-if="cu.status == 2">{{ cu.bind_time }}</text>
+            <text class="text-gray text-sm" v-if="cu.status == 2">{{ cu.invite_time }}</text>
+            <text class="text-gray text-sm" v-if="cu.status == 1">{{ cu.bind_time }}</text>
           </view>
         </view>
 

+ 31 - 2
src/pages/none/index.vue

@@ -1,6 +1,24 @@
 <template>
   <div id="index_login_container" class="animation-slide-right">
     <img src="https://img.shuimuai.com/web/none_page.png" alt="" class="cover">
+
+    <div class="video_container">
+      <div class="video_item">
+        <!--    故事-->
+        <view class="padding-tb">
+          <text>水母星球IP故事</text>
+        </view>
+        <video src="https://img.shuimuai.com/mpapp/story.mp4"></video>
+      </div>
+      <div class="video_item">
+        <!--    说明-->
+        <view class="padding-tb">
+          <text>水母星球产品使用说明</text>
+        </view>
+        <video src="https://img.shuimuai.com/mpapp/desc.mp4"></video>
+      </div>
+    </div>
+
   </div>
 </template>
 <script>
@@ -9,12 +27,23 @@ export default {
 }
 </script>
 <style scoped>
-#index_login_container{
-  height: 812px;
+#index_login_container {
   background-color: #31295B;
 }
+
 .cover {
   width: 100%;
   height: 667px;
 }
+.video_container{
+  color: #ffffff;
+  padding: 10px 0px;
+}
+.video_item{
+  text-align: center;
+  margin: 10px 0px;
+}
+video{
+  width: 100%;
+}
 </style>