三涧溪党员积分
This commit is contained in:
		| @@ -0,0 +1,62 @@ | ||||
| <template> | ||||
|   <div class="AppHealthReport"> | ||||
|     <keep-alive :include="['List']"> | ||||
|       <component ref="component" :is="component" @change="onChange" :params="params" :instance="instance" :dict="dict"></component> | ||||
|     </keep-alive> | ||||
|   </div> | ||||
| </template> | ||||
|  | ||||
| <script> | ||||
|   import List from './components/List.vue' | ||||
|   import Detail from './components/Detail.vue' | ||||
|  | ||||
|   export default { | ||||
|     name: 'AppIntegralAudit', | ||||
|     label: '积分审核(三涧溪)', | ||||
|  | ||||
|     components: { | ||||
|       List, | ||||
|       Detail | ||||
|     }, | ||||
|  | ||||
|     props: { | ||||
|       instance: Function, | ||||
|       dict: Object, | ||||
|       permissions: Function | ||||
|     }, | ||||
|  | ||||
|     data () { | ||||
|       return { | ||||
|         component: 'List', | ||||
|         params: {} | ||||
|       } | ||||
|     }, | ||||
|  | ||||
|     methods: { | ||||
|       onChange (data) { | ||||
|         if (data.type === 'Detail') { | ||||
|           this.component = 'Detail' | ||||
|           this.isShowDetail = true | ||||
|           this.params = data.params | ||||
|         } | ||||
|  | ||||
|         if (data.type === 'list') { | ||||
|           this.component = 'List' | ||||
|           this.params = data.params | ||||
|  | ||||
|           this.$nextTick(() => { | ||||
|             if (data.isRefresh) { | ||||
|               this.$refs.component.getList() | ||||
|             } | ||||
|           }) | ||||
|         } | ||||
|       } | ||||
|     } | ||||
|   } | ||||
| </script> | ||||
|  | ||||
| <style lang="scss" scoped> | ||||
|   .AppHealthReport { | ||||
|     height: 100%; | ||||
|   } | ||||
| </style> | ||||
| @@ -0,0 +1,245 @@ | ||||
| <template> | ||||
|   <ai-detail class="audit"> | ||||
|     <template slot="title"> | ||||
|       <ai-title title="详情" isShowBack isShowBottomBorder @onBackClick="cancel(true)"> | ||||
|       </ai-title> | ||||
|     </template> | ||||
|     <template slot="content"> | ||||
|       <ai-card title="基本信息"> | ||||
|         <template #content> | ||||
|           <ai-wrapper | ||||
|               label-width="120px"> | ||||
|             <ai-info-item label="申请人" :value="info.partyName"></ai-info-item> | ||||
|             <ai-info-item label="申请时间" :value="info.createTime"></ai-info-item> | ||||
|             <ai-info-item label="积分类型" :value="info.integralRuleName"></ai-info-item> | ||||
|             <ai-info-item label="规则类型"> | ||||
|             </ai-info-item> | ||||
|             <ai-info-item label="申请描述" :value="info.description" isLine></ai-info-item> | ||||
|             <!-- <ai-info-item label="联系电话" isLine :value="info.residentPhone"></ai-info-item> --> | ||||
|             <ai-info-item label="图片资料" isLine v-show="info.applyFiles"> | ||||
|               <ai-uploader v-model="info.applyFiles" disabled></ai-uploader> | ||||
|             </ai-info-item> | ||||
|           </ai-wrapper> | ||||
|         </template> | ||||
|       </ai-card> | ||||
|       <ai-card title="审核详情" v-if="info.auditStatus !== '0'"> | ||||
|         <div slot="content" style="margin-top: 16px;margin-bottom:24px"> | ||||
|           <ai-wrapper | ||||
|               label-width="120px"> | ||||
|             <ai-info-item label="审核结果" :value="info.auditStatus === '1' ? '通过' : '拒绝'"></ai-info-item> | ||||
|             <!-- 通过 --> | ||||
|             <ai-info-item label="积分调整" isLine v-if="info.auditStatus === '1'" | ||||
|                           :value="'+' + (info.auditIntegral >= 0 ? info.auditIntegral : info.auditIntegral) + '分'"></ai-info-item> | ||||
|             <!-- 未通过(阶梯状态下显示加分项) --> | ||||
|             <ai-info-item label="积分调整" isLine v-if="info.auditStatus === '1'" | ||||
|                           :value="'+' + (info.auditIntegral >= 0 ? info.auditIntegral : info.auditIntegral) + '分'"></ai-info-item> | ||||
|             <ai-info-item label="审核人" :value="info.auditUserName"></ai-info-item> | ||||
|             <ai-info-item label="审核时间" :value="info.auditTime"></ai-info-item> | ||||
|             <ai-info-item label="审核意见" v-if="info.auditStatus === '2'" isLine :value="info.auditOpinion"></ai-info-item> | ||||
|              | ||||
|           </ai-wrapper> | ||||
|         </div> | ||||
|       </ai-card> | ||||
|       <ai-dialog | ||||
|           :visible.sync="isShow" | ||||
|           width="800px" | ||||
|           @close="onClose" | ||||
|           title="事件审核" | ||||
|           @onConfirm="onConfirm"> | ||||
|         <el-form class="ai-form" label-width="120px" :model="form" ref="form"> | ||||
|  | ||||
|           <el-form-item label="是否通过审核" prop="pass" style="width: 100%;" :rules="[{ required: true, message: '请选择是否通过审核' }]"> | ||||
|             <el-radio-group v-model="form.pass" @change="onStatusChange"> | ||||
|               <el-radio label="0">否</el-radio> | ||||
|               <el-radio label="1">是</el-radio> | ||||
|             </el-radio-group> | ||||
|           </el-form-item> | ||||
|           <!-- 固定分数 --> | ||||
|           <el-form-item label="积分分值" prop="pass" style="width: 100%;" :rules="[{ required: true, message: '请输入积分分值' }]"> | ||||
|             <el-input v-model="num" placeholder="请输入1-10的整数"></el-input> | ||||
|           </el-form-item> | ||||
|           <!-- 区间 --> | ||||
|           <el-form-item label="积分分值" prop="pass" style="width: 100%;" :rules="[{ required: true, message: '请输入积分分值' }]"> | ||||
|             <ai-range v-model="form.num" ref="resetagefoo" /> | ||||
|           </el-form-item> | ||||
|           <!-- 阶梯 --> | ||||
|           <el-form-item label="加分项" prop="pass" style="width: 100%;" :rules="[{ required: true, message: '请选择加分项' }]"> | ||||
|             <!-- <ai-select v-model="form.integralCalcType" :selectList="dict.getDict('integralCalcType')" @select="selectItem"/> --> | ||||
|           </el-form-item> | ||||
|  | ||||
|           <el-form-item label="积分分值" prop="pass" style="width: 100%;" :rules="[{ required: true, message: '请输入积分分值' }]"> | ||||
|             <el-input v-model="num" placeholder="请输入1-10的整数"></el-input> | ||||
|           </el-form-item> | ||||
|  | ||||
|           <el-form-item label="审核意见" v-if="form.pass == '0'" prop="opinion" style="width: 100%;" :rules="[{ required: true, message: '请输入审核意见' }]"> | ||||
|             <el-input type="textarea" :rows="5" :maxlength="200" v-model="form.opinion" clearable placeholder="请输入审核意见" show-word-limit></el-input> | ||||
|           </el-form-item> | ||||
|  | ||||
|         </el-form> | ||||
|       </ai-dialog> | ||||
|     </template> | ||||
|  | ||||
|     <template #footer v-if="info.auditStatus === '0'"> | ||||
|       <el-button @click="cancel">取消</el-button> | ||||
|       <el-button type="primary" @click="isShow = true">审核</el-button> | ||||
|     </template> | ||||
|  | ||||
|   </ai-detail> | ||||
| </template> | ||||
|  | ||||
| <script> | ||||
| export default { | ||||
|   name: 'Detail', | ||||
|  | ||||
|   props: { | ||||
|     instance: Function, | ||||
|     dict: Object, | ||||
|     params: Object | ||||
|   }, | ||||
|  | ||||
|   data() { | ||||
|     const validatorRules = function (rule, value, callback) { | ||||
|       if (value === '') { | ||||
|         callback(new Error('请输入联系方式')) | ||||
|       } else if (!/^1\d{10}$/.test(value)) { | ||||
|         callback(new Error('手机号格式错误')) | ||||
|       } else { | ||||
|         callback() | ||||
|       } | ||||
|     } | ||||
|     return { | ||||
|       total: 0, | ||||
|       info: { | ||||
|         auditStatus: '0' | ||||
|       }, | ||||
|       id: '', | ||||
|       isShow: false, | ||||
|       form: { | ||||
|         auditIntegralType: '', | ||||
|         auditRuleId: '', | ||||
|         opinion: '', | ||||
|         pass: '' | ||||
|       }, | ||||
|       ruleList: [], | ||||
|       num: '' | ||||
|     } | ||||
|   }, | ||||
|  | ||||
|   computed: { | ||||
|     integralText() { | ||||
|       if (!this.form.auditRuleId) { | ||||
|         return '' | ||||
|       } | ||||
|  | ||||
|       const integral = this.ruleList.filter(v => v.dictValue === this.form.auditRuleId)[0].integral | ||||
|  | ||||
|       return integral >= 0 ? `+${integral}分` : `${integral}分` | ||||
|     } | ||||
|   }, | ||||
|  | ||||
|   created() { | ||||
|     let loading = this.$loading({ | ||||
|       text: 'Loading', | ||||
|     }); | ||||
|     if (this.params && this.params.id) { | ||||
|       this.id = this.params.id | ||||
|       this.dict.load(['atWillReportType', 'auditStatus']).then(() => { | ||||
|         this.getInfo(this.params.id) | ||||
|         this.$nextTick(() => { | ||||
|           loading.close() | ||||
|         }) | ||||
|       }) | ||||
|     } | ||||
|   }, | ||||
|  | ||||
|   methods: { | ||||
|     getInfo(id) { | ||||
|       this.instance.post(`/app/apppartyintegraldeclare/queryDetailById?id=${id}`).then(res => { | ||||
|         if (res?.data) { | ||||
|           this.info = res.data | ||||
|         } | ||||
|       }) | ||||
|     }, | ||||
|  | ||||
|     onStatusChange() { | ||||
|       this.$refs.form.clearValidate() | ||||
|     }, | ||||
|  | ||||
|     onClose() { | ||||
|       this.form.auditIntegralType = '' | ||||
|       this.form.auditRuleId = '' | ||||
|       this.form.pass = '' | ||||
|       this.form.opinion = '' | ||||
|       this.id = '' | ||||
|     }, | ||||
|  | ||||
|     onConfirm() { | ||||
|       this.$refs.form.validate(v => { | ||||
|         if (v) { | ||||
|           this.instance.post('/app/appvillagerintegraldeclare/examine', null, { | ||||
|             params: { | ||||
|               ...this.form, | ||||
|               id: this.params.id, | ||||
|             } | ||||
|           }).then(res => { | ||||
|             if (res.code == 0) { | ||||
|               this.isShow = false | ||||
|               this.getInfo(this.params.id) | ||||
|               this.$message.success('审核成功!') | ||||
|             } | ||||
|           }) | ||||
|         } | ||||
|       }) | ||||
|     }, | ||||
|  | ||||
|     onChange(e) { | ||||
|       this.form.auditRuleId = '' | ||||
|       this.instance.post(`/app/appvillagerintegralrule/list?size=1000&classification=${e}`).then(res => { | ||||
|         if (res?.code == 0) { | ||||
|           this.ruleList = res.data.records.filter(v => v.ruleStatus === '1').map(v => { | ||||
|             return { | ||||
|               dictName: v.ruleName, | ||||
|               dictValue: v.id, | ||||
|               ruleName: v.ruleName, | ||||
|               integral: v.integral | ||||
|             } | ||||
|           }) | ||||
|         } | ||||
|       }) | ||||
|     }, | ||||
|  | ||||
|     cancel(isRefresh) { | ||||
|       this.$emit('change', { | ||||
|         type: 'list', | ||||
|         isRefresh: !!isRefresh | ||||
|       }) | ||||
|     } | ||||
|   } | ||||
| } | ||||
| </script> | ||||
|  | ||||
| <style scoped lang="scss"> | ||||
| .audit { | ||||
|   .flex-warpper { | ||||
|     display: flex; | ||||
|     align-items: center; | ||||
|  | ||||
|     ::v-deep .el-form-item .el-form-item__content { | ||||
|       margin-left: 0 !important; | ||||
|     } | ||||
|  | ||||
|     ::v-deep .ai-select { | ||||
|       margin: 0 !important; | ||||
|     } | ||||
|  | ||||
|     ::v-deep .el-form-item { | ||||
|       width: auto; | ||||
|       margin-bottom: 0; | ||||
|  | ||||
|       &:last-child { | ||||
|         margin-right: 10px; | ||||
|       } | ||||
|     } | ||||
|   } | ||||
| } | ||||
| </style> | ||||
							
								
								
									
										237
									
								
								project/sanjianxi/apps/AppPartyIntegralAudit/components/List.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										237
									
								
								project/sanjianxi/apps/AppPartyIntegralAudit/components/List.vue
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,237 @@ | ||||
| <template> | ||||
|   <ai-list class="list"> | ||||
|     <ai-title | ||||
|       slot="title" | ||||
|       title="积分审核" | ||||
|       v-if="search.areaId" | ||||
|       isShowBottomBorder | ||||
|       :instance="instance" | ||||
|       :disabledLevel="disabledLevel" | ||||
|       isShowArea | ||||
|       v-model="search.areaId" | ||||
|       @change="changeArea"> | ||||
|     </ai-title> | ||||
|     <template slot="content"> | ||||
|       <div class="content"> | ||||
|         <ai-search-bar> | ||||
|           <template #left> | ||||
|             <!-- <ai-select | ||||
|               v-model="search.applyIntegralType" | ||||
|               clearable | ||||
|               placeholder="请选择积分类型" | ||||
|               :selectList="dict.getDict('atWillReportType')" | ||||
|               @change="search.current = 1, getList()"> | ||||
|             </ai-select> --> | ||||
|             <ai-select | ||||
|               v-model="search.auditStatus" | ||||
|               clearable | ||||
|               placeholder="请选择审核状态" | ||||
|               :selectList="dict.getDict('auditStatus')" | ||||
|               @change="search.current = 1, getList()"> | ||||
|             </ai-select> | ||||
|             <el-date-picker | ||||
|               value-format="yyyy-MM-dd" | ||||
|               v-model="search.createTimeStart" | ||||
|               type="date" | ||||
|               size="small" | ||||
|               unlink-panels | ||||
|               placeholder="选择开始日期" | ||||
|               @change="search.current = 1, getList()" /> | ||||
|             <el-date-picker | ||||
|               value-format="yyyy-MM-dd" | ||||
|               v-model="search.createTimeEnd" | ||||
|               type="date" | ||||
|               size="small" | ||||
|               unlink-panels | ||||
|               placeholder="选择结束日期" | ||||
|               :picker-options="{start: search.createTimeStart, minTime: search.createTimeStart}" | ||||
|               @change="search.current = 1, getList()" /> | ||||
|           </template> | ||||
|           <template #right> | ||||
|             <el-input | ||||
|               v-model="search.residentName" | ||||
|               size="small" | ||||
|               placeholder="请输入姓名/事件类型" | ||||
|               clearable | ||||
|               v-throttle="() => {search.current = 1, getList()}" | ||||
|               @clear="search.current = 1, search.residentName = '', getList()" | ||||
|               suffix-icon="iconfont iconSearch"> | ||||
|             </el-input> | ||||
|           </template> | ||||
|         </ai-search-bar> | ||||
|         <ai-table | ||||
|           :tableData="tableData" | ||||
|           :col-configs="colConfigs" | ||||
|           :total="total" | ||||
|           v-loading="loading" | ||||
|           style="margin-top: 8px;" | ||||
|           :current.sync="search.current" | ||||
|           :size.sync="search.size" | ||||
|           @getList="getList"> | ||||
|           <el-table-column slot="options" width="120px" fixed="right" label="操作" align="center"> | ||||
|             <template slot-scope="{ row }"> | ||||
|               <div class="table-options"> | ||||
|                 <el-button type="text" @click="toDetail(row.id)">详情</el-button> | ||||
|               </div> | ||||
|             </template> | ||||
|           </el-table-column> | ||||
|         </ai-table> | ||||
|       </div> | ||||
|     </template> | ||||
|   </ai-list> | ||||
| </template> | ||||
|  | ||||
| <script> | ||||
|   import { mapState } from 'vuex' | ||||
|   export default { | ||||
|     name: 'List', | ||||
|     props: { | ||||
|       instance: Function, | ||||
|       dict: Object | ||||
|     }, | ||||
|  | ||||
|     data () { | ||||
|       return { | ||||
|         search: { | ||||
|           current: 1, | ||||
|           size: 10, | ||||
|           residentName: '', | ||||
|           applyIntegralType: '', | ||||
|           areaId: '', | ||||
|           auditStatus: '', | ||||
|           createTimeStart: '', | ||||
|           createTimeEnd: '' | ||||
|         }, | ||||
|         dictList: [{ | ||||
|           dictName: '否', | ||||
|           dictValue: '0' | ||||
|         }, { | ||||
|           dictName: '是', | ||||
|           dictValue: '1' | ||||
|         }], | ||||
|         info: {}, | ||||
|         colConfigs: [ | ||||
|           { prop: 'partyName', label: '申请人' }, | ||||
|           { prop: 'partyPhone', align: 'center', label: '联系电话' }, | ||||
|           { prop: 'createTime', align: 'center', label: '申请时间' }, | ||||
|           { prop: 'integralRuleName', align: 'center', label: '积分类型', },  | ||||
|           { prop: 'auditStatus', align: 'center', label: '状态', formart: v => v ? this.dict.getLabel('integralDeclareStatus', v) : '-' },  | ||||
|           { prop: 'auditUserName', align: 'center', label: '审批人' },  | ||||
|           { prop: 'auditTime', align: 'center', label: '审批时间' } | ||||
|         ], | ||||
|         tableData: [], | ||||
|         total: 0, | ||||
|         loading: false, | ||||
|         disabledLevel: 0 | ||||
|       } | ||||
|     }, | ||||
|  | ||||
|     computed: { | ||||
|       ...mapState(['user']), | ||||
|  | ||||
|       param () { | ||||
|         return { | ||||
|  | ||||
|         } | ||||
|       } | ||||
|     }, | ||||
|  | ||||
|     created () { | ||||
|       this.disabledLevel = this.user.info.areaList.length - 1 | ||||
|       this.search.areaId = this.user.info.areaId | ||||
|       this.loading = true | ||||
|       this.dict.load(['atWillReportType', 'integralDeclareStatus']).then(() => { | ||||
|         this.getList() | ||||
|       }) | ||||
|     }, | ||||
|  | ||||
|     methods: { | ||||
|       getList () { | ||||
|         this.instance.post(`/app/apppartyintegraldeclare/list`, null, { | ||||
|           params: { | ||||
|             ...this.search | ||||
|           } | ||||
|         }).then(res => { | ||||
|           if (res.code == 0) { | ||||
|             this.tableData = res.data.records | ||||
|             this.total = res.data.total | ||||
|             this.loading = false | ||||
|           } else { | ||||
|             this.loading = false | ||||
|           } | ||||
|         }).catch(() => { | ||||
|           this.loading = false | ||||
|         }) | ||||
|       }, | ||||
|  | ||||
|       toDetail (id) { | ||||
|         this.$emit('change', { | ||||
|           type: 'Detail', | ||||
|           params: { | ||||
|             id: id || '' | ||||
|           } | ||||
|         }) | ||||
|       }, | ||||
|  | ||||
|       changeArea () { | ||||
|         this.search.current = 1 | ||||
|  | ||||
|         this.$nextTick(() => { | ||||
|           this.getList() | ||||
|         }) | ||||
|       } | ||||
|     } | ||||
|   } | ||||
| </script> | ||||
|  | ||||
| <style scoped lang="scss"> | ||||
|   .list { | ||||
|     ::v-deep .ai-list__content { | ||||
|       padding: 0!important; | ||||
|  | ||||
|       .ai-list__content--right-wrapper { | ||||
|         background: transparent!important; | ||||
|         box-shadow: none!important; | ||||
|         margin: 0!important; | ||||
|         padding: 12px 16px 12px!important; | ||||
|       } | ||||
|     } | ||||
|     .statistics-top { | ||||
|       display: flex; | ||||
|       align-items: center; | ||||
|       margin-bottom: 20px; | ||||
|  | ||||
|       & > div { | ||||
|         flex: 1; | ||||
|         height: 96px; | ||||
|         line-height: 1; | ||||
|         margin-right: 20px; | ||||
|         padding: 16px 24px; | ||||
|         background: #FFFFFF; | ||||
|         box-shadow: 0px 4px 6px -2px rgba(15, 15, 21, 0.15); | ||||
|         border-radius: 4px; | ||||
|  | ||||
|         &:last-child { | ||||
|           margin-right: 0; | ||||
|         } | ||||
|  | ||||
|         h3 { | ||||
|           font-size: 24px; | ||||
|         } | ||||
|  | ||||
|         span { | ||||
|           display: block; | ||||
|           margin-bottom: 16px; | ||||
|           color: #888888; | ||||
|           font-size: 16px; | ||||
|         } | ||||
|       } | ||||
|     } | ||||
|  | ||||
|     .content { | ||||
|       padding: 16px; | ||||
|       background: #FFFFFF; | ||||
|       box-shadow: 0px 4px 6px -2px rgba(15, 15, 21, 0.15); | ||||
|     } | ||||
|   } | ||||
| </style> | ||||
		Reference in New Issue
	
	Block a user