|
@@ -4,9 +4,15 @@
|
|
|
:visible.sync="isParticipateShow"
|
|
|
width="700px"
|
|
|
append-to-body
|
|
|
- @close="$emit('close')"
|
|
|
+ @close="closeDlg"
|
|
|
>
|
|
|
<div class="partic-list-dialog-container">
|
|
|
+ <div v-if="isShowPermission" style="margin-bottom:20px">
|
|
|
+ <el-tag type="info" size="small"> {{this.chartPermissionName}}</el-tag>
|
|
|
+ </div>
|
|
|
+ <el-select v-else v-model="hashtagValue" multiple filterable remote reserve-keyword placeholder="请输入路演主题标签(可多选)" :remote-method="remoteMethodHandler" style="width:392px;margin-bottom:20px" @change="tagSelectHandler">
|
|
|
+ <el-option v-for="item in hashtagOptions" :key="item.Md5Key" :label="item.TagName" :value="item.Md5Key"> </el-option>
|
|
|
+ </el-select>
|
|
|
<el-table :data="tableData" border>
|
|
|
<el-table-column align="center"
|
|
|
prop="RealName" label="姓名"
|
|
@@ -29,8 +35,9 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div slot="footer" class="dialog-footer" style="text-align: center;">
|
|
|
- <el-button type="primary" @click="$emit('close')">确定</el-button>
|
|
|
- <el-button @click="$emit('close')">取消</el-button>
|
|
|
+ <el-button @click="closeDlg">关闭</el-button>
|
|
|
+ <el-button type="primary" @click="saveTagsHandler">保存</el-button>
|
|
|
+
|
|
|
</div>
|
|
|
<addParticipateDia
|
|
|
:isAddParticipateShow="isAddShow"
|
|
@@ -53,18 +60,29 @@ export default {
|
|
|
RsCalendarId: {
|
|
|
type: Number,
|
|
|
default: 0
|
|
|
+ },
|
|
|
+ ResearcherId:{
|
|
|
+ type:Number,
|
|
|
+ default:0
|
|
|
}
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
tableData: [],
|
|
|
- isAddShow:false
|
|
|
+ isAddShow:false,
|
|
|
+ hashtagValue:[],// 主题标签
|
|
|
+ hashtagOptions:[],// 主题数据
|
|
|
+ tagList:[],// /标签类型
|
|
|
+ tagName: '',
|
|
|
+ chartPermissionName:'',
|
|
|
+ isShowPermission:false
|
|
|
};
|
|
|
},
|
|
|
watch: {
|
|
|
isParticipateShow(newval) {
|
|
|
if (newval) {
|
|
|
this.getTableData();
|
|
|
+ this.getIsPermissionName()
|
|
|
}
|
|
|
},
|
|
|
},
|
|
@@ -76,6 +94,15 @@ export default {
|
|
|
if (res.Ret !== 200)
|
|
|
return;
|
|
|
this.tableData = res.Data.List;
|
|
|
+ this.hashtagOptions = res.Data.ListLebel
|
|
|
+ console.log(res);
|
|
|
+ if(this.hashtagOptions.length){
|
|
|
+ this.hashtagValue = []
|
|
|
+ this.hashtagOptions.forEach(item=>{
|
|
|
+ this.hashtagValue.push(item.Md5Key)
|
|
|
+ })
|
|
|
+ this.tagSelectHandler()
|
|
|
+ }
|
|
|
});
|
|
|
},
|
|
|
addItem() {
|
|
@@ -90,6 +117,67 @@ export default {
|
|
|
this.getTableData()
|
|
|
})
|
|
|
},
|
|
|
+ // 获取标签
|
|
|
+ async remoteMethodHandler(query){
|
|
|
+ if (query !== '') {
|
|
|
+ let KeyWord = this.tagName? this.tagName + ',' + query : query;
|
|
|
+ const res = await roadshowInterence.rai_serve_search_tag({
|
|
|
+ KeyWord,
|
|
|
+ ResearcherId:this.ResearcherId,
|
|
|
+ })
|
|
|
+ if( res.Ret===200 ){
|
|
|
+ this.hashtagOptions = res.Data.List || []
|
|
|
+ }
|
|
|
+ }else if(!this.hashtagValue.length && !query){
|
|
|
+ this.hashtagOptions =[]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 标签选择后处理
|
|
|
+ tagSelectHandler(){
|
|
|
+ let tagListArr = []
|
|
|
+ let nameArr = []
|
|
|
+ this.hashtagOptions.forEach(item=>{
|
|
|
+ if(this.hashtagValue.length && this.hashtagValue.includes(item.Md5Key)) {
|
|
|
+ tagListArr.push({
|
|
|
+ TagType: item.TagType,
|
|
|
+ TagId: item.TagId,
|
|
|
+ })
|
|
|
+ nameArr.push(item.TagName)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ this.tagList = tagListArr
|
|
|
+ this.tagName = nameArr.join(',')
|
|
|
+ },
|
|
|
+ // 提交标签
|
|
|
+ saveTagsHandler(){
|
|
|
+ if(!this.hashtagValue.length) return this.$message.error('请输入主题标签')
|
|
|
+ roadshowInterence.addMeetingUser({
|
|
|
+ RsCalendarId:this.RsCalendarId,
|
|
|
+ TagList:this.tagList
|
|
|
+ }).then(res=>{
|
|
|
+ if(res.Ret!==200) return
|
|
|
+ this.$message.success('提交成功')
|
|
|
+ this.getTableData()
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 进入看看是否是策略
|
|
|
+ async getIsPermissionName(){
|
|
|
+ const res = await roadshowInterence.rai_serve_search_chcck_PermissionName({ResearcherId:this.ResearcherId})
|
|
|
+ if( res.Ret===200 ){
|
|
|
+ this.chartPermissionName = res.Data.ChartPermissionName
|
|
|
+ this.isShowPermission = res.Data.Belong
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 关闭弹框
|
|
|
+ closeDlg(){
|
|
|
+ this.hashtagValue = ''// 主题标签
|
|
|
+ this.hashtagOptions = []// 主题数据
|
|
|
+ this.tagList = []// /标签类型
|
|
|
+ this.tagName = ''
|
|
|
+ this.chartPermissionName = ''
|
|
|
+ this.isShowPermission = false
|
|
|
+ this.$emit('close')
|
|
|
+ }
|
|
|
},
|
|
|
components: { addParticipateDia }
|
|
|
};
|