您好,登录后才能下订单哦!
本篇内容主要讲解“JavaScript如何创建审批页面”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“JavaScript如何创建审批页面”吧!
创建审批页面
1、在OA前端项目src/pages/processCheck目录下新增模块目录。用于存放自己模块的所有审批页面。在对应目录下新增对应审批文件
2、将页面引入待办列表页面当中
在taskList页面总以组件的形式引入审批页面组件名称前后端必须一致
3、跳转到对应审批页面
Id:对应业务id
routeName:对应页面组件名称。
二、审批页面样式与审批退回功能
1、审批页面参考invoiceApplyAudit样式
页面数据在dataInfo中若dataInfo中没有数据查看下init方法是否存在问题
init() { // 初始化信息
if (this.businessId == '') {
return
}
const url = this.url + '/business_app_info/business/' + this.businessId
let fields = XM.ajax.get.call(this, url)
fields
.then(res => {
this.dataInfo = res.data.data
this.probableProcess = res.data.probableProcess
this.processInstDetail = res.data.processInstDetail
})
.catch(err => {
this.$_consoleUtils.err(err)
this.$message.error('[' + err.status + ']' + err.msg)
})
},
2、审批同意或退回的方法
check(e,isPass) { //同意或者反对
console.log(this.completeParam)
this.completeParam.businessId = this.businessId
this.completeParam.isRatify = isPass
//根据流程实例id完成任务
XM.ajax
.put(this.url + '/execute', this.completeParam)
.then(res => {
this.auditResult = res.data.auditResult
this.$message.success(res.msg)
})
.catch(err => {
this.$_consoleUtils.err(err)
this.$message.error('[' + err.status + ']' + err.msg)
})
},
到此,相信大家对“JavaScript如何创建审批页面”有了更深的了解,不妨来实际操作一番吧!这里是亿速云网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。