修改提示权限的问题

This commit is contained in:
gyj
2024-01-23 14:05:59 +08:00
parent d6e21e33b5
commit 72926b2e27
2 changed files with 10 additions and 2 deletions
+8
View File
@@ -175,3 +175,11 @@ export function confirmMediation(data) {
data: data,
})
}
// 查询部门列表
export function listDeptApplied(query) {
return request({
url: '/system/dept/selectList',
method: 'get',
params: query
})
}
+2 -2
View File
@@ -136,7 +136,7 @@
</template>
<script>
import { caseApplicationList, caseApplicationSelectById,submitCaseApply,selectPaymentDetail,sealApply,selectSealUrl,listCaseLogRecord,msCaseFile,msCaseSign} from '@/api/caseManagement/caseManagement.js'
import { caseApplicationList, caseApplicationSelectById,submitCaseApply,selectPaymentDetail,sealApply,selectSealUrl,listCaseLogRecord,msCaseFile,msCaseSign,listDeptApplied} from '@/api/caseManagement/caseManagement.js'
import { listDept } from '@/api/system/dept.js'
import { queryCaseFlowInfo } from '@/api/caseprocessManagement/caseprocessManagement.js'
import moment from "moment";
@@ -402,7 +402,7 @@ export default {
},
/** 获取所有部门 */
listDeptFn() {
listDept().then(res => {
listDeptApplied().then(res => {
this.deptList = res.data;
})
},