yiming
2024-04-12 2aab00f91bd4cda4715f1a141f4d26a3667a91b6
视频详情bug
9个文件已修改
88 ■■■■■ 已修改文件
packageDomain/pages/resourceDetails/myAudio/index.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
packageDomain/pages/resourceDetails/myAudio/index.wxml 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
packageDomain/pages/resourceDetails/myAudio/index.wxss 12 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
packageDomain/pages/resourceDetails/myVideo/index.js 16 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
packageDomain/pages/resourceDetails/myVideo/index.wxml 7 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
packageDomain/pages/resourceDetails/myVideo/index.wxss 8 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
packagePersonal/pages/aboutUs/index.wxml 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
packagePersonal/pages/aboutUs/index.wxss 38 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/cart/index.js 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
packageDomain/pages/resourceDetails/myAudio/index.js
@@ -218,7 +218,7 @@
  },
  showDialog(e) {
    this.setData({
      submitTitle: this.data.bookName,
      submitTitle: this.data.titleName,
      dialogKey: true,
      textvalue: ''
    });
packageDomain/pages/resourceDetails/myAudio/index.wxml
@@ -12,7 +12,7 @@
  </view>
  <view class="audioPlayerBox">
    <view class="audioBackground" style="background-image: url('http://182.92.203.7:3007/jsek/website/image/video-bg.png');">
    <view class="audioBackground" style="background-image: url('https://jsek.bnuic.com/website/image/video-bg.png');">
      <image src="/static/images/resourceDetailsMyAudio/cd.png" alt="" />
    </view>
    <!-- 视频播放的按钮 -->
packageDomain/pages/resourceDetails/myAudio/index.wxss
@@ -23,7 +23,6 @@
  border-bottom: 1px #f4f4f4 solid;
  padding-bottom: 20rpx;
  font-weight: bold;
}
.contentBox {
@@ -43,16 +42,14 @@
.custom-panel {
  width: 750rpx;
}
.contentBox .takeNotes {
  position: absolute;
  top: 5rpx;
  top: 0rpx;
  right: 0;
  width: 350rpx;
  border-bottom: 1px solid #f4f4f4;
  width: 353rpx;
  border-bottom: 1rpx solid #e7e7e7;
}
.takeNotes image {
@@ -119,7 +116,6 @@
.buttonBox {
  display: flex;
  justify-content: center;
}
.detailsName {
@@ -271,7 +267,7 @@
.audioBackground {
  flex: 1;
  background-image: url('http://182.92.203.7:3007/jsek/website/image/video-bg.png');
  background-image: url('https://jsek.bnuic.com/website/image/video-bg.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
packageDomain/pages/resourceDetails/myVideo/index.js
@@ -10,7 +10,7 @@
    noteList: [],
    navBarHeight: '',
    barHeight: '',
    flag: false, // 输入框是否显示
    flag: true, // 输入框是否显示
    tabPanelstyle: 'display:flex;justify-content:center;align-items:center;',
    activeValues: [0],
    dialogKey: false,
@@ -179,10 +179,10 @@
  showDialog(e) {
    this.setData({
      submitTitle: this.data.bookName,
      dialogKey: true,
      textvalue: ''
      dialogKey: true,
      textvalue: '',
      submitTitle: this.data.titleName
    });
  },
@@ -337,7 +337,7 @@
  // 标题输入框值
  inputChange(e) {
    this.setData({
      titleName: e.detail.value
      submitTitle: e.detail.value
    })
  },
@@ -347,7 +347,7 @@
        icon: 'error',
        title: '请填写笔记内容',
      })
    } else if (!this.data.titleName) {
    } else if (!this.data.submitTitle) {
      return wx.showToast({
        icon: 'error',
        title: '请填写笔记标题',
@@ -430,11 +430,9 @@
      submitType: "edit",
      textvalue: note.content,
      submitTitle: note.name,
      noteId: note.id,
      dialogKey: true,
    })
    console.log(this.data.submitTitle);
    // this.showDialog()
  },
@@ -519,7 +517,7 @@
      return wx.getUserProfile({
        desc: '用户登录',
        success: (res) => {
          // console.log(res);
          console.log(res);
        }
      })
    }
packageDomain/pages/resourceDetails/myVideo/index.wxml
@@ -1,8 +1,7 @@
<import src="index.skeleton.wxml" />
<template is="skeleton" wx:if="{{loading}}" />
<view hidden="{{hidden}}">
<view wx:if="{{!hidden}}">
  <view style="width: 100%; height: {{barHeight}}px; "></view>
  <view class="nacigationBar" style="width: 70%; height: {{navBarHeight}}px;">
    <view>
@@ -84,11 +83,11 @@
    <view class="popup">
      <view slot="title">
        <view class="title-text" wx:if="{{!flag}}">
          <text class="note-title">{{titleName}}</text>
          <text class="note-title">{{submitTitle}}</text>
          <t-image src="/static/images/bookService/detail/edit.png" class="edit-icon" bind:tap="changeTitle" data-value="{{true}}"></t-image>
        </view>
        <view wx:else>
          <t-input value="{{titleName}}" style="{{inputStyle}}" data-value="{{false}}" bind:enter="changeTitle" bind:blur="changeTitle" maxlength="{{50}}" bind:change="inputChange"></t-input>
          <t-input value="{{submitTitle}}" style="{{inputStyle}}" data-value="{{false}}" bind:enter="changeTitle" bind:blur="changeTitle" maxlength="{{50}}" bind:change="inputChange"></t-input>
        </view>
      </view>
packageDomain/pages/resourceDetails/myVideo/index.wxss
@@ -73,13 +73,11 @@
}
.contentBox .takeNotes {
  position: absolute;
  top: 5rpx;
  top: 0rpx;
  right: 0;
  width: 350rpx;
  border-bottom: 1px solid #f4f4f4;
  width: 353rpx;
  border-bottom: 1rpx solid #e7e7e7;
}
.takeNotes image {
packagePersonal/pages/aboutUs/index.wxml
@@ -21,6 +21,6 @@
    </view>
  </view>
  <view wx:else class="aboutText" style="margin: 5rpx;">
    <rich-text style="width: 100%;" space="emsp" nodes="{{aboutText}}"></rich-text>
    <rich-text class="richTextBox" style="width: 100%;" space="emsp" nodes="{{aboutText}}" mode="compat"></rich-text>
  </view>
</view>
packagePersonal/pages/aboutUs/index.wxss
@@ -44,4 +44,42 @@
  position: sticky;
  top: 0px;
  background-color: #fff;
}
.richTextBox {
  line-height: 1.4;
  font-size: 14px;
}
.richTextBox {
  margin: revert;
  padding: revert;
  border: revert;
  font: revert;
  vertical-align: revert;
  color: #000;
}
.richTextBox p {
  display: block;
  text-align: center;
  -webkit-margin-before: 1em;
  margin-block-start: 1em;
  -webkit-margin-after: 1em;
  margin-block-end: 1em;
  -webkit-margin-start: 0;
  margin-inline-start: 0;
  -webkit-margin-end: 0;
  margin-inline-end: 0;
}
.richTextBox td {
  border-bottom: 1px dashed;
  border-right: 1px dashed;
  border-width: 1px !important;
}
.richTextBox table {
  border-width: 2px !important;
}
pages/cart/index.js
@@ -273,7 +273,6 @@
  },
  // 下拉函数
  onPullDownRefresh() {
    this.setData({
      start: 1,
      checkAll: false,