|
@@ -26,7 +26,7 @@
|
|
|
<view style="flex: 1" class="question-title">
|
|
|
<text
|
|
|
class="item-label"
|
|
|
- v-if="isUserResearcher || item.reply_status === 3"
|
|
|
+ v-if="(item.reply_status === 3 || item.replier_user_id == userInfo.user_id) && questionStatus!=2"
|
|
|
>{{ item.variety_tag_name }}</text
|
|
|
>
|
|
|
{{ item.question_content }}
|
|
@@ -120,6 +120,8 @@ export default {
|
|
|
selectKey: "Wait",
|
|
|
pauseImgSrc: "../static/question/recordplay.png",
|
|
|
playImgSrc: "../static/question/recordpause.png",
|
|
|
+ // 列表的状态 0-全部 2-未回答 3-已回答 4-待回答
|
|
|
+ questionStatus:0,
|
|
|
/* userInfo:{
|
|
|
is_inner:1,//0:外部客户;1内部员工
|
|
|
status:'试用',
|
|
@@ -152,23 +154,43 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
toDetail(item) {
|
|
|
+ // 未回答的不进行操作
|
|
|
+ if(this.questionStatus == 2) return
|
|
|
//reply_status:1-待分配 2-待回答 3-已回答
|
|
|
- if (this.isUserResearcher&& item.reply_status === 2) {
|
|
|
+ if (this.isUserResearcher && item.reply_status === 2 && item.replier_user_id == this.userInfo.user_id) {
|
|
|
+ // 是研究员 && 问题是待回答 && 回答者是我
|
|
|
uni.navigateTo({ url: "/pages-question/answerDetail?id=" + item.id });
|
|
|
}
|
|
|
},
|
|
|
//点击bar
|
|
|
changeBar({ key }) {
|
|
|
- if (key === this.selectKey) return;
|
|
|
- this.selectKey = key;
|
|
|
- this.questionList = [];
|
|
|
- this.page = 1;
|
|
|
+ if (key === this.selectKey) return;
|
|
|
+ this.selectKey = key;
|
|
|
+ this.questionList = [];
|
|
|
+ this.page = 1;
|
|
|
+ // 重新获取数量
|
|
|
+ apiBarTotal().then(res=>{
|
|
|
+ if(res.code == 200){
|
|
|
+ const { replied, wait, total,distribute } = res.data;
|
|
|
+ for (const bar of this.barList) {
|
|
|
+ if(bar.label == '已回答'){
|
|
|
+ bar.num = replied
|
|
|
+ }else if(bar.label == '未回答'){
|
|
|
+ bar.num = wait
|
|
|
+ }else if(bar.label == '全部'){
|
|
|
+ bar.num = total
|
|
|
+ }else if(bar.label == '待回答'){
|
|
|
+ bar.num = distribute
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
this.resetAudio();
|
|
|
this.getQuestionData();
|
|
|
},
|
|
|
getSelectKey() {
|
|
|
if(this.userInfo.is_inner === 1){
|
|
|
- this.selectKey = 'Wait'
|
|
|
+ this.selectKey = 'Distribute'
|
|
|
}else{
|
|
|
this.selectKey = 'Replied'
|
|
|
}
|
|
@@ -176,7 +198,7 @@ export default {
|
|
|
async getBarList() {
|
|
|
const res = await apiBarTotal();
|
|
|
if (res.code !== 200) return;
|
|
|
- const { replied, wait, total } = res.data;
|
|
|
+ const { replied, wait, total,distribute } = res.data;
|
|
|
//客户: 已回答 未回答 全部
|
|
|
const customBar = [
|
|
|
{
|
|
@@ -195,12 +217,17 @@ export default {
|
|
|
num: total,
|
|
|
},
|
|
|
];
|
|
|
- //研究员: 待回答 已回答 全部
|
|
|
+ //研究员: 待回答 未回答 已回答 全部
|
|
|
const researBar = [
|
|
|
{
|
|
|
label: "待回答",
|
|
|
- key: "Wait",
|
|
|
- num: wait,
|
|
|
+ key: "Distribute",
|
|
|
+ num: distribute,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label:'未回答',
|
|
|
+ key:'Wait',
|
|
|
+ num:wait,
|
|
|
},
|
|
|
{
|
|
|
label: "已回答",
|
|
@@ -216,7 +243,8 @@ export default {
|
|
|
this.barList = this.isUserResearcher ? researBar : customBar;
|
|
|
},
|
|
|
async getQuestionData() {
|
|
|
- const reply_status = { Wait: 2, Replied: 3, Total: 0 };
|
|
|
+ const reply_status = { Wait: 2, Replied: 3, Total: 0 ,Distribute:4};
|
|
|
+ this.questionStatus = reply_status[this.selectKey]
|
|
|
await this.getQuestionList(reply_status[this.selectKey],1);
|
|
|
this.setQuestionsRead()
|
|
|
},
|
|
@@ -224,7 +252,8 @@ export default {
|
|
|
//获取未读的数据,请求未读接口变为已读
|
|
|
let unReadArr = []
|
|
|
this.questionList.forEach(item=>{
|
|
|
- let isReadKey = this.isUserResearcher?'replier_is_read':'is_read'
|
|
|
+ /* let isReadKey = this.isUserResearcher?'replier_is_read':'is_read' */
|
|
|
+ let isReadKey = item.user_id===this.userInfo.user_id?'replier_is_read':'is_read'
|
|
|
if(item[isReadKey]===0){
|
|
|
unReadArr.push(item.community_question_id)
|
|
|
}
|
|
@@ -249,14 +278,21 @@ export default {
|
|
|
padding: 30rpx;
|
|
|
.answer-bar {
|
|
|
display: flex;
|
|
|
- justify-content: space-between;
|
|
|
+ /* justify-content: space-between; */
|
|
|
+ overflow-x: scroll;
|
|
|
+ &::-webkit-scrollbar{
|
|
|
+ width: 0;
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
.bar-item {
|
|
|
width: 206rpx;
|
|
|
+ min-width: 206rpx;
|
|
|
color: #666666;
|
|
|
background-color: #f5f5f5;
|
|
|
height: 70rpx;
|
|
|
line-height: 70rpx;
|
|
|
text-align: center;
|
|
|
+ margin-right: 20rpx;
|
|
|
&.active {
|
|
|
background-color: #fdf8f2;
|
|
|
color: #e3b377;
|