Merge branch 'minJeecg' into 'master'
1.修改流程 See merge request cxcxt/jeecguniapp!9
This commit is contained in:
commit
b685f82d84
2
env/.env.development
vendored
2
env/.env.development
vendored
@ -4,5 +4,5 @@ NODE_ENV = 'development'
|
||||
VITE_DELETE_CONSOLE = false
|
||||
# 是否开启sourcemap
|
||||
VITE_SHOW_SOURCEMAP = true
|
||||
VITE_SERVER_BASEURL = 'http://10.75.15.249:8080/jeecg-boot'
|
||||
VITE_SERVER_BASEURL = 'http://10.75.15.247:8080/jeecg-boot'
|
||||
#VITE_SERVER_BASEURL = 'https://36.112.48.190/jeecg-boot'
|
@ -42,7 +42,7 @@
|
||||
watch(() => props.path, (newVal) => {
|
||||
if (newVal){
|
||||
compName.value = newVal;
|
||||
if(newVal.indexOf('index.vue')==-1){
|
||||
if(newVal.indexOf('index')==-1){
|
||||
compName.value = newVal+'/index'
|
||||
}
|
||||
}
|
||||
|
@ -74,7 +74,7 @@
|
||||
<label class="uni-list-cell uni-list-cell-pd uni-label-pointer">
|
||||
<!-- 点击的文字 -->
|
||||
<radio value="1" style="transform: scale(0.7);" :checked="true"></radio>
|
||||
<view class="margin-left-sm text-sm">单分支模式</view>
|
||||
<view class="margin-left-sm text-sm">通过</view>
|
||||
</label>
|
||||
<label class="uni-list-cell uni-list-cell-pd uni-label-pointer" v-if="resultObj.histListSize>0 ">
|
||||
<!-- 点击的文字 -->
|
||||
|
@ -11,7 +11,7 @@
|
||||
<PageLayout nav-title="我发起流程">
|
||||
<view class="container">
|
||||
<template v-for="(item, i) in list" :key="i">
|
||||
<wd-card :title="item.bpmBizTitle" title-bold border-radius="8" use-footer-slot>
|
||||
<wd-card :title="item.bpmBizTitle" title-bold border-radius="8" use-footer-slot @click="goToPage(item)">
|
||||
<wd-row class="row">
|
||||
<wd-col :span="6">
|
||||
<text>申请理由:</text>
|
||||
@ -90,6 +90,15 @@
|
||||
})
|
||||
}
|
||||
|
||||
const goToPage = (item) => {
|
||||
uni.navigateTo({
|
||||
url: `/pages-process/taskHandle?data=history`,
|
||||
success: (res) => { //明文数据传输改为加密
|
||||
res.eventChannel.emit('taskData', JSON.stringify(item))
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
/**流程取回*/
|
||||
const callBackProcess = (id) => {
|
||||
callBackProcessApi({
|
||||
|
@ -154,6 +154,7 @@
|
||||
|
||||
getHisInfo({processInstanceId:useData.processInstanceId}).then((res)=>{
|
||||
if (res.success) {
|
||||
console.log(res)
|
||||
dataSource.value = res.result.records
|
||||
//查找最后一个,结束时间
|
||||
completedNum.value = res.result.records.length
|
||||
|
Loading…
Reference in New Issue
Block a user