Commit a78b5f8b authored by 罗林杰's avatar 罗林杰

修改bug

parent aaf17831
...@@ -13,7 +13,7 @@ export function articleList(query) { ...@@ -13,7 +13,7 @@ export function articleList(query) {
// 动态列表 // 动态列表
export function userArticleList(query) { export function userArticleList(query) {
return request({ return request({
url: '/app/open/opmArticle/queryUserArticleByPagination', url: '/app/opmArticle/queryUserArticleByPagination',
data: query, data: query,
method: 'GET', method: 'GET',
}) })
......
...@@ -18,7 +18,7 @@ export function userList(data){ ...@@ -18,7 +18,7 @@ export function userList(data){
export function likeList(data){ export function likeList(data){
return request({ return request({
method: "get", method: "get",
url: '/app/open/memInfo/likeList', url: '/app/memInfo/likeList',
data data
}); });
} }
......
...@@ -135,7 +135,11 @@ ...@@ -135,7 +135,11 @@
}, },
//查询话题列表 //查询话题列表
getTopicList(){ getTopicList(){
topicList().then(res =>{ const form = {
flag:'1',
examStatus:'1'
}
topicList(form).then(res =>{
//获取res.data.data里的topicName赋值给this.topicList,并且 //获取res.data.data里的topicName赋值给this.topicList,并且
this.topicList = res.data.data.map(item => { this.topicList = res.data.data.map(item => {
return { return {
......
...@@ -90,7 +90,8 @@ export default { ...@@ -90,7 +90,8 @@ export default {
getBannerList() { getBannerList() {
const query = { const query = {
page: this.queryParam.page, page: this.queryParam.page,
rows: this.queryParam.rows rows: this.queryParam.rows,
flag:'1'
} }
bannerList(query).then(res =>{ bannerList(query).then(res =>{
let imgList = [] let imgList = []
......
...@@ -41,6 +41,17 @@ ...@@ -41,6 +41,17 @@
placeholder="请输入昵称" placeholder="请输入昵称"
></u--input> ></u--input>
</u-form-item> </u-form-item>
<u-form-item
label="微信号"
prop="memWxCode"
borderBottom
>
<u--input
v-model="userInfo.memWxCode"
border="none"
placeholder="请输入微信号"
></u--input>
</u-form-item>
<u-form-item <u-form-item
label="性别" label="性别"
prop="memSexText" prop="memSexText"
...@@ -434,6 +445,14 @@ export default { ...@@ -434,6 +445,14 @@ export default {
trigger: ['blur'] trigger: ['blur']
} }
], ],
memWxCode: [
{
type: 'string',
required: true,
message: '请输入微信号',
trigger: ['blur']
}
],
memBirthday: [ memBirthday: [
{ {
type: 'string', type: 'string',
......
...@@ -74,10 +74,10 @@ ...@@ -74,10 +74,10 @@
<view class="popup-content" style="border-bottom: 1px solid #e5e5e5;"> <view class="popup-content" style="border-bottom: 1px solid #e5e5e5;">
<text style="color: black;font-size: 18px">对方已同意你的请求</text> <text style="color: black;font-size: 18px">对方已同意你的请求</text>
</view> </view>
<view style="margin-top: 20px;margin-left: 40px;margin-right:80px ;display: flex;justify-content: space-between"> <view style="margin-top: 20px;margin-left: 20px;display: flex;justify-content: left">
<text style="color: black;font-size: 18px;margin-bottom: 40px">对方微信号:</text> <text style="color: black;font-size: 18px;margin-bottom: 40px">对方微信号(长按复制)</text>
<view style="margin-top: 5px "> <view style="margin-top: 5px ">
<u-tooltip color="black" size="16" text="22222222222222222" overlay bgColor="#e3e4e6"></u-tooltip> <u-tooltip color="black" size="16" :text="wxTask.memWxCode" overlay bgColor="#e3e4e6"></u-tooltip>
</view> </view>
</view> </view>
</u-popup> </u-popup>
......
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