From 4ed7e70bb2dd379318da4d9454f86264c7fd6b88 Mon Sep 17 00:00:00 2001 From: shikeying <pxzsky@163.com> Date: 星期四, 23 三月 2023 16:26:22 +0800 Subject: [PATCH] 用户列表显示机构名称 --- src/views/activiti/task/index.vue | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/views/activiti/task/index.vue b/src/views/activiti/task/index.vue index fde88b4..f5ed247 100644 --- a/src/views/activiti/task/index.vue +++ b/src/views/activiti/task/index.vue @@ -17,7 +17,7 @@ type="text" icon="el-icon-edit" @click="examineAndApprove (scope.row)" - v-hasPermi="['workflow:leave:edit']" + v-hasPermi="['wf:task:**']" >瀹℃壒 </el-button> </template> @@ -117,7 +117,7 @@ getList() { this.loading = true; listTask(this.queryParams).then(response => { - this.tastList = response.rows; + this.tastList = response.data; this.total = response.total; this.loading = false; }); @@ -143,8 +143,8 @@ console.log(row) this.reset(); this.definitionKey = row.definitionKey; - this.businessKey = row.businessKey; - this.id=row.id; + this.businessKey = row.businessKey; + this.id=row.id; formDataShow(row.id).then(response => { // FormProperty_3qipis2--__!!radio--__!!瀹℃壒鎰忚--__!!i--__!!鍚屾剰--__--涓嶅悓鎰� // FormProperty_0lffpcm--__!!textarea--__!!鎵规敞--__!!f--__!!null @@ -178,7 +178,7 @@ /** 鎻愪氦鎸夐挳 */ submitForm() { formDataSave(this.id,this.form.formData).then(response => { - this.msgSuccess("瀹℃壒鎴愬姛"); + this.$modal.msgSuccess("瀹℃壒鎴愬姛"); this.open = false; this.getList(); }); -- Gitblit v1.9.1