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

修改bug

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