ソースを参照

家庭渠道导出全部、工作流选人优化

hujunwei@agilestar.cn 1 年間 前
コミット
6d595b9bc2

+ 1 - 0
.gitignore

@@ -3,6 +3,7 @@ node_modules
 /dist
 dist.zip
 /dist-test
+/dist-production
 dist.zip
 # local env files
 .env.local

+ 10 - 9
src/components/workflowBase.vue

@@ -489,9 +489,9 @@ export default {
     },
     //查询候选人接口
     getTreeLists(e, status) {
-
+      let paramsJson = {}
       this.$http({
-        url: "/market/CfgWorkflowChoosePerson/queryList",
+        url: "/market/CfgWorkflowChoosePerson/queryList",//筛选自定义候选人
         method: "post",
         headers: {
           "Content-Type": "application/json",
@@ -499,14 +499,19 @@ export default {
         data: {
           tableName: this.requestForm.processDefinitionKey,
           fresourceId: this.requestForm.fresourceId,
+          resourceid: this.resourceId,
         },
       }).then((res) => {
         if (res.data.length > 0) {
           for (var key in JSON.parse(res.data[0].paramsJson)) {
             console.log(key, JSON.parse(res.data[0].paramsJson)[key])
+            if (this.requestForm.processDefinitionKey == res.data[0].tableName) {
+              paramsJson[key] = this.list[key]
+            }
           }
-          console.log(key)
+          // console.log(key)
         }
+        console.log(paramsJson);
         // console.log(this.list);
         // console.log(this.requestForm);
 
@@ -517,18 +522,14 @@ export default {
             : e.nextShapes[0].properties.documentation;
         console.log(id);
 
-        let paramsJson = {}
+
         // if (this.requestForm.processDefinitionKey == 'BOMC_process' || this.requestForm.processDefinitionKey == 'ZHQX_process' || this.requestForm.processDefinitionKey == 'ZYSQ_process') {
         //   paramsJson.proposerType = this.list.proposerType
         // }
         // if (this.requestForm.processDefinitionKey == 'YHBG_process') {
         //   paramsJson.changeType = this.list.changeType
         // }
-        if (res.data.length > 0) {
-          if (this.requestForm.processDefinitionKey == res.data[0].tableName) {
-            paramsJson[key] = this.list[key]
-          }
-        }
+
         this.$http({
           url: "/market/api/user/info/queryNodePers?params=" + id,
           method: "post",

+ 387 - 341
src/pages/main/memberFamily/dataStatistics.vue

@@ -2,9 +2,13 @@
 	<fullscreen :fullscreen.sync="fullscreen" class="container">
 		<div class="container-box">
 			<div class="dc">
-				<el-button type="primary" style="margin-right: 20px;" @click="outexl">导出</el-button>
-				<span style="margin-right: 20px;">共 {{fillCnt}} 条数据</span>
-				<span>更新日期:{{lastUpdateTime}}</span>
+				<el-button type="primary" style="margin-right: 10px;" @click="outexl">导出</el-button>
+				<el-button type="primary" @click="outexlAll" v-if="btnout" style="margin:0px 10px;">导出全部</el-button>
+
+				<span style="margin-right: 20px;">共 {{ fillCnt }} 条数据</span>
+				<span>更新日期:{{ lastUpdateTime }}</span>
+
+
 			</div>
 			<div class="tabbox">
 				<el-table height="calc(100% - 40px)" class="com-table" ref="multipleTable" :data="tableData"
@@ -13,234 +17,276 @@
 					<!-- <el-table-column type="selection" width="55">
 					</el-table-column> -->
 					<el-table-column prop="regionName" label="区域名称">
-                        <template slot-scope="scope">
-                            {{scope.row.regionName}}{{scope.row.areaName}}
-                        </template>
+						<template slot-scope="scope">
+							{{ scope.row.regionName }}{{ scope.row.areaName }}
+						</template>
 					</el-table-column>
 					<el-table-column prop="regionDutyName" label="负责人">
-                        <template slot-scope="scope">
-                            {{scope.row.regionDutyName}}{{scope.row.areaDutyName}}
-                        </template>
+						<template slot-scope="scope">
+							{{ scope.row.regionDutyName }}{{ scope.row.areaDutyName }}
+						</template>
 					</el-table-column>
 					<el-table-column prop="cnt" label="员工总数">
 					</el-table-column>
 					<el-table-column label="操作" width="160px" align="center" v-if="look">
 						<template slot-scope="scope">
-							<el-button size="mini" type="primary" @click="choseperson(scope.row)" >查看</el-button>
+							<el-button size="mini" type="primary" @click="choseperson(scope.row)">查看</el-button>
 						</template>
 					</el-table-column>
 				</el-table>
 				<el-pagination class="pageBox" @current-change="currchange" layout="prev, pager, next" background
-                    :total="total">
-                </el-pagination>
+					:total="total">
+				</el-pagination>
 			</div>
 		</div>
 	</fullscreen>
-
 </template>
 <script>
-	import mySearch from "../../../components/search.vue";
-	import myMessage from "../../../components/myMessage.vue"
-	import toolList from '../../../components/toolList'
+import mySearch from "../../../components/search.vue";
+import myMessage from "../../../components/myMessage.vue"
+import toolList from '../../../components/toolList'
 
-	export default {
-		components: {
-			mySearch,
-			myMessage,
-			toolList
+export default {
+	components: {
+		mySearch,
+		myMessage,
+		toolList
+	},
+	data() {
+		return {
+			searchList: [{
+				type: 'input',
+				tit: '供应商名称',
+				value: '',
+				width: '98%',
+			}],
+			tooltit: '人员进度跟踪',
+			fullscreen: false,
+			total: 0,
+			pageSize: 1,
+			tableData: [{}],
+			dialogStatus: false,
+			disableStatus: false,
+			titname: '',
+			infolist: {},
+			userInfo: {},
+			params: {},
+			centerDialogVisible: false,
+			messTit: '',
+			delid: '',
+			loading: false,
+			loadinged: false,
+			btnout: true,
+			look: false,
+			time: '',
+			num: '',
+			fillCnt: '',
+			lastUpdateTime: '',
+			sts: 1,
+			companyFlag: '',
+			isRegionName: '',
+			regionName: '',
+			// excelCityparam: ""
+			memberFamilyBtnShow: "-1"
+		}
+	},
+	methods: {
+		outexlAll() {
+			let url = '/market/cMemberWo/excelExportDetailSummary';
+			let paramsf = {};
+			// if (window.sessionStorage.excelCityparam) {
+			// 	paramsf.regionName = window.sessionStorage.excelCityparam
+			// }
+			if (this.companyFlag == 0) {
+
+			} else if (this.companyFlag == 1) {
+				paramsf.regionName = this.userInfo.cityName
+			}
+			this.$http({
+				url: url,
+				method: "post",
+				responseType: 'blob',
+				headers: {
+					"Content-Type": "application/json",
+				},
+				data: paramsf,
+			}).then((response) => {
+				if (window.navigator && window.navigator.msSaveOrOpenBlob) {
+					let blob = new Blob([response.data], {
+						type: response.data.type
+					});
+					window.navigator.msSaveOrOpenBlob(blob, 'adv.xlsx');
+				} else {
+					/* 火狐谷歌的文件下载方式 */
+					// console.log(response.data.type)
+					var blob = new Blob([response.data])
+					var downloadElement = document.createElement('a')
+					var href = window.URL.createObjectURL(blob);
+					downloadElement.href = href;
+					downloadElement.download = 'adv.xlsx';
+					document.body.appendChild(downloadElement);
+					downloadElement.click();
+					document.body.removeChild(downloadElement);
+					window.URL.revokeObjectURL(href);
+				}
+			});
 		},
-		data() {
-			return {
-				searchList: [{
-					type: 'input',
-					tit: '供应商名称',
-					value: '',
-					width: '98%',
-				}],
-				tooltit: '人员进度跟踪',
-				fullscreen: false,
-				total: 0,
-				pageSize: 1,
-				tableData: [{}],
-				dialogStatus: false,
-				disableStatus: false,
-				titname: '',
-				infolist: {},
-				userInfo: {},
-				params: {},
-				centerDialogVisible: false,
-				messTit: '',
-				delid: '',
-				loading: false,
-				loadinged: false,
-				look:false,
-				time: '',
-				num: '',
-				fillCnt: '',
-				lastUpdateTime: '',
-                sts:1,
-                companyFlag:'',
-                isRegionName:'',
-				regionName:'',
-				// excelCityparam: ""
-				memberFamilyBtnShow: "-1"
+		outexl() {
+			let url = '';
+			let paramsf = {};
+			if (window.sessionStorage.excelCityparam) {
+				paramsf.regionName = window.sessionStorage.excelCityparam
+			}
+			if (this.sts == 1) {
+				url = '/market/cMemberWo/excelExportSummaryByProv';
+			} else {
+				url = '/market/cMemberWo/excelExportSummaryByArea';
 			}
+			this.$http({
+				url: url,
+				method: "post",
+				responseType: 'blob',
+				headers: {
+					"Content-Type": "application/json",
+				},
+				data: paramsf,
+			}).then((response) => {
+				if (window.navigator && window.navigator.msSaveOrOpenBlob) {
+					let blob = new Blob([response.data], {
+						type: response.data.type
+					});
+					window.navigator.msSaveOrOpenBlob(blob, 'adv.xlsx');
+				} else {
+					/* 火狐谷歌的文件下载方式 */
+					// console.log(response.data.type)
+					var blob = new Blob([response.data])
+					var downloadElement = document.createElement('a')
+					var href = window.URL.createObjectURL(blob);
+					downloadElement.href = href;
+					downloadElement.download = 'adv.xlsx';
+					document.body.appendChild(downloadElement);
+					downloadElement.click();
+					document.body.removeChild(downloadElement);
+					window.URL.revokeObjectURL(href);
+				}
+			});
 		},
-		methods: {
-            outexl(){
-                let url = '';
-                let paramsf = {};
-				if(window.sessionStorage.excelCityparam){
-					paramsf.regionName = window.sessionStorage.excelCityparam
+		choseperson(v) {
+			if (this.btnout) {
+				this.btnout = false
+			}
+			if (v.showButton) {
+				window.sessionStorage.memberFamilyBtnShow = v.showButton;
+			}
+			if (this.companyFlag == 0) {
+				if (v.regionName == "省公司") {
+					this.$router.push({
+						path: "/employeeInfo",
+						query: {
+							regionName: v.regionName,
+							isRegionName: v.isRegionName
+						}
+					});
+					this.setabList("员工信息", "/employeeInfo?regionName=" + v.regionName);
+					return
 				}
-                if(this.sts == 1){
-                    url = '/market/cMemberWo/excelExportSummaryByProv';
-                }else{
-                    url = '/market/cMemberWo/excelExportSummaryByArea';
-                }
-                this.$http({
-                    url: url,
-                    method: "post",
-                    responseType: 'blob',
-                    headers: {
-                        "Content-Type": "application/json",
-                    },
-                    data: paramsf,
-                }).then((response) => {
-                    if (window.navigator && window.navigator.msSaveOrOpenBlob) {
-                        let blob = new Blob([response.data], {
-                            type: response.data.type
-                        });
-                        window.navigator.msSaveOrOpenBlob(blob, 'adv.xlsx');
-                    } else {
-                        /* 火狐谷歌的文件下载方式 */
-                        // console.log(response.data.type)
-                        var blob = new Blob([response.data])
-                        var downloadElement = document.createElement('a')
-                        var href = window.URL.createObjectURL(blob);
-                        downloadElement.href = href;
-                        downloadElement.download = 'adv.xlsx';
-                        document.body.appendChild(downloadElement);
-                        downloadElement.click();
-                        document.body.removeChild(downloadElement);
-                        window.URL.revokeObjectURL(href);
-                    }
-                });
-            },
-			choseperson(v){
-			
-				if(v.showButton){
-					window.sessionStorage.memberFamilyBtnShow = v.showButton;
+				// if(v.areaName == "省公司"){
+				// 	this.$router.push({
+				//     	path: "/employeeInfo",
+				//         query:{
+				//             regionName:v.areaName
+				//         }
+				//     });
+				//     this.setabList("员工信息", "/employeeInfo?regionName="+v.areaName);
+				// 	return
+				// }
+				if (this.sts == 2) {
+					this.$router.push({
+						path: "/employeeInfo",
+						query: {
+							regionName: v.areaName,
+							isRegionName: v.isRegionName
+						}
+					});
+					this.setabList("员工信息", "/employeeInfo?regionName=" + v.areaName);
+					return
 				}
-                if(this.companyFlag == 0){
-					if(v.regionName == "省公司"){
-						 this.$router.push({
-                        	path: "/employeeInfo",
-                            query:{
-                                regionName:v.regionName,
-								isRegionName:v.isRegionName
-                            }
-                        });
-                        this.setabList("员工信息", "/employeeInfo?regionName="+v.regionName);
-						return
-					}
-					// if(v.areaName == "省公司"){
-					// 	this.$router.push({
-                    //     	path: "/employeeInfo",
-                    //         query:{
-                    //             regionName:v.areaName
-                    //         }
-                    //     });
-                    //     this.setabList("员工信息", "/employeeInfo?regionName="+v.areaName);
-					// 	return
-					// }
-                    if(this.sts == 2){
-                        this.$router.push({
-                        	path: "/employeeInfo",
-                            query:{
-                                regionName:v.areaName,
-								isRegionName:v.isRegionName
-                            }
-                        });
-                        this.setabList("员工信息", "/employeeInfo?regionName="+v.areaName);
-                        return
-                    }
-					window.sessionStorage.excelCityparam = v.regionName;
-                    this.$http({
-                    	url: "/market/cMemberWo/querySummaryByAreaPage",
-                    	method: "post",
-                    	headers: {
-                    		"Content-Type": "application/json",
-                    		"page": '{"pageNo":"' + 1 + '","pageSize":"100"}'
-                    	},
-                    	data: {regionName:v.regionName},
-                    }).then((res) => {
-                    	this.tableData = res.data.data;
-                    	this.total = res.data.totalRecord;
-                    	this.loading = false;
-						this.isRegionName = res.data.data.isRegionName;
-                        this.sts = 2;
-                    });
-					
-                }else{
-                    this.$router.push({
-                    	path: "/employeeInfo?regionName="+v.areaName,
-                        query:{
-                            regionName:v.areaName,
-							isRegionName:v.isRegionName
-                        }
-                    });
-					
-                    this.setabList("员工信息", "/employeeInfo?regionName="+v.areaName);
-                }
-			},
-			setabList(n, p) {
-				let params = {
-					children: "",
-					name: n,
-					rountPath: p,
-					target: "_self",
-				};
-				for (let i = 0; i < this.$store.state.tabList.length; i++) {
-					if (this.$store.state.tabList[i].name === params.name) {
-						this.$store.state.tabList[i] = params;
+				window.sessionStorage.excelCityparam = v.regionName;
+				this.$http({
+					url: "/market/cMemberWo/querySummaryByAreaPage",
+					method: "post",
+					headers: {
+						"Content-Type": "application/json",
+						"page": '{"pageNo":"' + 1 + '","pageSize":"100"}'
+					},
+					data: { regionName: v.regionName },
+				}).then((res) => {
+					this.tableData = res.data.data;
+					this.total = res.data.totalRecord;
+					this.loading = false;
+					this.isRegionName = res.data.data.isRegionName;
+					this.sts = 2;
+				});
+
+			} else {
+				this.$router.push({
+					path: "/employeeInfo?regionName=" + v.areaName,
+					query: {
+						regionName: v.areaName,
+						isRegionName: v.isRegionName
 					}
+				});
+
+				this.setabList("员工信息", "/employeeInfo?regionName=" + v.areaName);
+			}
+		},
+		setabList(n, p) {
+			let params = {
+				children: "",
+				name: n,
+				rountPath: p,
+				target: "_self",
+			};
+			for (let i = 0; i < this.$store.state.tabList.length; i++) {
+				if (this.$store.state.tabList[i].name === params.name) {
+					this.$store.state.tabList[i] = params;
 				}
-				let set = new Set([...this.$store.state.tabList, params]);
-				set.add(params);
-				this.$store.commit("setDefaultActive", params.rountPath);
-				this.$store.commit("setTabList", Array.from(set));
-			},
-			handleSelectionChange(val) {
-				// console.log(val) 
-			},
-			//搜索数据
-			searchInfo(v) {
-				this.params = {};
-				v[0] ? this.params.supplierName = v[0] : '';
-				this.getList(this.params, this.pageSize);
-			},
-			//获取列表
-			getList(v, n) {
-		
-				this.pageSize = n;
-				let _this = this;
-				this.loading = true;
-				this.tableData = [];
-                let url = '';
-				if(this.companyFlag == 2){
-					this.$router.push({
-                    	path: "/employeeInfo?regionName="+v.areaName,
-                        query:{
-                            regionName:this.regionName,
-							isRegionName:v.isRegionName
-                        }
-                    });
-					
-                    this.setabList("员工信息", "/employeeInfo?regionName="+v.areaName);
-				}else if(this.companyFlag == 0){
-                    url="/market/cMemberWo/querySummaryByProvPage"
-					this.$http({
+			}
+			let set = new Set([...this.$store.state.tabList, params]);
+			set.add(params);
+			this.$store.commit("setDefaultActive", params.rountPath);
+			this.$store.commit("setTabList", Array.from(set));
+		},
+		handleSelectionChange(val) {
+			// console.log(val) 
+		},
+		//搜索数据
+		searchInfo(v) {
+			this.params = {};
+			v[0] ? this.params.supplierName = v[0] : '';
+			this.getList(this.params, this.pageSize);
+		},
+		//获取列表
+		getList(v, n) {
+
+			this.pageSize = n;
+			let _this = this;
+			this.loading = true;
+			this.tableData = [];
+			let url = '';
+			if (this.companyFlag == 2) {
+				this.$router.push({
+					path: "/employeeInfo?regionName=" + v.areaName,
+					query: {
+						regionName: this.regionName,
+						isRegionName: v.isRegionName
+					}
+				});
+
+				this.setabList("员工信息", "/employeeInfo?regionName=" + v.areaName);
+			} else if (this.companyFlag == 0) {
+				url = "/market/cMemberWo/querySummaryByProvPage"
+				this.$http({
 					url: url,
 					method: "post",
 					headers: {
@@ -253,14 +299,14 @@
 					this.total = res.data.totalRecord;
 					this.loading = false;
 					// this.isRegionName = res.data.data.isRegionName;
-					
+
 				});
-                }else if(this.companyFlag == 1){
-                    url="/market/cMemberWo/querySummaryByAreaPage"
-                    v.regionName = this.userInfo.cityName
-					window.sessionStorage.excelCityparam = this.userInfo.cityName;
-					this.sts = 2
-                
+			} else if (this.companyFlag == 1) {
+				url = "/market/cMemberWo/querySummaryByAreaPage"
+				v.regionName = this.userInfo.cityName
+				window.sessionStorage.excelCityparam = this.userInfo.cityName;
+				this.sts = 2
+
 				this.$http({
 					url: url,
 					method: "post",
@@ -274,161 +320,161 @@
 					this.total = res.data.totalRecord;
 					this.loading = false;
 					// this.isRegionName = res.data.data.isRegionName;
-					
+
 				});
-				}
-			},
-			judgment(){
-				this.userInfo = JSON.parse(window.sessionStorage.userInfo);
-				if(this.userInfo.duty <= 9){
-					if(this.userInfo.loginNoStr == "kanyanli"){
-						this.look = true;
-					}else{
-						this.look = false;
-					}
-					
-				}else{
+			}
+		},
+		judgment() {
+			this.userInfo = JSON.parse(window.sessionStorage.userInfo);
+			if (this.userInfo.duty <= 9) {
+				if (this.userInfo.loginNoStr == "kanyanli") {
 					this.look = true;
+				} else {
+					this.look = false;
 				}
-			},
-			// 分页
-			currchange(v) {
-				this.pageSize = v;
-				this.getList(this.params, this.pageSize);
-			},
-			//申请
-			dialogCheck(v, n) {
-				this.dialogStatus = true;
-				this.infolist = Object.assign({}, n);
-				if (v === 1) {
-					this.titname = '查看';
-					this.disableStatus = true;
-					return
-				} else if (v === 2) {
-					this.titname = '修改';
-					this.disableStatus = false;
-				} else if (v === 3) {
-					this.titname = '添加';
-					this.disableStatus = false;
-				}
-				this.infolist.opNo = this.userInfo.loginNo;
-				this.infolist.opName = this.userInfo.loginName;
-			},
-			//功能栏
-			iconCli(v) {
-				if (v === 1) {
-					this.getList(this.params, this.pageSize);
-				}
-				if (v === 2) {
-					this.fullscreen = !this.fullscreen
-				}
-			},
-			getUser() {
-				this.userInfo = JSON.parse(window.sessionStorage.userInfo);
-                this.$http({
-                	url: "/market/cMemberFillDetail/querySummaryInfo",
-                	method: "post",
-                	headers: {
-                		"Content-Type": "application/json",
-                	},
-                	data: {},
-                }).then((res) => {
-                    this.fillCnt = res.data.fillCnt;
-                    this.lastUpdateTime = res.data.lastUpdateTime;
-                });
 
-                this.$http({
-                    url: "/sysmgr/csysuserinfo/queryUserInfoByLoginNo",
-                    method: "post",
-                    headers: {
-                        "Content-Type": "application/json",
-                    },
-                    data: {},
-                }).then((res) => {
-                    this.companyFlag = res.data.companyFlag;
-					this.regionName = res.data.groupName;
-                     this.getList({}, 1);
-                });
+			} else {
+				this.look = true;
 			}
 		},
-		mounted() {
-			this.getUser();
-			this.judgment();
-			window.sessionStorage.memberFamilyBtnShow = this.memberFamilyBtnShow
+		// 分页
+		currchange(v) {
+			this.pageSize = v;
+			this.getList(this.params, this.pageSize);
+		},
+		//申请
+		dialogCheck(v, n) {
+			this.dialogStatus = true;
+			this.infolist = Object.assign({}, n);
+			if (v === 1) {
+				this.titname = '查看';
+				this.disableStatus = true;
+				return
+			} else if (v === 2) {
+				this.titname = '修改';
+				this.disableStatus = false;
+			} else if (v === 3) {
+				this.titname = '添加';
+				this.disableStatus = false;
+			}
+			this.infolist.opNo = this.userInfo.loginNo;
+			this.infolist.opName = this.userInfo.loginName;
 		},
-		created() {
+		//功能栏
+		iconCli(v) {
+			if (v === 1) {
+				this.getList(this.params, this.pageSize);
+			}
+			if (v === 2) {
+				this.fullscreen = !this.fullscreen
+			}
+		},
+		getUser() {
+			this.userInfo = JSON.parse(window.sessionStorage.userInfo);
+			this.$http({
+				url: "/market/cMemberFillDetail/querySummaryInfo",
+				method: "post",
+				headers: {
+					"Content-Type": "application/json",
+				},
+				data: {},
+			}).then((res) => {
+				this.fillCnt = res.data.fillCnt;
+				this.lastUpdateTime = res.data.lastUpdateTime;
+			});
 
+			this.$http({
+				url: "/sysmgr/csysuserinfo/queryUserInfoByLoginNo",
+				method: "post",
+				headers: {
+					"Content-Type": "application/json",
+				},
+				data: {},
+			}).then((res) => {
+				this.companyFlag = res.data.companyFlag;
+				this.regionName = res.data.groupName;
+				this.getList({}, 1);
+			});
 		}
+	},
+	mounted() {
+		this.getUser();
+		this.judgment();
+		window.sessionStorage.memberFamilyBtnShow = this.memberFamilyBtnShow
+	},
+	created() {
+
 	}
+}
 </script>
 <style scoped lang="scss">
-	.onetab {
-		margin-bottom: 20px;
-		padding: 0 20px;
-	}
+.onetab {
+	margin-bottom: 20px;
+	padding: 0 20px;
+}
 
-	.titbox {
-		div {
-			float: right;
+.titbox {
+	div {
+		float: right;
 
-			i {
-				font-size: 22px;
-				margin-left: 20px;
-				cursor: pointer;
-			}
+		i {
+			font-size: 22px;
+			margin-left: 20px;
+			cursor: pointer;
 		}
 	}
+}
 
-	.tabbox {
-		margin-top: 15px;
-	}
+.tabbox {
+	margin-top: 15px;
+}
 
-	.pageBox {
-		text-align: right;
-		margin-top: 10px;
-	}
+.pageBox {
+	text-align: right;
+	margin-top: 10px;
+}
 
-	.info-line {
-		width: 100%;
-		display: block;
-		padding-left: 20px;
+.info-line {
+	width: 100%;
+	display: block;
+	padding-left: 20px;
 
-		div {
-			width: 50%;
-			display: inline-block;
-		}
+	div {
+		width: 50%;
+		display: inline-block;
+	}
 
-		span {
-			width: 80px;
-			display: inline-block;
-			text-align: left;
+	span {
+		width: 80px;
+		display: inline-block;
+		text-align: left;
 
-			i {
-				color: red;
-				display: inline-block;
-				padding-right: 5px;
-			}
+		i {
+			color: red;
+			display: inline-block;
+			padding-right: 5px;
 		}
+	}
 
-		.el-select,
-		.el-input {
-			width: calc(100% - 100px);
-		}
+	.el-select,
+	.el-input {
+		width: calc(100% - 100px);
 	}
+}
 
-	.online {
-		width: 100%;
+.online {
+	width: 100%;
 
-		.el-select {
-			width: calc(100% - 100px);
-		}
+	.el-select {
+		width: calc(100% - 100px);
+	}
 
-		span {
-			vertical-align: top;
-		}
+	span {
+		vertical-align: top;
+	}
 
-		.el-textarea {
-			width: calc(100% - 100px);
-		}
+	.el-textarea {
+		width: calc(100% - 100px);
 	}
+}
 </style>

+ 33 - 12
src/pages/main/workflowdef/qathList.vue

@@ -28,7 +28,7 @@
         <el-dialog title="配置信息" :visible.sync="dialogStatus" width="100%" style="height: 100%" :fullscreen="true"
             :before-close="handleClose1" :modal="false" v-if="dialogStatus" :destroy-on-close="true">
             <el-button type="primary" @click="dialogTreeStatus2 = true">新增</el-button>
-            <el-button type="primary" v-if="delarr.length>0" @click="delarrbtn">批量删除</el-button>
+            <el-button type="primary" v-if="delarr.length > 0" @click="delarrbtn">批量删除</el-button>
             <el-table :data="tableData2" v-loading="loading" style="width: 100%;min-height: 600px;" ref="refTable"
                 height="600px" @selection-change="selectionChange">
                 <!-- 是否多选 -->
@@ -59,20 +59,24 @@
             <div style="height: 100%">
                 <div style="height: 100%">
                     <el-form ref="form" :model="fromList" :rules="rule" label-width="130px" style="margin-top: 30px">
-                        <div class="flex-header">
-                            <el-form-item label="字段名称:" prop="needName">
-                                <el-input v-model="fromList.needName"></el-input>
+                        <div v-for="(item, index) in fromList.limitList">
+                            <el-form-item label="字段名称:">
+                                <el-input v-model="item.needName"></el-input>
                             </el-form-item>
-                        </div>
-                        <div class="flex-header">
-                            <el-form-item label="字段值:" prop="needCode">
-                                <el-input v-model="fromList.needCode"></el-input>
+                            <el-form-item label="字段值:">
+                                <el-input v-model="item.needCode"></el-input>
                             </el-form-item>
                         </div>
                     </el-form>
+
                     <div style="text-align: center; margin-top: 30px">
+                        <el-button style="width: 80px;margin-right: 20px;margin-left: 40px" @click="addNewLimitAuth()">添加
+                        </el-button>
                         <el-button type="primary" @click="clickSave(1)">确 定</el-button>
                         <el-button @click="dialogTreeStatus2 = false;">取 消</el-button>
+                        <el-button style="width: 80px;margin-right: 20px;margin-left: 40px" type="danger"
+                            v-if="fromList.limitList.length > 1" @click="delNewLimitAuth()">删除
+                        </el-button>
                     </div>
                 </div>
             </div>
@@ -143,7 +147,9 @@ export default {
                 pageSizes: 10, // 每页数量
                 pageNum: 1, // 页码
             },
-            fromList: {},
+            fromList: {
+                limitList: [{}]
+            },
             resourceId: '',
             treeListonly: [],
             defaultList: [],
@@ -154,6 +160,16 @@ export default {
         }
     },
     methods: {
+        addNewLimitAuth() {
+            var _this = this;
+            console.log(_this.fromList.limitList);
+            _this.fromList.limitList.push({
+                index: 1
+            });
+        },
+        delNewLimitAuth() {
+            this.fromList.limitList.pop()
+        },
         getRowList() {
 
         },
@@ -203,7 +219,7 @@ export default {
         },
         selectionChange(val) {
             console.log(val);
-            this.delarr=val
+            this.delarr = val
         },
         getRiskadminform(v) {///CfgWorkflowChoosePerson/queryPage
             console.log(v);
@@ -245,8 +261,13 @@ export default {
                 // console.log(this.resourceId);
                 // console.log(this.searchBox);
                 let paramsJson = {}
-                paramsJson[this.fromList.needName] = this.fromList.needCode
-                // console.log(paramsJson);
+                this.fromList.limitList.map((item) => {
+                    console.log(item);
+                    paramsJson[item.needName] = item.needCode
+                })
+
+
+                console.log(paramsJson);
                 let arr = []
                 this.treeListonly.map((item) => {
                     arr.push({