mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-12 03:01:12 +00:00
222 lines
7.3 KiB
Vue
222 lines
7.3 KiB
Vue
<template>
|
|
<Modal class-name="dialog-droup-word-chain"
|
|
v-model="show"
|
|
:mask="!isFullscreen"
|
|
:mask-closable="false"
|
|
:title="dialogGroupVote.type == 'create' ? $L('发起投票') : $L('投票结果')"
|
|
:closable="!isFullscreen"
|
|
:fullscreen="isFullscreen"
|
|
:footer-hide="isFullscreen">
|
|
<!-- 顶部 -->
|
|
<template #header>
|
|
<div v-if="isFullscreen" class="chain-modal-header">
|
|
<div class="chain-modal-close" @click="show = false">
|
|
{{ $L('取消') }}
|
|
</div>
|
|
<div class="chain-modal-title">
|
|
<span>{{ dialogGroupVote.type == 'create' ? $L('发起投票') : $L('投票结果') }}</span>
|
|
</div>
|
|
<div class="chain-modal-submit" :class="{'disabled': !isEdit}" @click="onSend" >
|
|
<div v-if="loadIng > 0" class="submit-loading"><Loading /></div>
|
|
{{$L('发送')}}
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<template #close>
|
|
<i class="ivu-icon ivu-icon-ios-close"></i>
|
|
</template>
|
|
<div ref="wordChainBodyRef" class="word-chain-body">
|
|
<div class="source" v-if="dialogGroupVote.type == 'create'">
|
|
{{$L('来自')}}
|
|
<span>{{ dialog.name }}</span>
|
|
</div>
|
|
<div class="initiate">
|
|
<span>{{ $L('由') }}</span>
|
|
<UserAvatar :userid="createId" :size="22" :showName="true" tooltipDisabled/>
|
|
<span> {{ $L('发起') }}</span>
|
|
</div>
|
|
<div class="textarea">
|
|
<Input ref="wordChainTextareaRef"
|
|
v-model="value"
|
|
type="textarea"
|
|
:placeholder="$L('请输入投票主题')"
|
|
:autosize="{minRows: 3,maxRows: 5}"
|
|
:disabled="dialogGroupVote.type != 'create'" />
|
|
</div>
|
|
<ul ref="wordChainListRef">
|
|
<li v-for="(item,index) in list">
|
|
<i class="taskfont" :class="{'disabled': list.length <= 2}" @click="onDel(index)"></i>
|
|
<Input v-model="item.text" :placeholder="$L('请输入选项内容')"/>
|
|
</li>
|
|
<li class="add">
|
|
<i class="taskfont" @click="onAdd"></i>
|
|
</li>
|
|
</ul>
|
|
<div class="switch-row" v-if="dialogGroupVote.type == 'create'">
|
|
<span class="label">{{ $L('允许多选') }}</span>
|
|
<iSwitch v-model="multiple" :true-value="1" :false-value="0"/>
|
|
</div>
|
|
<div class="switch-row" v-if="dialogGroupVote.type == 'create'">
|
|
<span class="label">{{ $L('匿名投票') }}</span>
|
|
<iSwitch v-model="anonymous" :true-value="1" :false-value="0"/>
|
|
</div>
|
|
</div>
|
|
<div slot="footer">
|
|
<Button type="default" @click="show=false">{{$L('取消')}}</Button>
|
|
<Button type="primary" :loading="loadIng > 0" @click="onSend" :disabled="!isEdit">{{$L('发送')}}</Button>
|
|
</div>
|
|
</Modal>
|
|
</template>
|
|
|
|
<script>
|
|
import {mapState} from "vuex";
|
|
export default {
|
|
name: 'DialogGroupVote',
|
|
|
|
data() {
|
|
return {
|
|
show: false,
|
|
|
|
createId: 0,
|
|
value: "",
|
|
list: [],
|
|
multiple: 0,
|
|
anonymous: 0,
|
|
|
|
oldData: '',
|
|
loadIng: 0,
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
...mapState(['dialogGroupVote', 'userInfo', 'dialogMsgs', 'cacheDialogs']),
|
|
|
|
isFullscreen({ windowWidth }) {
|
|
return windowWidth < 576;
|
|
},
|
|
|
|
allList(){
|
|
const msg = this.dialogGroupVote.msgData?.msg || {};
|
|
let list = JSON.parse(JSON.stringify(msg.list || []));
|
|
this.dialogMsgs.filter(h=>{
|
|
return h.type == "word-chain" && h.msg?.uuid == msg.uuid
|
|
}).forEach((h)=>{
|
|
(h.msg.list || []).forEach(k=>{
|
|
if(list.map(j=>j.id).indexOf(k.id) == -1){
|
|
list.push(k)
|
|
}
|
|
})
|
|
});
|
|
return list;
|
|
},
|
|
|
|
isEdit(){
|
|
return this.oldData != JSON.stringify(this.list);
|
|
},
|
|
|
|
dialog(){
|
|
return this.cacheDialogs.find(h=>h.id == this.dialogGroupVote.dialog_id) || {}
|
|
},
|
|
},
|
|
|
|
watch: {
|
|
show(val){
|
|
if(!val){
|
|
this.value = "";
|
|
this.list = [];
|
|
}else{
|
|
if(this.dialogGroupVote.type == 'create'){
|
|
this.$nextTick(()=>{
|
|
this.$refs.wordChainTextareaRef.focus()
|
|
})
|
|
}
|
|
this.scrollTo();
|
|
}
|
|
},
|
|
|
|
dialogGroupVote(data) {
|
|
if(data.type == 'create' && data.dialog_id){
|
|
this.show = true;
|
|
this.createId = this.userId;
|
|
this.list = [
|
|
{ id: Date.now(), text: "" },
|
|
{ id: Date.now() + 1, text: "" }
|
|
]
|
|
}
|
|
if(data.type == 'participate' && data.dialog_id && data.msgData){
|
|
this.show = true;
|
|
this.createId = data.msgData.msg.userid;
|
|
this.value = data.msgData.msg.text;
|
|
this.list = this.allList;
|
|
this.oldData = JSON.stringify(this.list);
|
|
}
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
onAdd(){
|
|
this.list.push({
|
|
id: Date.now(),
|
|
text: "",
|
|
});
|
|
this.scrollTo();
|
|
},
|
|
|
|
onDel(index){
|
|
if( this.list.length > 2 ){
|
|
this.list.splice(index, 1);
|
|
}
|
|
},
|
|
|
|
scrollTo(){
|
|
this.$nextTick(()=>{
|
|
this.$refs.wordChainListRef.scrollTo(0, 99999);
|
|
});
|
|
},
|
|
|
|
onSend() {
|
|
if(!this.isEdit){
|
|
return;
|
|
}
|
|
//
|
|
if(!this.value){
|
|
$A.messageError("请输入投票主题");
|
|
return;
|
|
}
|
|
if(this.list.find(h=> !h.text)){
|
|
$A.messageError("请输入选项内容");
|
|
return;
|
|
}
|
|
//
|
|
this.loadIng++;
|
|
this.$store.dispatch("call", {
|
|
url: 'dialog/msg/vote',
|
|
method: 'post',
|
|
data: {
|
|
dialog_id: this.dialogGroupVote.dialog_id,
|
|
text: this.value,
|
|
list: this.list,
|
|
uuid: this.dialogGroupVote.msgData?.msg?.uuid || '',
|
|
multiple: this.multiple,
|
|
anonymous: this.anonymous
|
|
}
|
|
}).then(({data}) => {
|
|
this.show = false;
|
|
this.$store.dispatch("saveDialogMsg", data);
|
|
}).catch(({msg}) => {
|
|
if( msg.indexOf("System error") !== -1){
|
|
$A.modalInfo({
|
|
title: '版本过低',
|
|
content: '服务器版本过低,请升级服务器。',
|
|
})
|
|
return;
|
|
}
|
|
$A.modalError(msg);
|
|
}).finally(_ => {
|
|
this.loadIng--;
|
|
});
|
|
}
|
|
}
|
|
}
|
|
</script>
|