bug
This commit is contained in:
		| @@ -17,6 +17,14 @@ | |||||||
|             placeholder="任务状态" |             placeholder="任务状态" | ||||||
|             :selectList="dict.getDict('mstStatus')"> |             :selectList="dict.getDict('mstStatus')"> | ||||||
|           </ai-select> |           </ai-select> | ||||||
|  |           <ai-select | ||||||
|  |             v-model="search.markTag" | ||||||
|  |             multiple | ||||||
|  |             collapse-tags | ||||||
|  |             @change="search.current = 1, getList()" | ||||||
|  |             placeholder="请选择标签" | ||||||
|  |             :selectList="dict.getDict('mstTag')"> | ||||||
|  |           </ai-select> | ||||||
|           <el-date-picker |           <el-date-picker | ||||||
|             v-model="search.startTime" |             v-model="search.startTime" | ||||||
|             type="date" |             type="date" | ||||||
| @@ -83,27 +91,6 @@ | |||||||
|           </template> |           </template> | ||||||
|         </el-table-column> |         </el-table-column> | ||||||
|       </ai-table> |       </ai-table> | ||||||
|       <!-- <div class="dialog" v-if="isShow"> |  | ||||||
|         <div class="mask"></div> |  | ||||||
|         <div class="dialog-wrapper"> |  | ||||||
|           <img src="https://cdn.cunwuyun.cn/dvcp/announce/close1.png" @click="isShow = false" /> |  | ||||||
|           <h2>选择群发方式</h2> |  | ||||||
|           <p>可根据不同的使用需求,选择相应的群发方式</p> |  | ||||||
|           <div class="dialog-list"> |  | ||||||
|             <div class="item" :class="[currIndex === '0' ? 'active' : '']" @click="currIndex = '0'"> |  | ||||||
|               <img src="https://cdn.cunwuyun.cn/dvcp/announce/icon1.png" /> |  | ||||||
|               <h3>成员一键群发</h3> |  | ||||||
|               <p>成员收到通知后,可一键直接群发到居民群,任务开始后不支持关闭</p> |  | ||||||
|             </div> |  | ||||||
|             <div class="item" :class="[currIndex === '1' ? 'active' : '']" @click="currIndex = '1'"> |  | ||||||
|               <img src="https://cdn.cunwuyun.cn/dvcp/announce/icon2.png" /> |  | ||||||
|               <h3>通知成员群发</h3> |  | ||||||
|               <p>员工收到通知后,需通过群发助手发送至居民群,任务到期后自动关闭,未完成的成员无法再执行</p> |  | ||||||
|             </div> |  | ||||||
|           </div> |  | ||||||
|           <el-button style="width: 106px;" size="small" type="primary" icon="iconfont" @click="isShow = false, toAdd(currIndex, '')">去创建</el-button> |  | ||||||
|         </div> |  | ||||||
|       </div> --> |  | ||||||
|     </template> |     </template> | ||||||
|   </ai-list> |   </ai-list> | ||||||
| </template> | </template> | ||||||
| @@ -126,7 +113,8 @@ | |||||||
|           createUserId: '', |           createUserId: '', | ||||||
|           taskTitle: '', |           taskTitle: '', | ||||||
|           startTime: '', |           startTime: '', | ||||||
|           endTime: '' |           endTime: '', | ||||||
|  |           markTag: '' | ||||||
|         }, |         }, | ||||||
|         currIndex: '1', |         currIndex: '1', | ||||||
|         name: '', |         name: '', | ||||||
| @@ -184,6 +172,7 @@ | |||||||
|         this.instance.post(`/app/appmasssendingtask/list`, null, { |         this.instance.post(`/app/appmasssendingtask/list`, null, { | ||||||
|           params: { |           params: { | ||||||
|             ...this.search, |             ...this.search, | ||||||
|  |             markTag: this.search.markTag ? this.search.markTag.join(',') : '' | ||||||
|           } |           } | ||||||
|         }).then(res => { |         }).then(res => { | ||||||
|           if (res.code == 0) { |           if (res.code == 0) { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user