Browse Source

手机app流程调整

中职版本
liangkun 4 years ago
parent
commit
d43f233b4f
4 changed files with 5 additions and 8 deletions
  1. +2
    -2
      Learun.Framework.Ultimate V7/Learun.Application.WebApi/XmlConfig/system.config
  2. +1
    -1
      Learun.Framework.Ultimate V7/LearunApp-2.2.0/config.js
  3. +1
    -4
      Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/nworkflow/releasetask/single.vue
  4. +1
    -1
      Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/nworkflow/workflow.js

+ 2
- 2
Learun.Framework.Ultimate V7/Learun.Application.WebApi/XmlConfig/system.config View File

@@ -94,8 +94,8 @@
<!--统一身份认证加密公钥-->
<add key="SSOPublicSecret" value="bjquanjiang" />
<!-- 深信服ACIp -->
<add key="ACIp" value="192.168.90.2"/>
<add key="ACIp2" value="192.168.200.252"/>
<add key="ACIp" value=""/>
<add key="ACIp2" value=""/>
<!-- 是否强制验证强密码 -->
<add key="verifypwd" value="false"/>
<!--疫情防控组角色Id-->


+ 1
- 1
Learun.Framework.Ultimate V7/LearunApp-2.2.0/config.js View File

@@ -10,7 +10,7 @@ export default {
"https://wx.qjkjedu.com/learun/adms"
],
// "apiHost": [
// "http://192.168.2.94:31173/learun/adms"
// "http://192.168.2.202:31173/learun/adms"
// ],
// 开发环境下自动填充登录账号密码,与接口地址一一对应,只在开发环境下显示
"devAccount": [


+ 1
- 4
Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/nworkflow/releasetask/single.vue View File

@@ -110,20 +110,18 @@ export default {

this.needTitle = this.type !== 'again' && Number(currentNode.isTitle) === 1
const formData = await this.fetchFormData(currentNode, processId)

const schemeData = await this.fetchSchemeData(currentNode)
const { formValue, scheme, rel } = await this.getCustomForm({
schemeData,
processId,
formData,
currentNode: this.currentNode,
currentNode: currentNode,
code: this.type === 'again' ? null : code,
useDefault: true
})
this.rel = rel
this.scheme = scheme
this.formValue = formValue

this.code = code
this.processId = processId

@@ -140,7 +138,6 @@ export default {
this.LOADING('正在提交…')
const formValue = this.$refs.form.getFormValue()
const postData = await this.getPostData(formValue, this.scheme)

this.HTTP_POST('/newwf/draft', postData, '提交草稿时发生失败,未能成功保存').then(success => {
this.HIDE_LOADING()
if (!success) {


+ 1
- 1
Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/nworkflow/workflow.js View File

@@ -84,7 +84,7 @@ export default {
if (formData && !formData[schemeItem.F_SchemeInfoId]) {
continue
}
// 设置 formreq 的内容,非新建模式下需要设置 keyValue
const { formId, field } = get(currentNode, `wfForms.${schemeIndex}`, {})
const formreqObj = { schemeInfoId: formId, processIdName: field, formData: {} }


Loading…
Cancel
Save