Commit bb83c5be authored by wangxuelai's avatar wangxuelai

'最新代码提交'

parent af1d9693
......@@ -69,6 +69,7 @@ Page({
page: this.data.page,
perPage: this.data.perPage,
school_id:this.data.sid,
first_id: this.data.id
}).then((res) => {
const { code, data } = res;
this.setData({
......@@ -80,6 +81,7 @@ Page({
if (data.total) {
this.data.total = data.total;
}
// data.list = data.list.splice(1,2);
data.list.forEach((ele) => {
let content = [];
try {
......
......@@ -2,6 +2,7 @@
min-height: 100vh;
background-color: #fff;
padding: 0 20rpx 28rpx;
position: relative;
}
.helpenterbox {
text-align: right;
......@@ -11,6 +12,9 @@
color: #16b0fd;
font-size: 22rpx;
}
.listbox {
position: relative;
}
.listitem {
border: 1px solid #ebedf0;
border-radius: 4rpx;
......@@ -80,7 +84,7 @@
border-radius: 4rpx;
}
.btn-add {
position: fixed;
position: absolute;
left: 50%;
transform: translateX(-50%);
height: 148rpx;
......
......@@ -1742,7 +1742,14 @@ Page({
// 视频播放相关代码
// 跳转到营销列表页面
goyinxiaoPage () {
let id = this.data.themeAdInfo.id || 0;
let id = 0;
if (this.data.editType == 1) {
id = this.data.themeAdInfo.id || 0;
} else if (this.data.editType == 2) {
id = this.data.calendarThemeAdInfo.id || 0;
} else if (this.data.editType == 3) {
id = this.data.lockThemeAdInfo.id || 0;
}
wx.navigateTo({
url: `/business/pages/themead/list?sid=${this.data.sid}&id=${id}&editType=${this.data.editType}`,
})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment