修改相关人员名单;
2.布局握手流程
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
<a-upload name="file" :showUploadList="false"
|
<a-upload name="file" :showUploadList="false"
|
||||||
class="upload-text"
|
class="upload-text"
|
||||||
:multiple="false" :headers="tokenHeader"
|
:multiple="false" :headers="tokenHeader"
|
||||||
:action="importUrl+'?cut='+cut"
|
:action="importUrl"
|
||||||
@change="handleImport"
|
@change="handleImport"
|
||||||
:accept="accept">
|
:accept="accept">
|
||||||
<a-icon type="import" :rotate="270"/>
|
<a-icon type="import" :rotate="270"/>
|
||||||
@@ -33,14 +33,25 @@
|
|||||||
type: String,
|
type: String,
|
||||||
default: ''
|
default: ''
|
||||||
},
|
},
|
||||||
|
projectId:{
|
||||||
|
type: String,
|
||||||
|
default: ''
|
||||||
|
},
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
tokenHeader: {'X-Access-Token': Vue.ls.get(ACCESS_TOKEN)},
|
tokenHeader: {'X-Access-Token': Vue.ls.get(ACCESS_TOKEN)},
|
||||||
importUrl: window._CONFIG['domianURL'] +'/'+ this.url.importZipUrl,
|
|
||||||
cut: '',
|
cut: '',
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
computed:{
|
||||||
|
importUrl(){
|
||||||
|
if (this.projectId){
|
||||||
|
return window._CONFIG['domianURL'] +'/'+ this.url.importZipUrl+'?cut='+this.cut+'&projectId='+this.projectId
|
||||||
|
}
|
||||||
|
return window._CONFIG['domianURL'] +'/'+ this.url.importZipUrl+'?cut='+this.cut
|
||||||
|
},
|
||||||
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
let long = localStorage.getItem('language')
|
let long = localStorage.getItem('language')
|
||||||
this.cut = ''
|
this.cut = ''
|
||||||
|
|||||||
@@ -90,7 +90,8 @@
|
|||||||
this.$route.path == '/system/MessageDetails' ||
|
this.$route.path == '/system/MessageDetails' ||
|
||||||
this.$route.path == '/ProcessMapping' ||
|
this.$route.path == '/ProcessMapping' ||
|
||||||
this.$route.path == '/virtualListDetails' ||
|
this.$route.path == '/virtualListDetails' ||
|
||||||
this.$route.path == '/ProjectDetails') {
|
this.$route.path == '/ProjectDetails' ||
|
||||||
|
this.$route.path == '/handshakeProcess') {
|
||||||
return false
|
return false
|
||||||
} else {
|
} else {
|
||||||
return true
|
return true
|
||||||
|
|||||||
@@ -1,39 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="process-from">
|
<div class="process-from">
|
||||||
<div class="process-header">
|
|
||||||
<div class="process-header-top">
|
|
||||||
<div></div>
|
|
||||||
<div class="right">
|
|
||||||
<a-popover placement="bottom" trigger="click" class="right-select">
|
|
||||||
<template slot="content">
|
|
||||||
<p>Content</p>
|
|
||||||
<p>Content</p>
|
|
||||||
</template>
|
|
||||||
<span>工作空间</span><a-icon type="down" />
|
|
||||||
</a-popover>
|
|
||||||
<a-icon type="bell" />
|
|
||||||
<a-icon type="tool" />
|
|
||||||
<a-icon type="question-circle" />
|
|
||||||
<i class="right-img"></i>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="process-header-title">
|
|
||||||
<div class="process-title">
|
|
||||||
<a-icon type="arrow-left" class="back-to" @click="backTo"/>
|
|
||||||
<span>{{title}}</span>
|
|
||||||
</div>
|
|
||||||
<div class="process-header-btn">
|
|
||||||
<!-- 终止流程-->
|
|
||||||
<a-button class="header-btn termin" type="danger" ghost>{{$t('terminationProcess')}}</a-button>
|
|
||||||
<!-- 保存-->
|
|
||||||
<a-button class="header-btn prese">{{$t('preservation')}}</a-button>
|
|
||||||
<!-- 下发-->
|
|
||||||
<a-button class="header-btn issue" type="primary" ghost>{{$t('issue')}}</a-button>
|
|
||||||
<!-- 提交-->
|
|
||||||
<a-button class="header-btn submit" type="primary" @click="submit">{{$t('submit')}}</a-button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="process-content">
|
<div class="process-content">
|
||||||
<div class="process-content-wrapper" >
|
<div class="process-content-wrapper" >
|
||||||
<div v-for="(item,index) in formData" class="content-box">
|
<div v-for="(item,index) in formData" class="content-box">
|
||||||
|
|||||||
@@ -337,6 +337,11 @@ export const constantRouterMap = [
|
|||||||
name: 'ProjectDetails',
|
name: 'ProjectDetails',
|
||||||
component: () => import(/* webpackChunkName: "user" */ '@/views/projectManagement/ProjectDetails/index')
|
component: () => import(/* webpackChunkName: "user" */ '@/views/projectManagement/ProjectDetails/index')
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/handshakeProcess',
|
||||||
|
name: 'handshakeProcess',
|
||||||
|
component: () => import(/* webpackChunkName: "user" */ '@/views/processCenter/processForm/handshakeProcess/index')
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: '/docManage/form/detail',
|
path: '/docManage/form/detail',
|
||||||
name: 'processIndex',
|
name: 'processIndex',
|
||||||
|
|||||||
@@ -0,0 +1,107 @@
|
|||||||
|
<template>
|
||||||
|
<div class="process-header">
|
||||||
|
<div class="process-header-title">
|
||||||
|
<div class="process-title">
|
||||||
|
<a-icon type="arrow-left" class="back-to" @click="backTo"/>
|
||||||
|
<span>{{title}}</span>
|
||||||
|
</div>
|
||||||
|
<div class="process-header-btn">
|
||||||
|
<!-- 终止流程-->
|
||||||
|
<a-button class="header-btn termin" @click="terminationProcessClick" type="danger" ghost>{{$t('terminationProcess')}}</a-button>
|
||||||
|
<!-- 保存-->
|
||||||
|
<a-button class="header-btn prese">{{$t('preservation')}}</a-button>
|
||||||
|
<!-- 下发-->
|
||||||
|
<a-button class="header-btn issue" type="primary" ghost>{{$t('issue')}}</a-button>
|
||||||
|
<!-- 提交-->
|
||||||
|
<a-button class="header-btn submit" type="primary" @click="submit">{{$t('submit')}}</a-button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'headerProcess',
|
||||||
|
props:['title'],
|
||||||
|
methods:{
|
||||||
|
terminationProcessClick(){
|
||||||
|
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="less" scoped>
|
||||||
|
.process-header {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
.process-header-top {
|
||||||
|
height: 56px;
|
||||||
|
line-height: 56px;
|
||||||
|
margin: 0 32px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
font-size: 14px;
|
||||||
|
|
||||||
|
.right {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
|
||||||
|
.anticon {
|
||||||
|
line-height: 56px;
|
||||||
|
margin-left: 15px;
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.right-select {
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
.anticon-down {
|
||||||
|
font-size: 12px;
|
||||||
|
margin-right: 15px;
|
||||||
|
margin-left: 5px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.right-img {
|
||||||
|
display: inline-block;
|
||||||
|
width: 18px;
|
||||||
|
height: 18px;
|
||||||
|
margin: 19px;
|
||||||
|
margin-left: 15px;
|
||||||
|
border-radius: 50%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.process-header-title {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
height: 68px;
|
||||||
|
line-height: 68px;
|
||||||
|
border-top: 1px solid #efefef;
|
||||||
|
border-bottom: 1px solid #efefef;
|
||||||
|
background: #FFFFFF;
|
||||||
|
|
||||||
|
.process-title {
|
||||||
|
padding-left: 32px;
|
||||||
|
font-size: 16px;
|
||||||
|
font-width: 600;
|
||||||
|
|
||||||
|
.back-to {
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.process-header-btn {
|
||||||
|
padding-right: 22px;
|
||||||
|
|
||||||
|
.header-btn {
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<headerProcess
|
||||||
|
:title="'工程接口人确认符合性要求'"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import headerProcess from '../../components/headerProcess'
|
||||||
|
export default {
|
||||||
|
name: 'handshakeProcess',
|
||||||
|
components:{
|
||||||
|
headerProcess
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
{{$t('export')}}
|
{{$t('export')}}
|
||||||
</div>
|
</div>
|
||||||
<div class="operator-text">
|
<div class="operator-text">
|
||||||
<ImportFile :url="url" :isTrue="true" :accept="'.xls'" @getList="getPersonnelList"/>
|
<ImportFile :url="url" :projectId="$route.query.id" :isTrue="true" :accept="'.xls'" @getList="getPersonnelList"/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<a-table
|
<a-table
|
||||||
|
|||||||
Reference in New Issue
Block a user