Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
-28
@@ -69,34 +69,6 @@
|
|||||||
<el-main>
|
<el-main>
|
||||||
<nav-menu></nav-menu>
|
<nav-menu></nav-menu>
|
||||||
<div class="sub-container" style="margin-left: 200px">
|
<div class="sub-container" style="margin-left: 200px">
|
||||||
<!-- <div style="background-color: #0068B7; height: 65px; width: 100%">
|
|
||||||
<span style="color: #fff; line-height: 65px; float: left; font-size: 20px; font-weight: 600;">
|
|
||||||
标准法规管理系统 Standard and Regulation Management System
|
|
||||||
</span>
|
|
||||||
header头部 右侧内容 当前登录人和退出
|
|
||||||
<div class="header-right" style="display: inline-block; float: right; margin-right: 20px; color: #fff">
|
|
||||||
<div class="user-info">
|
|
||||||
<el-dropdown
|
|
||||||
trigger="click"
|
|
||||||
@command="handleCommand"
|
|
||||||
>
|
|
||||||
<div class="user-box" style="margin-top: 23px;">
|
|
||||||
<img :src="userAvator" v-if="$store.getters.userInfo.avator">
|
|
||||||
<span class="iconfont" v-else style="color: #FFFFFF;"></span>
|
|
||||||
<span style="color: #FFFFFF;">{{ $store.getters.userInfo.uName }}</span>
|
|
||||||
<i style="color: #FFFFFF;" class="el-icon-arrow-down"/>
|
|
||||||
</div>
|
|
||||||
<el-dropdown-menu slot="dropdown">
|
|
||||||
<el-dropdown-item command="loginOut">退出</el-dropdown-item>
|
|
||||||
</el-dropdown-menu>
|
|
||||||
</el-dropdown>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="logo">
|
|
||||||
<img :src="logo" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<com-header></com-header>-->
|
|
||||||
<div class="container-box">
|
<div class="container-box">
|
||||||
<router-view/>
|
<router-view/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -8,6 +8,8 @@ import router from '@/router'
|
|||||||
import store from '@/store'
|
import store from '@/store'
|
||||||
import {Message} from 'element-ui'
|
import {Message} from 'element-ui'
|
||||||
import { baseUrl,webLoginType,ssoLoginUrlDev } from '@/sysConfig'
|
import { baseUrl,webLoginType,ssoLoginUrlDev } from '@/sysConfig'
|
||||||
|
import isMobile from "../../store/isMobile";
|
||||||
|
|
||||||
import domMessage from '../messageOnce/messageOnce'
|
import domMessage from '../messageOnce/messageOnce'
|
||||||
|
|
||||||
const messageOnce = new domMessage()
|
const messageOnce = new domMessage()
|
||||||
@@ -67,8 +69,12 @@ _axios.interceptors.response.use(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(res.data && res.data.respCode && res.data.respCode === 'LE505'){
|
if(res.data && res.data.respCode && res.data.respCode === 'LE505'){
|
||||||
window.sessionStorage.clear()
|
if (isMobile()) {
|
||||||
messageOnce.warning({
|
localStorage.removeItem('token')
|
||||||
|
return router.push('/phoneIndex')
|
||||||
|
}
|
||||||
|
window.sessionStorage.clear()
|
||||||
|
messageOnce.warning({
|
||||||
message: '登录超时,请重新登录',
|
message: '登录超时,请重新登录',
|
||||||
type: 'warning'
|
type: 'warning'
|
||||||
})
|
})
|
||||||
|
|||||||
+17
-10
@@ -3,6 +3,8 @@ import router from '@/router'
|
|||||||
import store from '@/store'
|
import store from '@/store'
|
||||||
import {Message} from 'element-ui'
|
import {Message} from 'element-ui'
|
||||||
import { baseUrl,webLoginType,ssoLoginUrlDev } from '@/sysConfig'
|
import { baseUrl,webLoginType,ssoLoginUrlDev } from '@/sysConfig'
|
||||||
|
import isMobile from "../../store/isMobile";
|
||||||
|
|
||||||
import domMessage from '../messageOnce/messageOnce'
|
import domMessage from '../messageOnce/messageOnce'
|
||||||
|
|
||||||
// import 'element-ui/lib/theme-chalk/index.css'
|
// import 'element-ui/lib/theme-chalk/index.css'
|
||||||
@@ -62,16 +64,21 @@ service.interceptors.response.use(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(res.data && res.data.respCode != undefined && res.data.respCode === 'LE505'){
|
if(res.data && res.data.respCode != undefined && res.data.respCode === 'LE505'){
|
||||||
window.sessionStorage.clear()
|
if (isMobile()) {
|
||||||
messageOnce.warning({
|
localStorage.removeItem('token')
|
||||||
message: '登录超时,请重新登录',
|
return router.push('/phoneIndex')
|
||||||
type: 'warning'
|
}else {
|
||||||
})
|
window.sessionStorage.clear()
|
||||||
if(webLoginType != null && webLoginType === 'idm' ) {
|
messageOnce.warning({
|
||||||
// idm 统一认证登录页面
|
message: '登录超时,请重新登录',
|
||||||
return window.location.href = ssoLoginUrlDev
|
type: 'warning'
|
||||||
}else if(webLoginType != null && webLoginType === 'dev'){
|
})
|
||||||
return router.push('/login')
|
if(webLoginType != null && webLoginType === 'idm' ) {
|
||||||
|
// idm 统一认证登录页面
|
||||||
|
return window.location.href = ssoLoginUrlDev
|
||||||
|
}else if(webLoginType != null && webLoginType === 'dev'){
|
||||||
|
return router.push('/login')
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return res.data
|
return res.data
|
||||||
|
|||||||
@@ -617,6 +617,7 @@
|
|||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.nav-menu /deep/.el-submenu__title i {
|
.nav-menu /deep/.el-submenu__title i {
|
||||||
|
font-size: 16px;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.nav-menu{
|
.nav-menu{
|
||||||
@@ -642,6 +643,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.el-menu-item {
|
.el-menu-item {
|
||||||
|
font-size: 16px;
|
||||||
span {
|
span {
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
@@ -678,6 +680,7 @@
|
|||||||
background-color: red;
|
background-color: red;
|
||||||
}
|
}
|
||||||
/deep/.el-submenu__title {
|
/deep/.el-submenu__title {
|
||||||
|
font-size: 16px;
|
||||||
padding: 0 16px !important;
|
padding: 0 16px !important;
|
||||||
span {
|
span {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
@@ -712,7 +715,7 @@
|
|||||||
}
|
}
|
||||||
.el-menu-item {
|
.el-menu-item {
|
||||||
padding-left: 29px !important;
|
padding-left: 29px !important;
|
||||||
font-size: 14px;
|
font-size: 16px;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
height: 40px;
|
height: 40px;
|
||||||
line-height: 40px;
|
line-height: 40px;
|
||||||
|
|||||||
+22
-24
@@ -109,6 +109,7 @@ router.beforeEach(function (to, from, next) {
|
|||||||
if (isMobile()) {
|
if (isMobile()) {
|
||||||
if ((token === null || token === '' ) && toName !== 'Login') {
|
if ((token === null || token === '' ) && toName !== 'Login') {
|
||||||
if(toName !== 'phoneIndex'){
|
if(toName !== 'phoneIndex'){
|
||||||
|
sessionStorage.removeItem("param");
|
||||||
sessionStorage.setItem('param',JSON.stringify(param4))
|
sessionStorage.setItem('param',JSON.stringify(param4))
|
||||||
next('/phoneIndex')
|
next('/phoneIndex')
|
||||||
}else {
|
}else {
|
||||||
@@ -116,16 +117,20 @@ router.beforeEach(function (to, from, next) {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (toName.slice(0,5) !== 'phone') {
|
if (toName.slice(0,5) !== 'phone') {
|
||||||
if (toName === 'processCenter') {
|
let paramPhone = 'taskIds=' + taskId + '&prcId=' + prcId + '&prcNum=' + prcNum +
|
||||||
next()
|
|
||||||
}else {
|
|
||||||
let paramPhone = 'taskIds=' + taskId + '&prcId=' + prcId + '&prcNum=' + prcNum +
|
|
||||||
'&taskAssignee=' + toName + '&prcName=' + prcName + '&prcType=' + prcType
|
'&taskAssignee=' + toName + '&prcName=' + prcName + '&prcType=' + prcType
|
||||||
let phoneRouter = 'phone' + toName.charAt(0).toUpperCase() + toName.slice(1)
|
let phoneRouter = 'phone' + toName.charAt(0).toUpperCase() + toName.slice(1)
|
||||||
next({path: phoneRouter + '?' + paramPhone})
|
next({path: phoneRouter + '?' + paramPhone})
|
||||||
}
|
|
||||||
}else {
|
}else {
|
||||||
extractedVerify(token)
|
if(toName !== 'blankPage'){
|
||||||
|
if(to.matched.length == 0){
|
||||||
|
next('/blankPage')
|
||||||
|
}else {
|
||||||
|
next()
|
||||||
|
}
|
||||||
|
}else {
|
||||||
|
next()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@@ -147,7 +152,12 @@ router.beforeEach(function (to, from, next) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}else if(webLoginType != null && webLoginType === 'dev'){
|
}else if(webLoginType != null && webLoginType === 'dev'){
|
||||||
next('/Login')
|
if (isMobile()) {
|
||||||
|
extractedVerify(token)
|
||||||
|
} else {
|
||||||
|
next('/Login')
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
extractedVerify(token)
|
extractedVerify(token)
|
||||||
@@ -236,11 +246,7 @@ router.beforeEach(function (to, from, next) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (isMobile()){
|
extracted3()
|
||||||
next()
|
|
||||||
} else {
|
|
||||||
extracted3()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
function extracted(routerPath) {
|
function extracted(routerPath) {
|
||||||
@@ -284,17 +290,9 @@ router.beforeEach(function (to, from, next) {
|
|||||||
}
|
}
|
||||||
if(path === '/loginVerify'){
|
if(path === '/loginVerify'){
|
||||||
if(webLoginType != null && webLoginType === 'dev'){
|
if(webLoginType != null && webLoginType === 'dev'){
|
||||||
if(isMobile()) {
|
next('/Login')
|
||||||
next('/blankPage')
|
|
||||||
} else {
|
|
||||||
next('/Login')
|
|
||||||
}
|
|
||||||
}else {
|
}else {
|
||||||
if(isMobile()) {
|
next()
|
||||||
next('/blankPage')
|
|
||||||
} else {
|
|
||||||
next('/Login')
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
next()
|
next()
|
||||||
|
|||||||
@@ -77,11 +77,11 @@
|
|||||||
height: 40px;
|
height: 40px;
|
||||||
line-height: 40px;
|
line-height: 40px;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
font-size: 15px;
|
font-size: 14px;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
}
|
}
|
||||||
.menu-wrap {
|
.menu-wrap {
|
||||||
height: 240px;
|
height: 200px;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
|||||||
@@ -1310,7 +1310,7 @@ export default {
|
|||||||
.to-do-list {
|
.to-do-list {
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
height: calc(~'100% - 310px');
|
height: calc(~'100% - 269px');
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
background: #FFFFFF;
|
background: #FFFFFF;
|
||||||
box-shadow: 1px 1px 10px rgba(0,0,0,0.1);
|
box-shadow: 1px 1px 10px rgba(0,0,0,0.1);
|
||||||
|
|||||||
@@ -173,7 +173,7 @@ export default {
|
|||||||
.right_wrapper {
|
.right_wrapper {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
width: 30vw;
|
width: 25vw;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
.search-condition {
|
.search-condition {
|
||||||
|
|||||||
@@ -33,8 +33,8 @@
|
|||||||
</span>
|
</span>
|
||||||
<!-- 获取当前登录人的会议并表示出来-->
|
<!-- 获取当前登录人的会议并表示出来-->
|
||||||
<span v-for="item in dealMyDate(data.day)" :value="item.fillPeopleId">
|
<span v-for="item in dealMyDate(data.day)" :value="item.fillPeopleId">
|
||||||
<el-tag class="tagOne"/>
|
|
||||||
<el-tag v-if="userId === item.fillPeopleId" class="tagTwo"/>
|
<el-tag v-if="userId === item.fillPeopleId" class="tagTwo"/>
|
||||||
|
<el-tag v-else class="tagOne"/>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
@@ -58,7 +58,7 @@
|
|||||||
</span>
|
</span>
|
||||||
<el-card class="card_info" v-else v-for="(item, index) in todayData" :value="item" :key="index">
|
<el-card class="card_info" v-else v-for="(item, index) in todayData" :value="item" :key="index">
|
||||||
<span v-for="res in item.attend" :key="res.fillPeopleId">
|
<span v-for="res in item.attend" :key="res.fillPeopleId">
|
||||||
<el-tag v-if="userId === res.fillPeopleId" type="success" size="mini">会议</el-tag>
|
<el-tag v-if="userId === res.fillPeopleId" type="success" size="mini">会议</el-tag>
|
||||||
<el-tag v-else type="warning" size="mini">会议</el-tag>
|
<el-tag v-else type="warning" size="mini">会议</el-tag>
|
||||||
</span>
|
</span>
|
||||||
<i style="margin-left: 10px;font-weight: bold">{{ item.title }}</i>
|
<i style="margin-left: 10px;font-weight: bold">{{ item.title }}</i>
|
||||||
@@ -71,6 +71,9 @@
|
|||||||
<div class="content_text2">
|
<div class="content_text2">
|
||||||
<span>会议内容 : {{ item.content }}</span>
|
<span>会议内容 : {{ item.content }}</span>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="content_text2">
|
||||||
|
<span>会议地点 : {{ item.place }}</span>
|
||||||
|
</div>
|
||||||
<div class="content_text">
|
<div class="content_text">
|
||||||
<span>会议附件 :
|
<span>会议附件 :
|
||||||
<span v-if="item.files.length === 0">{{ '-' }}</span>
|
<span v-if="item.files.length === 0">{{ '-' }}</span>
|
||||||
|
|||||||
@@ -562,7 +562,7 @@
|
|||||||
this.$refs['Form'].validate((valid) => {
|
this.$refs['Form'].validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
this.isSubmit = true
|
this.isSubmit = true
|
||||||
this.$http.get('lawss/activiti/startProcess', {
|
this.$http.post('lawss/activiti/startProcessRollBack', {
|
||||||
type: '2'
|
type: '2'
|
||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.ok) {
|
if (res.ok) {
|
||||||
|
|||||||
@@ -559,7 +559,7 @@ export default {
|
|||||||
this.$refs['Form'].validate((valid) => {
|
this.$refs['Form'].validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
this.isSubmit = true
|
this.isSubmit = true
|
||||||
this.$http.get('lawss/activiti/startProcessRollBack', {
|
this.$http.post('lawss/activiti/startProcessRollBack', {
|
||||||
id: this.bpnId || '',
|
id: this.bpnId || '',
|
||||||
createUser: this.$store.getters.userInfo.userId,
|
createUser: this.$store.getters.userInfo.userId,
|
||||||
createUserName: this.$store.getters.userInfo.userName,
|
createUserName: this.$store.getters.userInfo.userName,
|
||||||
|
|||||||
@@ -197,7 +197,8 @@
|
|||||||
align="center"
|
align="center"
|
||||||
label="联络人">
|
label="联络人">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-input v-model="scope.row.tel_name" placeholder="请填写联络人"/>
|
<el-input v-model="scope.row.tel_nameId" style="display: none" placeholder="请填写联络人"/>
|
||||||
|
<el-input v-model="scope.row.tel_name" readonly @click.native="choiceTel('tel_nameId', '选择联络人', scope.row)" placeholder="请填写联络人"/>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
@@ -407,6 +408,13 @@
|
|||||||
:nodeList="nodeList"
|
:nodeList="nodeList"
|
||||||
@checkedRole="drawerCheck"
|
@checkedRole="drawerCheck"
|
||||||
/>
|
/>
|
||||||
|
<Role-tree
|
||||||
|
check-box
|
||||||
|
is-title="选择联络人"
|
||||||
|
:is-visible.sync="telShowflag"
|
||||||
|
:nodeList="nodeListTel"
|
||||||
|
@checkedRole="drawerCheckTel"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -517,8 +525,10 @@ export default {
|
|||||||
},
|
},
|
||||||
roleShowflag: false,
|
roleShowflag: false,
|
||||||
roleShowflagOne: false,
|
roleShowflagOne: false,
|
||||||
|
telShowflag: false,
|
||||||
nodeList: [],
|
nodeList: [],
|
||||||
nodeListOne: [],
|
nodeListOne: [],
|
||||||
|
nodeListTel: [],
|
||||||
isSubmit: false,
|
isSubmit: false,
|
||||||
saveLoading: false,
|
saveLoading: false,
|
||||||
|
|
||||||
@@ -724,6 +734,21 @@ export default {
|
|||||||
this.deleteDataList = val
|
this.deleteDataList = val
|
||||||
},
|
},
|
||||||
|
|
||||||
|
// 列表选人
|
||||||
|
choiceTel(type, title, val,id) {
|
||||||
|
this.choiceTelList = val
|
||||||
|
this.nodeListTel = []
|
||||||
|
this.nodeListTel.push(id)
|
||||||
|
this.type = type
|
||||||
|
this.telShowflag = true
|
||||||
|
},
|
||||||
|
drawerCheckTel(data) {
|
||||||
|
if(data.length > 0) {
|
||||||
|
this.choiceTelList.tel_nameId = data[0].id
|
||||||
|
this.choiceTelList.tel_name = data[0].name
|
||||||
|
}
|
||||||
|
this.telShowflag = false
|
||||||
|
},
|
||||||
// 流程阶段负责人选择
|
// 流程阶段负责人选择
|
||||||
choiceZRR(type, title, id) {
|
choiceZRR(type, title, id) {
|
||||||
this.nodeList = []
|
this.nodeList = []
|
||||||
@@ -774,7 +799,7 @@ export default {
|
|||||||
} else if (this.type === 'engineerUser') {
|
} else if (this.type === 'engineerUser') {
|
||||||
this.roleForm.engineerUser = data[0].name
|
this.roleForm.engineerUser = data[0].name
|
||||||
this.roleForm.engineerUserId = data[0].id
|
this.roleForm.engineerUserId = data[0].id
|
||||||
} else {
|
}else {
|
||||||
this.roleForm.directorUserName = data[0].name
|
this.roleForm.directorUserName = data[0].name
|
||||||
this.roleForm.directorUserId = data[0].id
|
this.roleForm.directorUserId = data[0].id
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -112,10 +112,11 @@
|
|||||||
<template slot="title">选择人员</template>
|
<template slot="title">选择人员</template>
|
||||||
</ProcessTitle>
|
</ProcessTitle>
|
||||||
<el-form-item class="add-form-item" label="入会人员:">
|
<el-form-item class="add-form-item" label="入会人员:">
|
||||||
|
<el-input v-model="rh_pageData.comityOpRoleId" style="display: none;"></el-input>
|
||||||
<el-input
|
<el-input
|
||||||
placeholder="请选择入会成员"
|
placeholder="请选择入会成员"
|
||||||
style="width: 50%"
|
style="width: 50%"
|
||||||
@click.native="choiceRole"
|
@click.native="choiceRole('','请选择入会成员',rh_pageData.comityOpRoleId,)"
|
||||||
v-model="rh_pageData.comityOpRole"
|
v-model="rh_pageData.comityOpRole"
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@@ -380,7 +381,7 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
/** 选择入会人员 */
|
/** 选择入会人员 */
|
||||||
choiceRole(id) {
|
choiceRole(type,title,id) {
|
||||||
this.nodeList = []
|
this.nodeList = []
|
||||||
this.nodeList.push(id)
|
this.nodeList.push(id)
|
||||||
this.roleShowflag = true
|
this.roleShowflag = true
|
||||||
|
|||||||
@@ -431,7 +431,7 @@ export default {
|
|||||||
this.rh_pageData.fillDept = this.$store.getters.userInfo.institutionName
|
this.rh_pageData.fillDept = this.$store.getters.userInfo.institutionName
|
||||||
this.rh_pageData.fillUnit = this.$store.getters.userInfo.upDeptName
|
this.rh_pageData.fillUnit = this.$store.getters.userInfo.upDeptName
|
||||||
this.rh_pageData.fillTel = this.$store.getters.userInfo.phone
|
this.rh_pageData.fillTel = this.$store.getters.userInfo.phone
|
||||||
this.rh_pageData.fillPeople = this.$store.getters.userInfo.userName
|
this.rh_pageData.fillPeople = this.$store.getters.userInfo.userName + '(' + this.$store.getters.userInfo.userId + ')'
|
||||||
if (this.rh_pageData.fillFile !== undefined) {
|
if (this.rh_pageData.fillFile !== undefined) {
|
||||||
this.fillFileList = this.rh_pageData.fillFile
|
this.fillFileList = this.rh_pageData.fillFile
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
v-for="item in rh_pageData.comityOptionsOne"
|
v-for="item in rh_pageData.comityOptionsOne"
|
||||||
:key="item.id"
|
:key="item.id"
|
||||||
v-if="item.id === rh_pageData.comityName">
|
v-if="item.id === rh_pageData.comityName">
|
||||||
{{ item.name || '-'}}
|
{{ item.name || '-' }}
|
||||||
</span>
|
</span>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
@@ -74,7 +74,7 @@
|
|||||||
<span v-if="infoSourcesLength === 0">{{ '-' }}</span>
|
<span v-if="infoSourcesLength === 0">{{ '-' }}</span>
|
||||||
<div v-for="item in rh_pageData.infoSources" :key="item.id" style="color: #409EFF;">
|
<div v-for="item in rh_pageData.infoSources" :key="item.id" style="color: #409EFF;">
|
||||||
<a v-if="item.name.length > 30" style="cursor: pointer" @click="fileLook(item)">
|
<a v-if="item.name.length > 30" style="cursor: pointer" @click="fileLook(item)">
|
||||||
{{ item.name.slice(0,30) + '...' }} {{ ';' }}
|
{{ item.name.slice(0, 30) + '...' }} {{ ';' }}
|
||||||
</a>
|
</a>
|
||||||
<a v-else style="cursor: pointer" @click="fileLook(item)">
|
<a v-else style="cursor: pointer" @click="fileLook(item)">
|
||||||
{{ item.name }} {{ ';' }}
|
{{ item.name }} {{ ';' }}
|
||||||
@@ -138,11 +138,16 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item class="add-form-item" label="我司参与人员:" style="margin-top: 10px">
|
<el-form-item class="add-form-item" label="我司参与人员:" style="margin-top: 10px">
|
||||||
<div class="myPart_btn">
|
<div class="myPart_btn">
|
||||||
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
size="small"
|
||||||
|
@click="add_partForm">
|
||||||
|
新增
|
||||||
|
</el-button>
|
||||||
<el-button
|
<el-button
|
||||||
type="danger"
|
type="danger"
|
||||||
size="small"
|
size="small"
|
||||||
icon="el-icon-delete"
|
@click="del_partForm">
|
||||||
@click="del_paryForm">
|
|
||||||
批量删除
|
批量删除
|
||||||
</el-button>
|
</el-button>
|
||||||
</div>
|
</div>
|
||||||
@@ -156,18 +161,51 @@
|
|||||||
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
|
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
|
||||||
fontWeight: 'bold', height: '20px'}">
|
fontWeight: 'bold', height: '20px'}">
|
||||||
<el-table-column type="selection" width="55"/>
|
<el-table-column type="selection" width="55"/>
|
||||||
<el-table-column prop="fillPeople" align="center" label="参与人"/>
|
<el-table-column prop="fillPeople" align="center" label="参与人">
|
||||||
<el-table-column prop="fillUnit" align="center" label="单位"/>
|
|
||||||
<el-table-column prop="fillDept" align="center" label="部门"/>
|
|
||||||
<el-table-column prop="fillPost" align="center" label="身份"/>
|
|
||||||
<el-table-column prop="fillTel" align="center" label="电话"/>
|
|
||||||
<el-table-column prop="fillMail" align="center" label="邮箱"/>
|
|
||||||
<el-table-column prop="fillFile" align="center" label="资料">
|
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span v-if="scope.row.fillFile.length === 0">{{ '-' }}</span>
|
{{ scope.row.fillPeople || '' }}
|
||||||
<span v-for="item in scope.row.fillFile" :key="item.id" style="color: #409EFF;" @click="previews(item.id)">
|
</template>
|
||||||
{{ item.name }} {{ ';' }}
|
</el-table-column>
|
||||||
</span>
|
<el-table-column prop="fillUnit" align="center" label="单位">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{ scope.row.fillUnit || '' }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column prop="fillDept" align="center" label="部门">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{ scope.row.fillDept || '' }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column prop="fillPost" align="center" label="身份">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{ scope.row.fillPost || '' }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column prop="fillTel" align="center" label="电话">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{ scope.row.fillTel || '' }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column prop="fillMail" align="center" label="邮箱">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{ scope.row.fillMail || '' }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column prop="fillFile" width="120" align="center" label="资料">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-button v-if="scope.row.fillFile.length === 0" type="primary" plain size="mini" @click="fillFile_up(scope.row)">
|
||||||
|
点击上传
|
||||||
|
</el-button>
|
||||||
|
<el-button v-else size="mini" plain type="primary" @click="fillFile_up(scope.row)">查看附件</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
fixed="right"
|
||||||
|
label="操作"
|
||||||
|
align="center"
|
||||||
|
width="100">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-button type="primary" plain size="mini" @click="edit_partForm(scope.row)">编辑</el-button>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
@@ -256,6 +294,88 @@
|
|||||||
<loading :loading="loading">流程列表加载中</loading>
|
<loading :loading="loading">流程列表加载中</loading>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<el-drawer
|
||||||
|
title="编辑人员信息"
|
||||||
|
:visible.sync="editFlag"
|
||||||
|
size="500px"
|
||||||
|
>
|
||||||
|
<div class="content_form" style="height: 100%">
|
||||||
|
<el-form class="label-input-form" ref="editForm" :model="editForm" label-width="80px">
|
||||||
|
<el-form-item class="add-form-item" label="参与人员:">
|
||||||
|
<el-input v-model="editForm.fillPeopleId" style="display: none;"></el-input>
|
||||||
|
<el-input
|
||||||
|
placeholder="请选择参与人员"
|
||||||
|
style="width: 50%"
|
||||||
|
@click.native="choiceRole('fillPeopleId','请选择入会成员',editForm.fillPeopleId,)"
|
||||||
|
v-model="editForm.fillPeople"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item class="add-form-item" label="单位:">
|
||||||
|
<el-input v-model="editForm.fillUnit" placeholder=""></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item class="add-form-item" label="部门:">
|
||||||
|
<el-input v-model="editForm.fillDept" placeholder=""></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item class="add-form-item" label="身份:">
|
||||||
|
<el-input v-model="editForm.fillPost" placeholder=""></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item class="add-form-item" label="电话:">
|
||||||
|
<el-input v-model="editForm.fillTel" placeholder=""></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item class="add-form-item" label="邮箱:">
|
||||||
|
<el-input v-model="editForm.fillMail" placeholder=""></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item class="add-form-item" label="资料:">
|
||||||
|
<el-upload
|
||||||
|
:disabled="acceptShow"
|
||||||
|
multiple
|
||||||
|
ref="uploadFile"
|
||||||
|
:action="actionPath"
|
||||||
|
name="file"
|
||||||
|
:file-list="reData"
|
||||||
|
accept=".ZIP, .zip, .docx, .DOCX, .xls, .xlsx, .pdf, .PDF"
|
||||||
|
:before-upload="handleBeforeUpload"
|
||||||
|
:before-remove="handleBeforeRemove"
|
||||||
|
:on-success="handleOnsuccess"
|
||||||
|
>
|
||||||
|
<el-button type="primary" size="small">
|
||||||
|
上传文件
|
||||||
|
</el-button>
|
||||||
|
</el-upload>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
</div>
|
||||||
|
<div class="demo-drawer-footer">
|
||||||
|
<el-button size="mini" @click="falseDrawer">取消</el-button>
|
||||||
|
<el-button type="primary" size="mini" @click="OkDrawer">确认</el-button>
|
||||||
|
</div>
|
||||||
|
</el-drawer>
|
||||||
|
|
||||||
|
<!-- 标准号table上传弹框 -->
|
||||||
|
<el-dialog
|
||||||
|
:visible.sync="upDialog"
|
||||||
|
width='400px'
|
||||||
|
:before-close="handleClose">
|
||||||
|
<el-upload
|
||||||
|
:disabled="acceptShow"
|
||||||
|
multiple
|
||||||
|
class="upload-demo"
|
||||||
|
ref="uploadFile"
|
||||||
|
:action="actionPath"
|
||||||
|
name="file"
|
||||||
|
drag
|
||||||
|
:file-list="reData"
|
||||||
|
accept=".ZIP, .zip, .docx, .DOCX, .xls, .xlsx, .pdf, .PDF"
|
||||||
|
:before-upload="handleBeforeUpload"
|
||||||
|
:before-remove="handleBeforeRemove"
|
||||||
|
:on-success="handleOnsuccess"
|
||||||
|
>
|
||||||
|
<div style="padding: 20px 0">
|
||||||
|
<i class="el-icon-upload" style="color: #3399ff"></i>
|
||||||
|
<p>点击或拖拽上传文件</p>
|
||||||
|
</div>
|
||||||
|
</el-upload>
|
||||||
|
</el-dialog>
|
||||||
<ProcessFooter
|
<ProcessFooter
|
||||||
show-submit
|
show-submit
|
||||||
show-save
|
show-save
|
||||||
@@ -265,6 +385,13 @@
|
|||||||
@submit="handleSubmit"
|
@submit="handleSubmit"
|
||||||
>
|
>
|
||||||
</ProcessFooter>
|
</ProcessFooter>
|
||||||
|
<Role-tree
|
||||||
|
check-box
|
||||||
|
is-title="选择入会人员"
|
||||||
|
:is-visible.sync="roleShowflag"
|
||||||
|
:nodeList="nodeList"
|
||||||
|
@checkedRole="drawerCheck"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -333,7 +460,26 @@ export default {
|
|||||||
deleteDataList: [],
|
deleteDataList: [],
|
||||||
|
|
||||||
infoSourcesLength: '',
|
infoSourcesLength: '',
|
||||||
commentText: ''
|
commentText: '',
|
||||||
|
|
||||||
|
editFlag: false,
|
||||||
|
editForm: {
|
||||||
|
fillPeople: '',
|
||||||
|
fillUnit: '',
|
||||||
|
fillDept: '',
|
||||||
|
fillPost: '',
|
||||||
|
fillTel: '',
|
||||||
|
fillMail: '',
|
||||||
|
fillFile: [],
|
||||||
|
},
|
||||||
|
|
||||||
|
// 上传文件储存
|
||||||
|
reData: [],
|
||||||
|
upDialog: false,
|
||||||
|
actionPath: 'api/att/attFile/upload',
|
||||||
|
acceptShow: false,
|
||||||
|
roleShowflag: false,
|
||||||
|
nodeList: [],
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
@@ -382,8 +528,130 @@ export default {
|
|||||||
// this.rh_pageData.comityFileNum = this.fileTextList
|
// this.rh_pageData.comityFileNum = this.fileTextList
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
/** 我司参与人员新增 */
|
||||||
|
add_partForm() {
|
||||||
|
var list = {
|
||||||
|
fillPeople: this.fillPeople,
|
||||||
|
fillUnit: this.fillUnit,
|
||||||
|
fillDept: this.fillDept,
|
||||||
|
fillPost: this.fillPost,
|
||||||
|
fillTel: this.fillTel,
|
||||||
|
fillMail: this.fillMail,
|
||||||
|
fillFile: this.fillFile = []
|
||||||
|
}
|
||||||
|
this.rh_pageData.myPartRole.push(list)
|
||||||
|
},
|
||||||
|
|
||||||
|
fillFile_up(row) {
|
||||||
|
this.fileListData = row
|
||||||
|
this.reData = this.fileListData.fillFile
|
||||||
|
this.upDialog = true
|
||||||
|
},
|
||||||
|
// 文件上传成功
|
||||||
|
handleOnsuccess(res, file, fileList) {
|
||||||
|
if (res.ok) {
|
||||||
|
if (this.reData !== undefined) {
|
||||||
|
this.newDataList = this.reData
|
||||||
|
this.newDataList.push({
|
||||||
|
id: res.data.attId,
|
||||||
|
name: res.data.name
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
this.newDataList.push({
|
||||||
|
id: res.data.attId,
|
||||||
|
name: res.data.name
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
this.fileListData.fillFile = this.newDataList
|
||||||
|
this.$message({
|
||||||
|
showClose: true,
|
||||||
|
message: res.message,
|
||||||
|
type: 'success'
|
||||||
|
})
|
||||||
|
this.newDataList = []
|
||||||
|
this.fileMadel = false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// 文件上传限制条件
|
||||||
|
handleBeforeUpload(file) {
|
||||||
|
var filename = file.name
|
||||||
|
var index1 = filename.lastIndexOf('.')
|
||||||
|
var index2 = filename.length
|
||||||
|
var fileSuffix = filename.substring(index1, index2)
|
||||||
|
// const fileSuffix = file.name.split('.')[1] // 后缀名
|
||||||
|
// 判断上传文件格式
|
||||||
|
if (fileSuffix === '.ZIP' || fileSuffix === '.docx' || fileSuffix === '.DOCX' || fileSuffix === '.zip' || fileSuffix === '.xls' || fileSuffix === '.xlsx' || fileSuffix === '.pdf' || fileSuffix === '.PDF') {
|
||||||
|
return true
|
||||||
|
} else {
|
||||||
|
this.spinShow = false
|
||||||
|
this.$message.error('文件' + file.name + '格式不正确,请上传ZIP/DOCX/PDF或XLS文件')
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
// 判断文件上传大小
|
||||||
|
// eslint-disable-next-line no-unreachable
|
||||||
|
if (file.size / 1024 / 1024 <= 200) {
|
||||||
|
return true
|
||||||
|
} else {
|
||||||
|
this.$message.error('文件' + file.name + '大小不超过200M')
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
},
|
||||||
|
// 移除上传的文件
|
||||||
|
handleBeforeRemove(file, fileList) {
|
||||||
|
this.reData.forEach((item, index) => {
|
||||||
|
if (item.name === file.name || item.id === file.id) {
|
||||||
|
this.reData.splice(index, 1)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
this.fileListData.fillFile = this.reData
|
||||||
|
},
|
||||||
|
|
||||||
|
handleClose() {
|
||||||
|
this.upDialog = false
|
||||||
|
},
|
||||||
|
// 编辑按钮
|
||||||
|
edit_partForm(row) {
|
||||||
|
// 用来储存取消时原来的数据,防止取消时修改
|
||||||
|
localStorage.setItem('obj', JSON.stringify(row))
|
||||||
|
this.fileListData = row
|
||||||
|
this.reData = this.fileListData.fillFile
|
||||||
|
this.editForm = row
|
||||||
|
this.editFlag = true
|
||||||
|
},
|
||||||
|
// 编辑框确认按钮
|
||||||
|
OkDrawer() {
|
||||||
|
this.editFlag = false
|
||||||
|
},
|
||||||
|
falseDrawer() {
|
||||||
|
let Item = JSON.parse(localStorage.getItem('obj'))
|
||||||
|
this.editForm.fillPeopleId = Item.fillPeopleId
|
||||||
|
this.editForm.fillPeople = Item.fillPeople
|
||||||
|
this.editForm.fillUnit = Item.fillUnit
|
||||||
|
this.editForm.fillDept = Item.fillDept
|
||||||
|
this.editForm.fillPost = Item.fillPost
|
||||||
|
this.editForm.fillTel = Item.fillTel
|
||||||
|
this.editForm.fillMail = Item.fillMail
|
||||||
|
this.editForm.fillFile = Item.fillFile
|
||||||
|
this.editFlag = false
|
||||||
|
},
|
||||||
|
// 编辑框选人
|
||||||
|
choiceRole(type, title, id) {
|
||||||
|
this.nodeList = []
|
||||||
|
this.nodeList.push(id)
|
||||||
|
this.type = type
|
||||||
|
this.roleShowflag = true
|
||||||
|
},
|
||||||
|
drawerCheck(data) {
|
||||||
|
if (data.length > 0) {
|
||||||
|
this.fileListData.fillPeopleId = data[0].id
|
||||||
|
this.fileListData.fillPeople = data[0].name
|
||||||
|
}
|
||||||
|
this.roleShowflag = false
|
||||||
|
},
|
||||||
/** 批量删除 */
|
/** 批量删除 */
|
||||||
del_paryForm() {
|
del_partForm() {
|
||||||
if (this.deleteDataList.length < 1) {
|
if (this.deleteDataList.length < 1) {
|
||||||
this.$message.warning("请选择一条数据进行删除");
|
this.$message.warning("请选择一条数据进行删除");
|
||||||
} else {
|
} else {
|
||||||
@@ -477,16 +745,16 @@ export default {
|
|||||||
const attId = file.id
|
const attId = file.id
|
||||||
this.getBusStandFileByAttId(attId)
|
this.getBusStandFileByAttId(attId)
|
||||||
.then(res => {
|
.then(res => {
|
||||||
if(res){
|
if (res) {
|
||||||
const editFileInfo = res
|
const editFileInfo = res
|
||||||
if(editFileInfo.fileSuffix === 'pdg' || editFileInfo.fileSuffix === 'PDG'){
|
if (editFileInfo.fileSuffix === 'pdg' || editFileInfo.fileSuffix === 'PDG') {
|
||||||
window.open('book://ssreader/e0?url='+editFileInfo.downLoadUrl)
|
window.open('book://ssreader/e0?url=' + editFileInfo.downLoadUrl)
|
||||||
}else if(editFileInfo.fileSuffix === 'pdf' || editFileInfo.fileSuffix === 'PDF'){
|
} else if (editFileInfo.fileSuffix === 'pdf' || editFileInfo.fileSuffix === 'PDF') {
|
||||||
window.open('/static/pdf/web/viewer.html?file=' + encodeURIComponent('/api/att/attFile/getFileInfo?fileId=' + editFileInfo.id))
|
window.open('/static/pdf/web/viewer.html?file=' + encodeURIComponent('/api/att/attFile/getFileInfo?fileId=' + editFileInfo.id))
|
||||||
}else {
|
} else {
|
||||||
const nowTime = new Date().getTime()
|
const nowTime = new Date().getTime()
|
||||||
// window.open('http://127.0.0.1:8012/onlinePreview?url='+encodeURIComponent(Base64.encode(editFileInfo.downLoadUrl)));
|
// window.open('http://127.0.0.1:8012/onlinePreview?url='+encodeURIComponent(Base64.encode(editFileInfo.downLoadUrl)));
|
||||||
window.open('/static/onlyOffice/onlinePreview.html?oldFileName=' + editFileInfo.oldFileName + '&fileType=' + editFileInfo.fileSuffix + '&attId=' + editFileInfo.id + '&fileUrl=' + editFileInfo.downLoadUrl + '&key=' + editFileInfo.id + nowTime+'&filePath='+editFileInfo.filePath+'&fileName='+editFileInfo.fileName)
|
window.open('/static/onlyOffice/onlinePreview.html?oldFileName=' + editFileInfo.oldFileName + '&fileType=' + editFileInfo.fileSuffix + '&attId=' + editFileInfo.id + '&fileUrl=' + editFileInfo.downLoadUrl + '&key=' + editFileInfo.id + nowTime + '&filePath=' + editFileInfo.filePath + '&fileName=' + editFileInfo.fileName)
|
||||||
}
|
}
|
||||||
// window.open('/static/pdf/web/viewer.html?file=' + encodeURIComponent('/api/att/attFile/getFileInfo?fileId=' + editFileInfo.id))
|
// window.open('/static/pdf/web/viewer.html?file=' + encodeURIComponent('/api/att/attFile/getFileInfo?fileId=' + editFileInfo.id))
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -283,7 +283,7 @@
|
|||||||
</el-timeline-item>
|
</el-timeline-item>
|
||||||
<el-timeline-item timestamp="批准" placement="top" :color="roleForm.startUser ? '#66b1ff' : ''">
|
<el-timeline-item timestamp="批准" placement="top" :color="roleForm.startUser ? '#66b1ff' : ''">
|
||||||
<el-card>
|
<el-card>
|
||||||
<el-form-item prop="totalLeader" style="margin-bottom: 0">
|
<el-form-item prop="directorUserName" style="margin-bottom: 0">
|
||||||
<h4>技术委员会主任</h4>
|
<h4>技术委员会主任</h4>
|
||||||
<div style="margin-top: 10px;width: 300px;">
|
<div style="margin-top: 10px;width: 300px;">
|
||||||
<el-input v-model="roleForm.directorUserId" style="display: none;"></el-input>
|
<el-input v-model="roleForm.directorUserId" style="display: none;"></el-input>
|
||||||
@@ -392,7 +392,9 @@ export default {
|
|||||||
fillFile: '',
|
fillFile: '',
|
||||||
associaOptionsOne: [],
|
associaOptionsOne: [],
|
||||||
associaOptionsTwo: [],
|
associaOptionsTwo: [],
|
||||||
associaOptionsTree: []
|
associaOptionsTree: [],
|
||||||
|
meetingInRole: '',
|
||||||
|
meetingInRoleId: ''
|
||||||
|
|
||||||
},
|
},
|
||||||
feeKindOptions: [
|
feeKindOptions: [
|
||||||
@@ -429,6 +431,7 @@ export default {
|
|||||||
leaderUser: [{required: true, message: "请选择标准法规部主管中心主任", trigger: ['blur', 'change']}],
|
leaderUser: [{required: true, message: "请选择标准法规部主管中心主任", trigger: ['blur', 'change']}],
|
||||||
feeUser: [{required: true, message: "请选择管理推荐部", trigger: ['blur', 'change']}],
|
feeUser: [{required: true, message: "请选择管理推荐部", trigger: ['blur', 'change']}],
|
||||||
engineerUser: [{required: true, message: "请选择技术委员会常务副主任/总院院长", trigger: ['blur', 'change']}],
|
engineerUser: [{required: true, message: "请选择技术委员会常务副主任/总院院长", trigger: ['blur', 'change']}],
|
||||||
|
directorUserName: [{required: true, message: "请选择技术委员会主任", trigger: ['blur', 'change']}],
|
||||||
},
|
},
|
||||||
deleteDataList: [],
|
deleteDataList: [],
|
||||||
|
|
||||||
|
|||||||
@@ -107,11 +107,12 @@
|
|||||||
<ProcessTitle>
|
<ProcessTitle>
|
||||||
<template slot="title">选择人员</template>
|
<template slot="title">选择人员</template>
|
||||||
</ProcessTitle>
|
</ProcessTitle>
|
||||||
<el-form-item class="add-form-item" label="入会人员:">
|
<el-form-item class="add-form-item" label="参会人员:">
|
||||||
|
<el-input v-model="ch_pageData.meetingInRoleId" style="display: none;"></el-input>
|
||||||
<el-input
|
<el-input
|
||||||
:disabled="true"
|
placeholder="请选择参会人员"
|
||||||
style="width: 30%"
|
style="width: 50%"
|
||||||
placeholder="请选择入会人员"
|
@click.native="choiceRole('meetingInRoleId','选择参会人员',ch_pageData.meetingInRoleId,)"
|
||||||
v-model="ch_pageData.meetingInRole"
|
v-model="ch_pageData.meetingInRole"
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@@ -209,6 +210,13 @@
|
|||||||
@submit="handleSubmit"
|
@submit="handleSubmit"
|
||||||
>
|
>
|
||||||
</ProcessFooter>
|
</ProcessFooter>
|
||||||
|
|
||||||
|
<Role-tree
|
||||||
|
is-title="选择入会人员"
|
||||||
|
:is-visible.sync="roleShowflag"
|
||||||
|
:nodeList="nodeList"
|
||||||
|
@checkedRole="drawerCheck"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -293,10 +301,31 @@ export default {
|
|||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.ch_pageData = JSON.parse(JSON.stringify(item)).ch_pageData
|
this.ch_pageData = JSON.parse(JSON.stringify(item)).ch_pageData
|
||||||
this.uploadFileLength = this.ch_pageData.fileTextList.length
|
this.uploadFileLength = this.ch_pageData.fileTextList.length
|
||||||
this.ch_pageData.meetingInRole = this.$store.getters.userInfo.userName
|
|
||||||
this.roleForm = JSON.parse(JSON.stringify(item)).roleList
|
this.roleForm = JSON.parse(JSON.stringify(item)).roleList
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/** 选择入会人员 */
|
||||||
|
choiceRole(type,title,id) {
|
||||||
|
this.nodeList = []
|
||||||
|
this.nodeList.push(id)
|
||||||
|
this.roleShowflag = true
|
||||||
|
},
|
||||||
|
drawerCheck(data) {
|
||||||
|
var idList = ''
|
||||||
|
var nameList = ''
|
||||||
|
data.forEach(item => {
|
||||||
|
if (nameList.length > 0) {
|
||||||
|
nameList += ','
|
||||||
|
idList += ','
|
||||||
|
}
|
||||||
|
idList += item.id;
|
||||||
|
nameList += item.name;
|
||||||
|
})
|
||||||
|
this.ch_pageData.meetingInRole = nameList
|
||||||
|
this.ch_pageData.meetingInRoleId = idList
|
||||||
|
this.roleShowflag = false
|
||||||
|
},
|
||||||
// 退回按钮
|
// 退回按钮
|
||||||
handleSubmitNo() {
|
handleSubmitNo() {
|
||||||
if (this.commentText === '') {
|
if (this.commentText === '') {
|
||||||
|
|||||||
@@ -372,7 +372,7 @@ export default {
|
|||||||
this.ch_pageData.fillUnit = this.$store.getters.userInfo.upDeptName
|
this.ch_pageData.fillUnit = this.$store.getters.userInfo.upDeptName
|
||||||
this.ch_pageData.fillTel = this.$store.getters.userInfo.phone
|
this.ch_pageData.fillTel = this.$store.getters.userInfo.phone
|
||||||
this.ch_pageData.fillPeopleId = this.$store.getters.userInfo.userId
|
this.ch_pageData.fillPeopleId = this.$store.getters.userInfo.userId
|
||||||
this.ch_pageData.fillPeople = this.$store.getters.userInfo.userName
|
this.ch_pageData.fillPeople = this.$store.getters.userInfo.userName + '(' + this.$store.getters.userInfo.userId + ')'
|
||||||
this.roleForm = JSON.parse(JSON.stringify(item)).roleList
|
this.roleForm = JSON.parse(JSON.stringify(item)).roleList
|
||||||
// this.rh_pageData.comityFileNum = this.fileTextList
|
// this.rh_pageData.comityFileNum = this.fileTextList
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -113,11 +113,15 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item class="add-form-item" label="入会人员:">
|
<el-form-item class="add-form-item" label="入会人员:">
|
||||||
<div class="myPart_btn">
|
<div class="myPart_btn">
|
||||||
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
size="small"
|
||||||
|
@click="add_partForm">
|
||||||
|
新增</el-button>
|
||||||
<el-button
|
<el-button
|
||||||
type="danger"
|
type="danger"
|
||||||
size="small"
|
size="small"
|
||||||
icon="el-icon-delete"
|
@click="del_partForm">
|
||||||
@click="del_paryForm">
|
|
||||||
批量删除
|
批量删除
|
||||||
</el-button>
|
</el-button>
|
||||||
</div>
|
</div>
|
||||||
@@ -132,11 +136,40 @@
|
|||||||
fontWeight: 'bold', height: '20px'}">
|
fontWeight: 'bold', height: '20px'}">
|
||||||
<el-table-column type="selection" width="55"/>
|
<el-table-column type="selection" width="55"/>
|
||||||
<el-table-column type="index" width="50" align="center"/>
|
<el-table-column type="index" width="50" align="center"/>
|
||||||
<el-table-column prop="fillPeople" align="center" label="人员"/>
|
<el-table-column prop="fillPeople" align="center" label="人员">
|
||||||
<el-table-column prop="fillUnit" align="center" label="单位"/>
|
<template slot-scope="scope">
|
||||||
<el-table-column prop="fillDept" align="center" label="部门"/>
|
{{ scope.row.fillPeople || '' }}
|
||||||
<el-table-column prop="fillTel" align="center" label="电话"/>
|
</template>
|
||||||
<el-table-column prop="fillMail" align="center" label="邮箱"/>
|
</el-table-column>
|
||||||
|
<el-table-column prop="fillUnit" align="center" label="单位">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{ scope.row.fillUnit || '' }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column prop="fillDept" align="center" label="部门">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{ scope.row.fillDept || '' }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column prop="fillTel" align="center" label="电话">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{ scope.row.fillTel || '' }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column prop="fillMail" align="center" label="邮箱">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{ scope.row.fillMail || '' }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
fixed="right"
|
||||||
|
label="操作"
|
||||||
|
align="center"
|
||||||
|
width="100">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-button type="primary" plain size="mini" @click="edit_partForm(scope.row)">编辑</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
@@ -223,6 +256,42 @@
|
|||||||
<loading :loading="loading">流程列表加载中</loading>
|
<loading :loading="loading">流程列表加载中</loading>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<el-drawer
|
||||||
|
title="编辑人员信息"
|
||||||
|
:visible.sync="editFlag"
|
||||||
|
size="500px"
|
||||||
|
custom-class="demo-drawer"
|
||||||
|
>
|
||||||
|
<div class="content_form" style="height: 100%">
|
||||||
|
<el-form class="label-input-form" ref="editForm" :model="editForm" label-width="80px">
|
||||||
|
<el-form-item class="add-form-item" label="参与人员:">
|
||||||
|
<el-input v-model="editForm.fillPeopleId" style="display: none;"></el-input>
|
||||||
|
<el-input
|
||||||
|
placeholder="请选择参与人员"
|
||||||
|
style="width: 50%"
|
||||||
|
@click.native="choiceRole('fillPeopleId','请选择入会成员',editForm.fillPeopleId,)"
|
||||||
|
v-model="editForm.fillPeople"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item class="add-form-item" label="单位:">
|
||||||
|
<el-input v-model="editForm.fillUnit" placeholder=""></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item class="add-form-item" label="部门:">
|
||||||
|
<el-input v-model="editForm.fillDept" placeholder=""></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item class="add-form-item" label="电话:">
|
||||||
|
<el-input v-model="editForm.fillTel" placeholder=""></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item class="add-form-item" label="邮箱:">
|
||||||
|
<el-input v-model="editForm.fillMail" placeholder=""></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
</div>
|
||||||
|
<div class="demo-drawer-footer">
|
||||||
|
<el-button size="mini" @click="falseDrawer">取消</el-button>
|
||||||
|
<el-button type="primary" size="mini" @click="OkDrawer">确认</el-button>
|
||||||
|
</div>
|
||||||
|
</el-drawer>
|
||||||
<ProcessFooter
|
<ProcessFooter
|
||||||
show-save
|
show-save
|
||||||
show-submit
|
show-submit
|
||||||
@@ -232,6 +301,13 @@
|
|||||||
@submit="handleSubmit"
|
@submit="handleSubmit"
|
||||||
>
|
>
|
||||||
</ProcessFooter>
|
</ProcessFooter>
|
||||||
|
<Role-tree
|
||||||
|
check-box
|
||||||
|
is-title="选择入会人员"
|
||||||
|
:is-visible.sync="roleShowflag"
|
||||||
|
:nodeList="nodeList"
|
||||||
|
@checkedRole="drawerCheck"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -269,7 +345,18 @@ export default {
|
|||||||
pId: this.$route.query.prcId,
|
pId: this.$route.query.prcId,
|
||||||
|
|
||||||
uploadFileLength: '',
|
uploadFileLength: '',
|
||||||
commentText: ''
|
commentText: '',
|
||||||
|
roleShowflag: false,
|
||||||
|
nodeList: [],
|
||||||
|
// 人员编辑
|
||||||
|
editFlag: false,
|
||||||
|
editForm: {
|
||||||
|
fillPeople: '',
|
||||||
|
fillUnit: '',
|
||||||
|
fillDept: '',
|
||||||
|
fillTel: '',
|
||||||
|
fillMail: '',
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
@@ -318,9 +405,55 @@ export default {
|
|||||||
// this.ch_pageData.comityFileNum = this.fileTextList
|
// this.ch_pageData.comityFileNum = this.fileTextList
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
/** 我司参与人员新增 */
|
||||||
|
add_partForm() {
|
||||||
|
var list = {
|
||||||
|
fillPeople: this.fillPeople,
|
||||||
|
fillUnit: this.fillUnit,
|
||||||
|
fillDept: this.fillDept,
|
||||||
|
fillTel: this.fillTel,
|
||||||
|
fillMail: this.fillMail,
|
||||||
|
}
|
||||||
|
this.ch_pageData.myPartRole.push(list)
|
||||||
|
},
|
||||||
|
// 编辑框确认按钮
|
||||||
|
OkDrawer() {
|
||||||
|
this.editFlag = false
|
||||||
|
},
|
||||||
|
falseDrawer() {
|
||||||
|
let Item = JSON.parse(localStorage.getItem('obj'))
|
||||||
|
this.editForm.fillPeopleId = Item.fillPeopleId
|
||||||
|
this.editForm.fillPeople = Item.fillPeople
|
||||||
|
this.editForm.fillUnit = Item.fillUnit
|
||||||
|
this.editForm.fillDept = Item.fillDept
|
||||||
|
this.editForm.fillTel = Item.fillTel
|
||||||
|
this.editForm.fillMail = Item.fillMail
|
||||||
|
this.editFlag = false
|
||||||
|
},
|
||||||
|
/** 入会人员编辑 */
|
||||||
|
edit_partForm(row) {
|
||||||
|
// 用来储存取消时原来的数据,防止取消时修改
|
||||||
|
localStorage.setItem('obj', JSON.stringify(row))
|
||||||
|
this.fileListData = row
|
||||||
|
this.editForm = row
|
||||||
|
this.editFlag = true
|
||||||
|
},
|
||||||
|
// 编辑框选人
|
||||||
|
choiceRole(type, title, id) {
|
||||||
|
this.nodeList = []
|
||||||
|
this.nodeList.push(id)
|
||||||
|
this.type = type
|
||||||
|
this.roleShowflag = true
|
||||||
|
},
|
||||||
|
drawerCheck(data) {
|
||||||
|
if (data.length > 0) {
|
||||||
|
this.fileListData.fillPeopleId = data[0].id
|
||||||
|
this.fileListData.fillPeople = data[0].name
|
||||||
|
}
|
||||||
|
this.roleShowflag = false
|
||||||
|
},
|
||||||
/** 批量删除 */
|
/** 批量删除 */
|
||||||
del_paryForm() {
|
del_partForm() {
|
||||||
if (this.deleteDataList.length < 1) {
|
if (this.deleteDataList.length < 1) {
|
||||||
this.$message.warning("请选择一条数据进行删除");
|
this.$message.warning("请选择一条数据进行删除");
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -1181,7 +1181,7 @@
|
|||||||
this.$message.warning('请选择责任人')
|
this.$message.warning('请选择责任人')
|
||||||
} else {
|
} else {
|
||||||
this.isSubmit = true
|
this.isSubmit = true
|
||||||
this.$http.get('lawss/activiti/startProcess', {
|
this.$http.post('lawss/activiti/startProcessRollBack', {
|
||||||
type: '9'
|
type: '9'
|
||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.ok) {
|
if (res.ok) {
|
||||||
|
|||||||
@@ -37,18 +37,19 @@
|
|||||||
clearable
|
clearable
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="附件" prop="modelName" class="add-form-item form-item-disabled">
|
<el-form-item label="附件" prop="fileName" class="add-form-item form-item-disabled">
|
||||||
<div class="file-box" v-if="listForm.model">
|
<div class="file-box" v-if="fileList.length > 0">
|
||||||
<p> {{ listForm.modelName }}
|
<p v-for="item in fileList"
|
||||||
|
:key="item.id"> {{ item.name }}
|
||||||
<i
|
<i
|
||||||
title="下载"
|
title="下载"
|
||||||
@click="downloadFile(listForm.model)"
|
@click="downloadFile(item.id)"
|
||||||
class="icon-download"
|
class="icon-download"
|
||||||
v-btn-permission="''"
|
v-btn-permission="''"
|
||||||
/>
|
/>
|
||||||
<i
|
<i
|
||||||
title="下载带水印"
|
title="下载带水印"
|
||||||
@click="downloadFileByWater(listForm.model,listForm.modelName)"
|
@click="downloadFileByWater(item.id, item.name)"
|
||||||
class="icon-download2"
|
class="icon-download2"
|
||||||
v-btn-permission="''"
|
v-btn-permission="''"
|
||||||
/>
|
/>
|
||||||
@@ -204,6 +205,15 @@
|
|||||||
<loading :loading="loading">流程列表加载中</loading>
|
<loading :loading="loading">流程列表加载中</loading>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- 福田全公司选人解决方案 -->
|
||||||
|
<Role-tree
|
||||||
|
check-box
|
||||||
|
:is-title="drawerTitle"
|
||||||
|
:is-visible.sync="drawerModal"
|
||||||
|
@checkedRole="checkedRole"
|
||||||
|
:nodeList="nodeList"
|
||||||
|
></Role-tree>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -211,7 +221,8 @@
|
|||||||
import ProcessHeader from "../../components/ProcessHeader";
|
import ProcessHeader from "../../components/ProcessHeader";
|
||||||
import ProcessFooter from "../../components/ProcessFooter";
|
import ProcessFooter from "../../components/ProcessFooter";
|
||||||
import ProcessTitle from "../../components/ProcessTitle";
|
import ProcessTitle from "../../components/ProcessTitle";
|
||||||
import { inboundLiaisonDetail } from "api/process";
|
import { changeAssigneeNew, inboundLiaisonDetail } from "api/process";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "bzqdfbStep1-4",
|
name: "bzqdfbStep1-4",
|
||||||
components: {
|
components: {
|
||||||
@@ -221,6 +232,11 @@ export default {
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
nodeList:[],
|
||||||
|
isTransfer: false,
|
||||||
|
drawerTitle:'',
|
||||||
|
// 调整处理人抽屉状态
|
||||||
|
drawerModal: false,
|
||||||
detailData: [],
|
detailData: [],
|
||||||
// 当前流程类型(1待办/2已办)
|
// 当前流程类型(1待办/2已办)
|
||||||
processType: 1,
|
processType: 1,
|
||||||
@@ -236,10 +252,12 @@ export default {
|
|||||||
selectList: [], //选择标准的选择框
|
selectList: [], //选择标准的选择框
|
||||||
bringData: [],
|
bringData: [],
|
||||||
commentText: "", //填写会签意见
|
commentText: "", //填写会签意见
|
||||||
|
fileList:[],
|
||||||
page: 1,
|
page: 1,
|
||||||
total: 0,
|
total: 0,
|
||||||
pageSize: this.$store.getters.userInfo.configContent,
|
pageSize: this.$store.getters.userInfo.configContent,
|
||||||
listForm: {
|
listForm: {
|
||||||
|
fileIds: '',
|
||||||
listType: "", //区分是哪个清单
|
listType: "", //区分是哪个清单
|
||||||
listName: "", //清单名称
|
listName: "", //清单名称
|
||||||
descriptionList: "", //清单说明
|
descriptionList: "", //清单说明
|
||||||
@@ -274,6 +292,47 @@ export default {
|
|||||||
};
|
};
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
//确认转办
|
||||||
|
checkedRole (data) {
|
||||||
|
this.assigneeNewLoading = true
|
||||||
|
changeAssigneeNew({
|
||||||
|
taskId: this.$route.query.taskIds, // 任务id
|
||||||
|
assignee: data[0].id, // 被委托人
|
||||||
|
userId: this.$store.getters.userInfo.userId, // 委托人
|
||||||
|
pId: this.$route.query.prcId // 流程实例
|
||||||
|
}).then(res => {
|
||||||
|
this.isTransfer = false
|
||||||
|
if (res.success) {
|
||||||
|
this.drawerModal = false
|
||||||
|
this.$message.success('调整成功')
|
||||||
|
this.$router.push("/processCenter");
|
||||||
|
this.processNum()
|
||||||
|
} else {
|
||||||
|
this.$message.warning(res.message)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
// 请求转换流程图
|
||||||
|
processNum (row) {
|
||||||
|
axios.request({
|
||||||
|
url: '/api/lawss/activiti/getImg?_t=' + new Date().getTime(),
|
||||||
|
responseType: 'blob',
|
||||||
|
method: 'get',
|
||||||
|
params: {
|
||||||
|
prcNum: this.$route.query.prcNum
|
||||||
|
}
|
||||||
|
}).then(res => {
|
||||||
|
// let blob = new Blob([res.data], {type: 'image/jpg'})
|
||||||
|
// let url = window.URL.createObjectURL(res.data)
|
||||||
|
this.processStep = window.URL.createObjectURL(res.data)
|
||||||
|
})
|
||||||
|
},
|
||||||
|
//转办事件
|
||||||
|
handleTransfer(){
|
||||||
|
this.drawerModal = true
|
||||||
|
this.drawerTitle = '转办处理人'
|
||||||
|
this.selectPeople = row
|
||||||
|
},
|
||||||
processTable() {
|
processTable() {
|
||||||
this.$http.get("lawss/activiti/get_list_by_instance", {
|
this.$http.get("lawss/activiti/get_list_by_instance", {
|
||||||
prcNum: this.$route.query.prcNum,
|
prcNum: this.$route.query.prcNum,
|
||||||
@@ -337,6 +396,15 @@ export default {
|
|||||||
this.listForm.applyUpdUserId = item.applyUpdUserId;
|
this.listForm.applyUpdUserId = item.applyUpdUserId;
|
||||||
this.listForm.jlUserId = item.jlUserId;
|
this.listForm.jlUserId = item.jlUserId;
|
||||||
this.listForm.zrUserId = item.zrUserId;
|
this.listForm.zrUserId = item.zrUserId;
|
||||||
|
let filesId = []
|
||||||
|
item.fileName.forEach(itemIds =>{
|
||||||
|
filesId.push(itemIds.id)
|
||||||
|
})
|
||||||
|
this.listForm.fileId = filesId.join(',')
|
||||||
|
item.fileName.forEach(itemId => {
|
||||||
|
this.fileIds = itemId.id
|
||||||
|
this.getFileInfo();
|
||||||
|
})
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
// 请求上传的文件信息
|
// 请求上传的文件信息
|
||||||
@@ -346,11 +414,15 @@ export default {
|
|||||||
}, {
|
}, {
|
||||||
_this: this
|
_this: this
|
||||||
}, res => {
|
}, res => {
|
||||||
console.log(res);
|
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
res.data.map(item => {
|
res.data.map(item => {
|
||||||
this.listForm.modelName = item.oldFileName;
|
// 赋值要回显的上传文件内容
|
||||||
this.listForm.model = item.id;
|
this.fileList.push({
|
||||||
|
name: item.oldFileName,
|
||||||
|
uid: item.uid,
|
||||||
|
status: item.status,
|
||||||
|
id: item.id
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}, e => {
|
}, e => {
|
||||||
@@ -378,18 +450,13 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
//驳回事件
|
// 驳回事件
|
||||||
beforeBack() {
|
beforeBack() {
|
||||||
if (this.commentText === null || this.commentText === undefined || this.commentText === "") {
|
if(!this.commentText){
|
||||||
this.$message.warning("请填写审批意见");
|
this.$message.warning('请填写审批意见')
|
||||||
} else {
|
}else{
|
||||||
this.listForm.approvalOpinion = "1";
|
this.listForm.approvalOpinion = "1";
|
||||||
this.handleSubmit();
|
this.saveLoading = true
|
||||||
}
|
|
||||||
},
|
|
||||||
//提交事件
|
|
||||||
handleSubmit() {
|
|
||||||
this.isSubmit = true
|
|
||||||
this.listForm.commentText = this.commentText;
|
this.listForm.commentText = this.commentText;
|
||||||
const json = JSON.stringify(this.listForm);
|
const json = JSON.stringify(this.listForm);
|
||||||
this.$http.post("lawss/activiti/completeTask", {
|
this.$http.post("lawss/activiti/completeTask", {
|
||||||
@@ -403,8 +470,29 @@ export default {
|
|||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
this.$router.push("/processCenter");
|
this.$router.push("/processCenter");
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.saveLoading = false
|
||||||
});
|
});
|
||||||
|
}/**/
|
||||||
|
},
|
||||||
|
//提交事件
|
||||||
|
handleSubmit() {
|
||||||
|
this.isSubmit = true;
|
||||||
|
this.listForm.approvalOpinion = "2";
|
||||||
|
this.listForm.commentText = this.commentText;
|
||||||
|
const json = JSON.stringify(this.listForm);
|
||||||
|
this.$http.post("lawss/activiti/completeTask", {
|
||||||
|
taskIds: this.taskIds,
|
||||||
|
userId: this.userId,
|
||||||
|
json: json
|
||||||
|
}, {
|
||||||
|
_this: this
|
||||||
|
}, res => {
|
||||||
|
if (res.success) {
|
||||||
|
this.$message.success(res.message);
|
||||||
|
this.$router.push("/processCenter");
|
||||||
|
}
|
||||||
|
this.isSubmit = false
|
||||||
|
});
|
||||||
},
|
},
|
||||||
//选择标准取消事件
|
//选择标准取消事件
|
||||||
closeDrawer() {
|
closeDrawer() {
|
||||||
@@ -465,6 +553,31 @@ export default {
|
|||||||
padding: 0 20px 0;
|
padding: 0 20px 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
p {
|
||||||
|
& > a {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
& > i {
|
||||||
|
display: inline-block;
|
||||||
|
margin-left: 3px;
|
||||||
|
width: 18px;
|
||||||
|
height: 16px;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-size: 100% 100%;
|
||||||
|
background-position: center center;
|
||||||
|
vertical-align: sub;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-download {
|
||||||
|
background-image: url("~assets/images/shangqi/img/download.png");
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-download2 {
|
||||||
|
background-image: url("~assets/images/shangqi/img/download2.png");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.choiceBtn {
|
.choiceBtn {
|
||||||
.el-button--primary {
|
.el-button--primary {
|
||||||
|
|||||||
@@ -1159,19 +1159,19 @@
|
|||||||
:maxlength="100"></el-input>
|
:maxlength="100"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-form-item label="中文名称" prop="standName" class="search-item" >
|
<el-form-item label="标准名称" prop="standName" class="search-item" >
|
||||||
<el-input v-model="standardSearchForm.standName"
|
<el-input v-model="standardSearchForm.standName"
|
||||||
placeholder="请输入标准名称"
|
placeholder="请输入标准名称"
|
||||||
clearable
|
clearable
|
||||||
:maxlength="500"></el-input>
|
:maxlength="500"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="英文名称" prop="standEnName" class="search-item">
|
<!-- <el-form-item label="英文名称" prop="standEnName" class="search-item">-->
|
||||||
<el-input
|
<!-- <el-input-->
|
||||||
v-model="standardSearchForm.standEnName"
|
<!-- v-model="standardSearchForm.standEnName"-->
|
||||||
maxlength="1000"
|
<!-- maxlength="1000"-->
|
||||||
placeholder="请输入英文名称"
|
<!-- placeholder="请输入英文名称"-->
|
||||||
clearable></el-input>
|
<!-- clearable></el-input>-->
|
||||||
</el-form-item>
|
<!-- </el-form-item>-->
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button
|
<el-button
|
||||||
type="primary"
|
type="primary"
|
||||||
|
|||||||
@@ -813,7 +813,7 @@ export default {
|
|||||||
this.$refs['Form'].validate((valid) => {
|
this.$refs['Form'].validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
this.isSubmit = true
|
this.isSubmit = true
|
||||||
this.$http.get('lawss/activiti/startProcess', {
|
this.$http.post('lawss/activiti/startProcessRollBack', {
|
||||||
type: '3'
|
type: '3'
|
||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.ok) {
|
if (res.ok) {
|
||||||
|
|||||||
@@ -829,7 +829,7 @@ export default {
|
|||||||
this.$refs['Form'].validate((valid) => {
|
this.$refs['Form'].validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
this.isSubmit = true
|
this.isSubmit = true
|
||||||
this.$http.get('lawss/activiti/startProcess', {
|
this.$http.post('lawss/activiti/startProcessRollBack', {
|
||||||
id: this.bpnId || '',
|
id: this.bpnId || '',
|
||||||
createUser: this.$store.getters.userInfo.userId,
|
createUser: this.$store.getters.userInfo.userId,
|
||||||
createUserName: this.$store.getters.userInfo.userName,
|
createUserName: this.$store.getters.userInfo.userName,
|
||||||
|
|||||||
@@ -159,7 +159,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="content" v-show="active === '3'">
|
<div class="content" v-show="active === '3'">
|
||||||
<div class="flow-list">
|
<div class="flow-list" style="height: 100%">
|
||||||
<el-table
|
<el-table
|
||||||
height="100%"
|
height="100%"
|
||||||
ref="selection"
|
ref="selection"
|
||||||
|
|||||||
@@ -115,7 +115,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="content" v-show="active === '3'">
|
<div class="content" v-show="active === '3'">
|
||||||
<div class="flow-list">
|
<div class="flow-list" style="height: 100%">
|
||||||
<el-table
|
<el-table
|
||||||
height="100%"
|
height="100%"
|
||||||
ref="selection"
|
ref="selection"
|
||||||
|
|||||||
@@ -124,7 +124,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="content" v-show="active === '3'">
|
<div class="content" v-show="active === '3'">
|
||||||
<div class="flow-list">
|
<div class="flow-list" style="height: 100%">
|
||||||
<el-table
|
<el-table
|
||||||
height="100%"
|
height="100%"
|
||||||
ref="selection"
|
ref="selection"
|
||||||
|
|||||||
@@ -159,7 +159,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="content" v-show="active === '3'">
|
<div class="content" v-show="active === '3'">
|
||||||
<div class="flow-list">
|
<div class="flow-list" style="height: 100%">
|
||||||
<el-table
|
<el-table
|
||||||
height="100%"
|
height="100%"
|
||||||
ref="selection"
|
ref="selection"
|
||||||
|
|||||||
@@ -159,7 +159,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="content" v-show="active === '3'">
|
<div class="content" v-show="active === '3'">
|
||||||
<div class="flow-list">
|
<div class="flow-list" style="height: 100%">
|
||||||
<el-table
|
<el-table
|
||||||
height="100%"
|
height="100%"
|
||||||
ref="selection"
|
ref="selection"
|
||||||
|
|||||||
@@ -159,7 +159,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="content" v-show="active === '3'">
|
<div class="content" v-show="active === '3'">
|
||||||
<div class="flow-list">
|
<div class="flow-list" style="height: 100%">
|
||||||
<el-table
|
<el-table
|
||||||
height="100%"
|
height="100%"
|
||||||
ref="selection"
|
ref="selection"
|
||||||
|
|||||||
@@ -159,7 +159,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="content" v-show="active === '3'">
|
<div class="content" v-show="active === '3'">
|
||||||
<div class="flow-list">
|
<div class="flow-list" style="height: 100%">
|
||||||
<el-table
|
<el-table
|
||||||
height="100%"
|
height="100%"
|
||||||
ref="selection"
|
ref="selection"
|
||||||
|
|||||||
@@ -96,12 +96,12 @@
|
|||||||
placeholder="请选择标准发布时间">
|
placeholder="请选择标准发布时间">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="起草责任单位" prop="unit" class="add-form-item form-item-disabled">
|
<el-form-item label="起草责任单位" prop="unitName" class="add-form-item form-item-disabled">
|
||||||
<div v-if="qbfsForm.unit">
|
<div v-if="qbfsForm.unitName">
|
||||||
<el-tooltip class="item" effect="dark" :content="qbfsForm.unit" placement="top-start">
|
<el-tooltip class="item" effect="dark" :content="qbfsForm.unitName" placement="top-start">
|
||||||
<el-input
|
<el-input
|
||||||
readonly
|
readonly
|
||||||
v-model="qbfsForm.unit"
|
v-model="qbfsForm.unitName"
|
||||||
placeholder="请输入起草责任单位"
|
placeholder="请输入起草责任单位"
|
||||||
clearable
|
clearable
|
||||||
></el-input>
|
></el-input>
|
||||||
@@ -110,7 +110,7 @@
|
|||||||
<div v-else>
|
<div v-else>
|
||||||
<el-input
|
<el-input
|
||||||
readonly
|
readonly
|
||||||
v-model="qbfsForm.unit"
|
v-model="qbfsForm.unitName"
|
||||||
placeholder="请输入起草责任单位"
|
placeholder="请输入起草责任单位"
|
||||||
clearable
|
clearable
|
||||||
></el-input>
|
></el-input>
|
||||||
@@ -233,7 +233,7 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
align="center"
|
align="center"
|
||||||
prop="unit"
|
prop="unitName"
|
||||||
label="起草责任单位">
|
label="起草责任单位">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
@@ -370,7 +370,7 @@ export default {
|
|||||||
this.qbfsForm.releaseTime = this.selectList[0].releaseTime
|
this.qbfsForm.releaseTime = this.selectList[0].releaseTime
|
||||||
this.qbfsForm.resPersonName = this.selectList[0].resPersonName
|
this.qbfsForm.resPersonName = this.selectList[0].resPersonName
|
||||||
this.qbfsForm.reviseStatus = this.selectList[0].reviseStatus === '0'? '制定完成' : (this.selectList[0].reviseStatus === '1'? '制定中' : '未制定')
|
this.qbfsForm.reviseStatus = this.selectList[0].reviseStatus === '0'? '制定完成' : (this.selectList[0].reviseStatus === '1'? '制定中' : '未制定')
|
||||||
this.qbfsForm.unit = this.selectList[0].unit
|
this.qbfsForm.unitName = this.selectList[0].unitName
|
||||||
this.qbfsForm.wgLeaderName = this.selectList[0].wgLeaderName
|
this.qbfsForm.wgLeaderName = this.selectList[0].wgLeaderName
|
||||||
this.ListModel = false
|
this.ListModel = false
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -104,12 +104,12 @@
|
|||||||
placeholder="请选择标准发布时间">
|
placeholder="请选择标准发布时间">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="起草责任单位" prop="unit" class="add-form-item form-item-disabled">
|
<el-form-item label="起草责任单位" prop="unitName" class="add-form-item form-item-disabled">
|
||||||
<div v-if="qbfsForm.unit">
|
<div v-if="qbfsForm.unitName">
|
||||||
<el-tooltip class="item" effect="dark" :content="qbfsForm.unit" placement="top-start">
|
<el-tooltip class="item" effect="dark" :content="qbfsForm.unitName" placement="top-start">
|
||||||
<el-input
|
<el-input
|
||||||
readonly
|
readonly
|
||||||
v-model="qbfsForm.unit"
|
v-model="qbfsForm.unitName"
|
||||||
placeholder="请输入起草责任单位"
|
placeholder="请输入起草责任单位"
|
||||||
clearable
|
clearable
|
||||||
></el-input>
|
></el-input>
|
||||||
@@ -118,7 +118,7 @@
|
|||||||
<div v-else>
|
<div v-else>
|
||||||
<el-input
|
<el-input
|
||||||
readonly
|
readonly
|
||||||
v-model="qbfsForm.unit"
|
v-model="qbfsForm.unitName"
|
||||||
placeholder="请输入起草责任单位"
|
placeholder="请输入起草责任单位"
|
||||||
clearable
|
clearable
|
||||||
></el-input>
|
></el-input>
|
||||||
@@ -249,7 +249,7 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
align="center"
|
align="center"
|
||||||
prop="unit"
|
prop="unitName"
|
||||||
label="起草责任单位">
|
label="起草责任单位">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
@@ -391,7 +391,7 @@ export default {
|
|||||||
this.qbfsForm.releaseTime = this.selectList[0].releaseTime
|
this.qbfsForm.releaseTime = this.selectList[0].releaseTime
|
||||||
this.qbfsForm.resPersonName = this.selectList[0].resPersonName
|
this.qbfsForm.resPersonName = this.selectList[0].resPersonName
|
||||||
this.qbfsForm.reviseStatus = this.selectList[0].reviseStatus === '0'? '制定完成' : (this.selectList[0].reviseStatus === '1'? '制定中' : '未制定')
|
this.qbfsForm.reviseStatus = this.selectList[0].reviseStatus === '0'? '制定完成' : (this.selectList[0].reviseStatus === '1'? '制定中' : '未制定')
|
||||||
this.qbfsForm.unit = this.selectList[0].unit
|
this.qbfsForm.unitName = this.selectList[0].unitName
|
||||||
this.qbfsForm.wgLeaderName = this.selectList[0].wgLeaderName
|
this.qbfsForm.wgLeaderName = this.selectList[0].wgLeaderName
|
||||||
this.ListModel = false
|
this.ListModel = false
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -64,10 +64,10 @@
|
|||||||
placeholder="请选择计划标准发布时间">
|
placeholder="请选择计划标准发布时间">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="起草责任单位" style="width: 100%; margin-right:10px" prop="unit" class="add-form-item form-item-disabled">
|
<el-form-item label="起草责任单位" style="width: 100%; margin-right:10px" prop="unitName" class="add-form-item form-item-disabled">
|
||||||
<el-input v-model="qbfsForm.unitId" style="display: none;"></el-input>
|
<el-input v-model="qbfsForm.unit" style="display: none;"></el-input>
|
||||||
<el-input v-model="qbfsForm.unit" placeholder="请选择起草责任单位"
|
<el-input v-model="qbfsForm.unitName" placeholder="请选择起草责任单位"
|
||||||
@click.native="choiceZRBM('unit', '选择起草责任单位', qbfsForm.unitId)">
|
@click.native="choiceZRBM('unit', '选择起草责任单位', qbfsForm.unit)">
|
||||||
</el-input>
|
</el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="新增原因" style="width: 100%; margin-right:10px" prop="newReason" class="add-form-item form-item-disabled">
|
<el-form-item label="新增原因" style="width: 100%; margin-right:10px" prop="newReason" class="add-form-item form-item-disabled">
|
||||||
@@ -133,7 +133,7 @@ export default {
|
|||||||
qbfsForm: {
|
qbfsForm: {
|
||||||
type: '5',
|
type: '5',
|
||||||
unit: '', // 单位
|
unit: '', // 单位
|
||||||
unitId: '',
|
unitName: '',
|
||||||
esName: '', // 企标名称
|
esName: '', // 企标名称
|
||||||
planStatus: '', // 计划状态
|
planStatus: '', // 计划状态
|
||||||
reviseStatus: '', // 制修订状态
|
reviseStatus: '', // 制修订状态
|
||||||
@@ -222,8 +222,8 @@ export default {
|
|||||||
idList += item.id
|
idList += item.id
|
||||||
nameList += item.name
|
nameList += item.name
|
||||||
})
|
})
|
||||||
this.$set(this.qbfsForm, 'unitId', idList)
|
this.$set(this.qbfsForm, 'unit', idList)
|
||||||
this.$set(this.qbfsForm, 'unit', nameList)
|
this.$set(this.qbfsForm, 'unitName', nameList)
|
||||||
if(this.qbfsForm.unit){
|
if(this.qbfsForm.unit){
|
||||||
this.$refs.qbfsForm.validateField('unit')
|
this.$refs.qbfsForm.validateField('unit')
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -81,10 +81,10 @@
|
|||||||
placeholder="请选择初稿完成时间">
|
placeholder="请选择初稿完成时间">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="起草责任单位" style="width: 100%; margin-right:10px" prop="unit" class="add-form-item form-item-disabled">
|
<el-form-item label="起草责任单位" style="width: 100%; margin-right:10px" prop="unitName" class="add-form-item form-item-disabled">
|
||||||
<el-input v-model="qbfsForm.unitId" style="display: none;"></el-input>
|
<el-input v-model="qbfsForm.unit" style="display: none;"></el-input>
|
||||||
<el-input v-model="qbfsForm.unit" placeholder="请选择起草责任单位"
|
<el-input v-model="qbfsForm.unitName" placeholder="请选择起草责任单位"
|
||||||
@click.native="choiceZRBM('unit', '选择起草责任单位', qbfsForm.unitId)">
|
@click.native="choiceZRBM('unit', '选择起草责任单位', qbfsForm.unit)">
|
||||||
</el-input>
|
</el-input>
|
||||||
<!-- <el-select v-model="qbfsForm.unit" filterable multiple clearable>-->
|
<!-- <el-select v-model="qbfsForm.unit" filterable multiple clearable>-->
|
||||||
<!-- <el-option-->
|
<!-- <el-option-->
|
||||||
@@ -249,7 +249,7 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
align="center"
|
align="center"
|
||||||
prop="unit"
|
prop="unitName"
|
||||||
label="起草责任单位">
|
label="起草责任单位">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
@@ -330,7 +330,7 @@ export default {
|
|||||||
esName2: [
|
esName2: [
|
||||||
{required: true, message: '请选择合并计划企标名称', trigger: 'blur'},
|
{required: true, message: '请选择合并计划企标名称', trigger: 'blur'},
|
||||||
],
|
],
|
||||||
unit: [
|
unitName: [
|
||||||
{required: true, message: '请选择起草单位', trigger: 'change'},
|
{required: true, message: '请选择起草单位', trigger: 'change'},
|
||||||
],
|
],
|
||||||
esName: [
|
esName: [
|
||||||
@@ -444,8 +444,8 @@ export default {
|
|||||||
idList += item.id
|
idList += item.id
|
||||||
nameList += item.name
|
nameList += item.name
|
||||||
})
|
})
|
||||||
this.$set(this.qbfsForm, 'unitId', idList)
|
this.$set(this.qbfsForm, 'unit', idList)
|
||||||
this.$set(this.qbfsForm, 'unit', nameList)
|
this.$set(this.qbfsForm, 'unitName', nameList)
|
||||||
if(this.qbfsForm.unit){
|
if(this.qbfsForm.unit){
|
||||||
this.$refs.qbfsForm.validateField('unit')
|
this.$refs.qbfsForm.validateField('unit')
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -95,12 +95,12 @@
|
|||||||
placeholder="请选择标准发布时间">
|
placeholder="请选择标准发布时间">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="起草责任单位" prop="unit" class="add-form-item form-item-disabled">
|
<el-form-item label="起草责任单位" prop="unitName" class="add-form-item form-item-disabled">
|
||||||
<div v-if="qbfsForm.unit">
|
<div v-if="qbfsForm.unitName">
|
||||||
<el-tooltip class="item" effect="dark" :content="qbfsForm.unit" placement="top-start">
|
<el-tooltip class="item" effect="dark" :content="qbfsForm.unitName" placement="top-start">
|
||||||
<el-input
|
<el-input
|
||||||
readonly
|
readonly
|
||||||
v-model="qbfsForm.unit"
|
v-model="qbfsForm.unitName"
|
||||||
placeholder="请输入起草责任单位"
|
placeholder="请输入起草责任单位"
|
||||||
clearable
|
clearable
|
||||||
></el-input>
|
></el-input>
|
||||||
@@ -109,7 +109,7 @@
|
|||||||
<div v-else>
|
<div v-else>
|
||||||
<el-input
|
<el-input
|
||||||
readonly
|
readonly
|
||||||
v-model="qbfsForm.unit"
|
v-model="qbfsForm.unitName"
|
||||||
placeholder="请输入起草责任单位"
|
placeholder="请输入起草责任单位"
|
||||||
clearable
|
clearable
|
||||||
></el-input>
|
></el-input>
|
||||||
@@ -240,7 +240,7 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
align="center"
|
align="center"
|
||||||
prop="unit"
|
prop="unitName"
|
||||||
label="起草责任单位">
|
label="起草责任单位">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
@@ -379,7 +379,7 @@ export default {
|
|||||||
this.qbfsForm.releaseTime = this.selectList[0].releaseTime
|
this.qbfsForm.releaseTime = this.selectList[0].releaseTime
|
||||||
this.qbfsForm.resPersonName = this.selectList[0].resPersonName
|
this.qbfsForm.resPersonName = this.selectList[0].resPersonName
|
||||||
this.qbfsForm.reviseStatus = this.selectList[0].reviseStatus === '0'? '制定完成' : (this.selectList[0].reviseStatus === '1'? '制定中' : '未制定')
|
this.qbfsForm.reviseStatus = this.selectList[0].reviseStatus === '0'? '制定完成' : (this.selectList[0].reviseStatus === '1'? '制定中' : '未制定')
|
||||||
this.qbfsForm.unit = this.selectList[0].unit
|
this.qbfsForm.unitName = this.selectList[0].unitName
|
||||||
this.qbfsForm.wgLeaderName = this.selectList[0].wgLeaderName
|
this.qbfsForm.wgLeaderName = this.selectList[0].wgLeaderName
|
||||||
this.ListModel = false
|
this.ListModel = false
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -75,10 +75,10 @@
|
|||||||
placeholder="请选择计划标准发布时间">
|
placeholder="请选择计划标准发布时间">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="起草责任单位" style="width: 100%; margin-right:10px" prop="unit" class="add-form-item form-item-disabled">
|
<el-form-item label="起草责任单位" style="width: 100%; margin-right:10px" prop="unitName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
disabled
|
disabled
|
||||||
v-model="qbfsForm.unit"
|
v-model="qbfsForm.unitName"
|
||||||
placeholder="请输入起草责任单位"
|
placeholder="请输入起草责任单位"
|
||||||
:maxlength="500"/>
|
:maxlength="500"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|||||||
@@ -75,10 +75,10 @@
|
|||||||
placeholder="请选择计划标准发布时间">
|
placeholder="请选择计划标准发布时间">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="起草责任单位" style="width: 100%; margin-right:10px" prop="unit" class="add-form-item form-item-disabled">
|
<el-form-item label="起草责任单位" style="width: 100%; margin-right:10px" prop="unitName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
disabled
|
disabled
|
||||||
v-model="qbfsForm.unit"
|
v-model="qbfsForm.unitName"
|
||||||
placeholder="请输入起草责任单位"
|
placeholder="请输入起草责任单位"
|
||||||
:maxlength="500"/>
|
:maxlength="500"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|||||||
@@ -75,10 +75,10 @@
|
|||||||
placeholder="请选择计划标准发布时间">
|
placeholder="请选择计划标准发布时间">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="起草责任单位" style="width: 100%; margin-right:10px" prop="unit" class="add-form-item form-item-disabled">
|
<el-form-item label="起草责任单位" style="width: 100%; margin-right:10px" prop="unitName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
disabled
|
disabled
|
||||||
v-model="qbfsForm.unit"
|
v-model="qbfsForm.unitName"
|
||||||
placeholder="请输入起草责任单位"
|
placeholder="请输入起草责任单位"
|
||||||
:maxlength="500"/>
|
:maxlength="500"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|||||||
@@ -75,10 +75,10 @@
|
|||||||
placeholder="请选择计划标准发布时间">
|
placeholder="请选择计划标准发布时间">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="起草责任单位" style="width: 100%; margin-right:10px" prop="unit" class="add-form-item form-item-disabled">
|
<el-form-item label="起草责任单位" style="width: 100%; margin-right:10px" prop="unitName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
disabled
|
disabled
|
||||||
v-model="qbfsForm.unit"
|
v-model="qbfsForm.unitName"
|
||||||
placeholder="请输入起草责任单位"
|
placeholder="请输入起草责任单位"
|
||||||
:maxlength="500"/>
|
:maxlength="500"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|||||||
@@ -75,10 +75,10 @@
|
|||||||
placeholder="请选择计划标准发布时间">
|
placeholder="请选择计划标准发布时间">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="起草责任单位" style="width: 100%; margin-right:10px" prop="unit" class="add-form-item form-item-disabled">
|
<el-form-item label="起草责任单位" style="width: 100%; margin-right:10px" prop="unitName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
disabled
|
disabled
|
||||||
v-model="qbfsForm.unit"
|
v-model="qbfsForm.unitName"
|
||||||
placeholder="请输入起草责任单位"
|
placeholder="请输入起草责任单位"
|
||||||
:maxlength="500"/>
|
:maxlength="500"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|||||||
@@ -53,7 +53,7 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column prop="responsibleUnit" label="责任部门" align="center"/>
|
<el-table-column prop="responsibleUnit" label="责任部门" align="center"/>
|
||||||
<el-table-column prop="dutyEngineer" width="150" label="责任工程师" align="center"/>
|
<el-table-column prop="dutyEngineer" width="150" label="责任工程师" align="center"/>
|
||||||
<el-table-column label="选择分发责任人" prop="dutyPeopleInfo" align="center">
|
<el-table-column label="选择分发责任人" width="150" prop="dutyPeopleInfo" align="center">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-input
|
<el-input
|
||||||
@click.native="clickOpen(scope.row)"
|
@click.native="clickOpen(scope.row)"
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
<div class="headerTabsItem" :class="active === '2' ? 'active' : ''" @click="handleTabs('2')">人员信息</div>
|
<div class="headerTabsItem" :class="active === '2' ? 'active' : ''" @click="handleTabs('2')">人员信息</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="content" v-show="active === '1'">
|
<div class="content" v-show="active === '1'">
|
||||||
<div style="flex: auto; overflow: auto">
|
<div style=" overflow: auto">
|
||||||
<process-title>
|
<process-title>
|
||||||
<template slot="title">基础信息</template>
|
<template slot="title">基础信息</template>
|
||||||
</process-title>
|
</process-title>
|
||||||
@@ -149,76 +149,77 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
<process-title>
|
|
||||||
<template slot="title">填写信息</template>
|
|
||||||
</process-title>
|
|
||||||
<div class="tableTitle">
|
|
||||||
<div class="tableButton">
|
|
||||||
<el-button plain class="common-button-primary" size="mini" @click="addList">添加</el-button>
|
|
||||||
<el-button plain class="common-button-primary" size="mini" @click="deleteList">批量删除</el-button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<el-table
|
|
||||||
:data="dataList"
|
|
||||||
border
|
|
||||||
ref="selection"
|
|
||||||
height="49%"
|
|
||||||
style="width: 100%;"
|
|
||||||
@selection-change="selectStandChange"
|
|
||||||
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
|
|
||||||
fontWeight: 'bold', height: '48px'}">
|
|
||||||
<el-table-column
|
|
||||||
type="selection"
|
|
||||||
width="55"
|
|
||||||
align="center">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="productLine"
|
|
||||||
label="产品线">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="uname"
|
|
||||||
label="产品线责任人">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="distributePerson"
|
|
||||||
label="分发责任人">
|
|
||||||
<template slot-scope="scope">
|
|
||||||
<el-input
|
|
||||||
v-model="scope.row.distributePerson"
|
|
||||||
placeholder="请选择分发负责人"
|
|
||||||
readonly
|
|
||||||
@click.native="choiceZRR(scope,'distributePerson', '选择分发责任人', roleForm.distributePerson)"
|
|
||||||
></el-input>
|
|
||||||
<!-- <span v-else>{{ scope.row.distributePerson }}</span>-->
|
|
||||||
</template>
|
|
||||||
<!-- <template slot-scope="scope,text" v-if="showColumn">-->
|
|
||||||
<!-- <div>-->
|
|
||||||
<!-- <div @click="choiceZRR(scope,'distributePerson', '选择分发责任人', roleForm.distributePerson)">-->
|
|
||||||
<!-- {{ listForm.dataList[scope.$index].distributePerson == null ? "请选择分发负责人" : listForm.dataList[scope.$index].distributePerson-->
|
|
||||||
<!-- }}-->
|
|
||||||
<!-- </div>-->
|
|
||||||
<!-- </div>-->
|
|
||||||
<!-- </template>-->
|
|
||||||
</el-table-column>
|
|
||||||
</el-table>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<process-title>
|
||||||
<div>
|
<template slot="title">填写信息</template>
|
||||||
|
</process-title>
|
||||||
|
<div class="tableTitle">
|
||||||
|
<div class="tableButton">
|
||||||
|
<el-button plain class="common-button-primary" size="mini" @click="addList">添加</el-button>
|
||||||
|
<el-button plain class="common-button-primary" size="mini" @click="deleteList">批量删除</el-button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<el-table
|
||||||
|
:data="dataList"
|
||||||
|
border
|
||||||
|
ref="selection"
|
||||||
|
height="100%"
|
||||||
|
style="width: 100%;"
|
||||||
|
@selection-change="selectStandChange"
|
||||||
|
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
|
||||||
|
fontWeight: 'bold', height: '48px'}">
|
||||||
|
<el-table-column
|
||||||
|
type="selection"
|
||||||
|
width="55"
|
||||||
|
align="center">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="productLine"
|
||||||
|
label="产品线">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="uname"
|
||||||
|
label="产品线责任人">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="distributePerson"
|
||||||
|
label="分发责任人">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-input
|
||||||
|
v-model="scope.row.distributePerson"
|
||||||
|
placeholder="请选择分发负责人"
|
||||||
|
readonly
|
||||||
|
@click.native="choiceZRR(scope,'distributePerson', '选择分发责任人', roleForm.distributePerson)"
|
||||||
|
></el-input>
|
||||||
|
<!-- <span v-else>{{ scope.row.distributePerson }}</span>-->
|
||||||
|
</template>
|
||||||
|
<!-- <template slot-scope="scope,text" v-if="showColumn">-->
|
||||||
|
<!-- <div>-->
|
||||||
|
<!-- <div @click="choiceZRR(scope,'distributePerson', '选择分发责任人', roleForm.distributePerson)">-->
|
||||||
|
<!-- {{ listForm.dataList[scope.$index].distributePerson == null ? "请选择分发负责人" : listForm.dataList[scope.$index].distributePerson-->
|
||||||
|
<!-- }}-->
|
||||||
|
<!-- </div>-->
|
||||||
|
<!-- </div>-->
|
||||||
|
<!-- </template>-->
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
<el-collapse accordion>
|
<el-collapse accordion>
|
||||||
<el-collapse-item title="回执说明">
|
<el-collapse-item title="回执说明">
|
||||||
<div style="margin: 10px 0;">
|
<div style="margin: 10px 0;">
|
||||||
<el-input
|
<el-input
|
||||||
type="textarea"
|
type="textarea"
|
||||||
:rows="3"
|
:rows="3"
|
||||||
resize="none"
|
resize="none"
|
||||||
placeholder="请输入意见"
|
placeholder="请输入意见"
|
||||||
v-model="commentText">
|
v-model="commentText">
|
||||||
</el-input>
|
</el-input>
|
||||||
</div>
|
</div>
|
||||||
</el-collapse-item>
|
</el-collapse-item>
|
||||||
</el-collapse>
|
</el-collapse>
|
||||||
</div>
|
</div>
|
||||||
|
<div>
|
||||||
|
</div>
|
||||||
<div class="content" v-show="active === '2'">
|
<div class="content" v-show="active === '2'">
|
||||||
<div class="block" style="padding-top: 20px;">
|
<div class="block" style="padding-top: 20px;">
|
||||||
<el-timeline>
|
<el-timeline>
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
<div class="headerTabsItem" :class="active === '3' ? 'active' : ''" @click="handleTabs('3')">审批历史</div>
|
<div class="headerTabsItem" :class="active === '3' ? 'active' : ''" @click="handleTabs('3')">审批历史</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="content" v-show="active === '1'">
|
<div class="content" v-show="active === '1'">
|
||||||
<div style="flex: auto; overflow: auto">
|
<div style="overflow: auto">
|
||||||
<process-title>
|
<process-title>
|
||||||
<template slot="title">基础信息</template>
|
<template slot="title">基础信息</template>
|
||||||
</process-title>
|
</process-title>
|
||||||
@@ -132,143 +132,143 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
<process-title>
|
|
||||||
<template slot="title">填写信息</template>
|
|
||||||
</process-title>
|
|
||||||
<div class="tableTitle">
|
|
||||||
</div>
|
|
||||||
<el-table
|
|
||||||
ref="multipleTable"
|
|
||||||
:data="dataList"
|
|
||||||
tooltip-effect="dark"
|
|
||||||
style="width: 100%"
|
|
||||||
border
|
|
||||||
@selection-change="selectStandChange"
|
|
||||||
height="52%"
|
|
||||||
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
|
|
||||||
fontWeight: 'bold', fontFamily: 'MicrosoftYaHei-Bold'}">
|
|
||||||
<el-table-column
|
|
||||||
type="selection"
|
|
||||||
width="55"
|
|
||||||
align="center">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="productLine"
|
|
||||||
align="center"
|
|
||||||
width="200"
|
|
||||||
label="产品线">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="projectNumber"
|
|
||||||
align="center"
|
|
||||||
width="200"
|
|
||||||
label="项目编号">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="projectName"
|
|
||||||
align="center"
|
|
||||||
width="200"
|
|
||||||
label="项目名称">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="itemNum"
|
|
||||||
align="center"
|
|
||||||
width="200"
|
|
||||||
label="条款号">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="itemsName"
|
|
||||||
width="200"
|
|
||||||
align="center"
|
|
||||||
label="条款名称">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="technicalRequir"
|
|
||||||
align="center"
|
|
||||||
width="250"
|
|
||||||
label="核心技术要求/变化点">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="changePoint"
|
|
||||||
width="250"
|
|
||||||
align="center"
|
|
||||||
label="基于上一版本差异">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="xCXSSRQ"
|
|
||||||
width="200"
|
|
||||||
align="center"
|
|
||||||
label="新车型实施日期">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="zCCSSRQ"
|
|
||||||
width="200"
|
|
||||||
align="center"
|
|
||||||
label="在产车实施日期">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="complianceReasons"
|
|
||||||
align="center"
|
|
||||||
width="160"
|
|
||||||
label="合规">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
align="center"
|
|
||||||
width="160"
|
|
||||||
prop="researchNonCompliance"
|
|
||||||
label="不合规">
|
|
||||||
<el-table-column
|
|
||||||
prop="noCompliance"
|
|
||||||
align="center"
|
|
||||||
width="170"
|
|
||||||
label="不合规项目">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="countermeasures"
|
|
||||||
align="center"
|
|
||||||
width="160"
|
|
||||||
label="应对措施">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="completionTime"
|
|
||||||
align="center"
|
|
||||||
width="120"
|
|
||||||
label="完成时间">
|
|
||||||
<template slot-scope="scope">
|
|
||||||
<span>{{ scope.row.completionTime ? $moment(scope.row.completionTime).format('YYYY-MM-DD') : '' }}</span>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
fixed="right"
|
|
||||||
align="center"
|
|
||||||
width="150"
|
|
||||||
prop="implementer"
|
|
||||||
label="落实人">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
fixed="right"
|
|
||||||
align="center"
|
|
||||||
width="150"
|
|
||||||
prop="distributePerson"
|
|
||||||
label="责任人">
|
|
||||||
</el-table-column>
|
|
||||||
</el-table>
|
|
||||||
</div>
|
</div>
|
||||||
|
<process-title>
|
||||||
|
<template slot="title">填写信息</template>
|
||||||
|
</process-title>
|
||||||
|
<div class="tableTitle">
|
||||||
|
</div>
|
||||||
|
<el-table
|
||||||
|
ref="multipleTable"
|
||||||
|
:data="dataList"
|
||||||
|
tooltip-effect="dark"
|
||||||
|
style="width: 100%"
|
||||||
|
border
|
||||||
|
@selection-change="selectStandChange"
|
||||||
|
height="52%"
|
||||||
|
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
|
||||||
|
fontWeight: 'bold', fontFamily: 'MicrosoftYaHei-Bold'}">
|
||||||
|
<el-table-column
|
||||||
|
type="selection"
|
||||||
|
width="55"
|
||||||
|
align="center">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="productLine"
|
||||||
|
align="center"
|
||||||
|
width="200"
|
||||||
|
label="产品线">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="projectNumber"
|
||||||
|
align="center"
|
||||||
|
width="200"
|
||||||
|
label="项目编号">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="projectName"
|
||||||
|
align="center"
|
||||||
|
width="200"
|
||||||
|
label="项目名称">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="itemNum"
|
||||||
|
align="center"
|
||||||
|
width="200"
|
||||||
|
label="条款号">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="itemsName"
|
||||||
|
width="200"
|
||||||
|
align="center"
|
||||||
|
label="条款名称">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="technicalRequir"
|
||||||
|
align="center"
|
||||||
|
width="250"
|
||||||
|
label="核心技术要求/变化点">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="changePoint"
|
||||||
|
width="250"
|
||||||
|
align="center"
|
||||||
|
label="基于上一版本差异">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="xCXSSRQ"
|
||||||
|
width="200"
|
||||||
|
align="center"
|
||||||
|
label="新车型实施日期">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="zCCSSRQ"
|
||||||
|
width="200"
|
||||||
|
align="center"
|
||||||
|
label="在产车实施日期">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="complianceReasons"
|
||||||
|
align="center"
|
||||||
|
width="160"
|
||||||
|
label="合规">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
align="center"
|
||||||
|
width="160"
|
||||||
|
prop="researchNonCompliance"
|
||||||
|
label="不合规">
|
||||||
|
<el-table-column
|
||||||
|
prop="noCompliance"
|
||||||
|
align="center"
|
||||||
|
width="170"
|
||||||
|
label="不合规项目">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="countermeasures"
|
||||||
|
align="center"
|
||||||
|
width="160"
|
||||||
|
label="应对措施">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="completionTime"
|
||||||
|
align="center"
|
||||||
|
width="120"
|
||||||
|
label="完成时间">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ scope.row.completionTime ? $moment(scope.row.completionTime).format('YYYY-MM-DD') : '' }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
fixed="right"
|
||||||
|
align="center"
|
||||||
|
width="150"
|
||||||
|
prop="implementer"
|
||||||
|
label="落实人">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
fixed="right"
|
||||||
|
align="center"
|
||||||
|
width="150"
|
||||||
|
prop="distributePerson"
|
||||||
|
label="责任人">
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<el-collapse accordion>
|
||||||
|
<el-collapse-item title="审批意见">
|
||||||
|
<div style="margin: 10px 0;">
|
||||||
|
<el-input
|
||||||
|
type="textarea"
|
||||||
|
:rows="3"
|
||||||
|
resize="none"
|
||||||
|
placeholder="请输入意见"
|
||||||
|
v-model="commentText">
|
||||||
|
</el-input>
|
||||||
|
</div>
|
||||||
|
</el-collapse-item>
|
||||||
|
</el-collapse>
|
||||||
<div>
|
<div>
|
||||||
<el-collapse accordion>
|
|
||||||
<el-collapse-item title="审批意见">
|
|
||||||
<div style="margin: 10px 0;">
|
|
||||||
<el-input
|
|
||||||
type="textarea"
|
|
||||||
:rows="3"
|
|
||||||
resize="none"
|
|
||||||
placeholder="请输入意见"
|
|
||||||
v-model="commentText">
|
|
||||||
</el-input>
|
|
||||||
</div>
|
|
||||||
</el-collapse-item>
|
|
||||||
</el-collapse>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
<div class="headerTabsItem" :class="active === '2' ? 'active' : ''" @click="handleTabs('2')">人员信息</div>
|
<div class="headerTabsItem" :class="active === '2' ? 'active' : ''" @click="handleTabs('2')">人员信息</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="content" v-show="active === '1'">
|
<div class="content" v-show="active === '1'">
|
||||||
<div style="flex: auto; overflow: auto">
|
<div style=" overflow: auto">
|
||||||
<process-title>
|
<process-title>
|
||||||
<template slot="title">基础信息</template>
|
<template slot="title">基础信息</template>
|
||||||
</process-title>
|
</process-title>
|
||||||
@@ -163,50 +163,49 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
<process-title>
|
|
||||||
<template slot="title">填写信息</template>
|
|
||||||
</process-title>
|
|
||||||
<div class="tableTitle">
|
|
||||||
<div class="tableButton">
|
|
||||||
<el-button plain class="common-button-primary" size="mini" @click="addList">添加</el-button>
|
|
||||||
<el-button plain class="common-button-primary" size="mini" @click="deleteList">批量删除</el-button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<el-table
|
|
||||||
:data="dataList"
|
|
||||||
border
|
|
||||||
ref="selection"
|
|
||||||
height="49%"
|
|
||||||
style="width: 100%;"
|
|
||||||
@selection-change="selectStandChange"
|
|
||||||
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
|
|
||||||
fontWeight: 'bold', height: '48px'}">
|
|
||||||
<el-table-column
|
|
||||||
type="selection"
|
|
||||||
width="55"
|
|
||||||
align="center">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="productLine"
|
|
||||||
label="产品线">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="uname"
|
|
||||||
label="产品线责任人">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="distributePerson"
|
|
||||||
label="分发责任人">
|
|
||||||
<template slot-scope="scope">
|
|
||||||
<el-input v-model="scope.row.distributePersonId" style="display: none;" />
|
|
||||||
<el-input v-model="scope.row.distributePerson" placeholder="请选择责任人"
|
|
||||||
@click.native="choiceZRR(scope,'distributePerson', '选择分发责任人', roleForm.distributePerson)" />
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
</el-table>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<process-title>
|
||||||
<div>
|
<template slot="title">填写信息</template>
|
||||||
|
</process-title>
|
||||||
|
<div class="tableTitle">
|
||||||
|
<div class="tableButton">
|
||||||
|
<el-button plain class="common-button-primary" size="mini" @click="addList">添加</el-button>
|
||||||
|
<el-button plain class="common-button-primary" size="mini" @click="deleteList">批量删除</el-button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<el-table
|
||||||
|
:data="dataList"
|
||||||
|
border
|
||||||
|
ref="selection"
|
||||||
|
height="100%"
|
||||||
|
style="width: 100%;"
|
||||||
|
@selection-change="selectStandChange"
|
||||||
|
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
|
||||||
|
fontWeight: 'bold', height: '48px'}">
|
||||||
|
<el-table-column
|
||||||
|
type="selection"
|
||||||
|
width="55"
|
||||||
|
align="center">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="productLine"
|
||||||
|
label="产品线">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="uname"
|
||||||
|
label="产品线责任人">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="distributePerson"
|
||||||
|
label="分发责任人">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-input v-model="scope.row.distributePersonId" style="display: none;" />
|
||||||
|
<el-input v-model="scope.row.distributePerson" placeholder="请选择责任人"
|
||||||
|
@click.native="choiceZRR(scope,'distributePerson', '选择分发责任人', roleForm.distributePerson)" />
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
<el-collapse accordion>
|
<el-collapse accordion>
|
||||||
<el-collapse-item title="回执说明">
|
<el-collapse-item title="回执说明">
|
||||||
<div style="margin: 10px 0;">
|
<div style="margin: 10px 0;">
|
||||||
@@ -221,6 +220,8 @@
|
|||||||
</el-collapse-item>
|
</el-collapse-item>
|
||||||
</el-collapse>
|
</el-collapse>
|
||||||
</div>
|
</div>
|
||||||
|
<div>
|
||||||
|
</div>
|
||||||
<div class="content" v-show="active === '2'">
|
<div class="content" v-show="active === '2'">
|
||||||
<div class="block" style="padding-top: 20px;">
|
<div class="block" style="padding-top: 20px;">
|
||||||
<el-timeline>
|
<el-timeline>
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
<div class="headerTabsItem" :class="active === '3' ? 'active' : ''" @click="handleTabs('3')">审批历史</div>
|
<div class="headerTabsItem" :class="active === '3' ? 'active' : ''" @click="handleTabs('3')">审批历史</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="content" v-show="active === '1'">
|
<div class="content" v-show="active === '1'">
|
||||||
<div style="flex: auto; overflow: auto">
|
<div style="overflow: auto">
|
||||||
<process-title>
|
<process-title>
|
||||||
<template slot="title">基础信息</template>
|
<template slot="title">基础信息</template>
|
||||||
</process-title>
|
</process-title>
|
||||||
@@ -131,55 +131,55 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
<process-title>
|
|
||||||
<template slot="title">填写信息</template>
|
|
||||||
</process-title>
|
|
||||||
<el-table
|
|
||||||
:data="dataList"
|
|
||||||
border
|
|
||||||
ref="selection"
|
|
||||||
height="49%"
|
|
||||||
style="width: 100%;"
|
|
||||||
@selection-change="selectStandChange"
|
|
||||||
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
|
|
||||||
fontWeight: 'bold', height: '48px'}">
|
|
||||||
<el-table-column
|
|
||||||
type="selection"
|
|
||||||
width="55"
|
|
||||||
align="center">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="productLine"
|
|
||||||
label="产品线">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="productLine"
|
|
||||||
label="项目名称">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="uname"
|
|
||||||
label="产品线责任人">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="distributePerson"
|
|
||||||
label="分发责任人">
|
|
||||||
</el-table-column>
|
|
||||||
</el-table>
|
|
||||||
</div>
|
</div>
|
||||||
|
<process-title>
|
||||||
|
<template slot="title">填写信息</template>
|
||||||
|
</process-title>
|
||||||
|
<el-table
|
||||||
|
:data="dataList"
|
||||||
|
border
|
||||||
|
ref="selection"
|
||||||
|
height="100%"
|
||||||
|
style="width: 100%;"
|
||||||
|
@selection-change="selectStandChange"
|
||||||
|
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
|
||||||
|
fontWeight: 'bold', height: '48px'}">
|
||||||
|
<el-table-column
|
||||||
|
type="selection"
|
||||||
|
width="55"
|
||||||
|
align="center">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="productLine"
|
||||||
|
label="产品线">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="productLine"
|
||||||
|
label="项目名称">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="uname"
|
||||||
|
label="产品线责任人">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="distributePerson"
|
||||||
|
label="分发责任人">
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<el-collapse accordion>
|
||||||
|
<el-collapse-item title="审批意见">
|
||||||
|
<div style="margin: 10px 0;">
|
||||||
|
<el-input
|
||||||
|
type="textarea"
|
||||||
|
:rows="3"
|
||||||
|
resize="none"
|
||||||
|
placeholder="请输入意见"
|
||||||
|
v-model="commentText">
|
||||||
|
</el-input>
|
||||||
|
</div>
|
||||||
|
</el-collapse-item>
|
||||||
|
</el-collapse>
|
||||||
<div>
|
<div>
|
||||||
<el-collapse accordion>
|
|
||||||
<el-collapse-item title="审批意见">
|
|
||||||
<div style="margin: 10px 0;">
|
|
||||||
<el-input
|
|
||||||
type="textarea"
|
|
||||||
:rows="3"
|
|
||||||
resize="none"
|
|
||||||
placeholder="请输入意见"
|
|
||||||
v-model="commentText">
|
|
||||||
</el-input>
|
|
||||||
</div>
|
|
||||||
</el-collapse-item>
|
|
||||||
</el-collapse>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
<template slot="title">基础信息</template>
|
<template slot="title">基础信息</template>
|
||||||
</process-title>
|
</process-title>
|
||||||
<el-collapse-transition>
|
<el-collapse-transition>
|
||||||
<div class="prc-content-border" v-if="foldFormFlag === false">
|
<div v-if="foldFormFlag === false">
|
||||||
<el-form
|
<el-form
|
||||||
:model="listForm"
|
:model="listForm"
|
||||||
class="label-input-form prc-content-border"
|
class="label-input-form prc-content-border"
|
||||||
@@ -132,108 +132,7 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
<process-title>
|
|
||||||
<template slot="title">填写信息</template>
|
|
||||||
</process-title>
|
|
||||||
<div class="tableTitle">
|
|
||||||
<div class="tableButton">
|
|
||||||
<el-button class="common-button-primary" plain size="mini" @click="addProject">添加
|
|
||||||
</el-button>
|
|
||||||
<el-button plain class="common-button-primary" type="primary" size="mini" @click="deleteList">批量删除
|
|
||||||
</el-button>
|
|
||||||
<el-button plain class="common-button-primary" type="primary" size="mini" @click="choiceZRRS('', 2, '')">
|
|
||||||
批量分发落实人
|
|
||||||
</el-button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<el-table
|
|
||||||
ref="multipleTable"
|
|
||||||
:data="breakdownList"
|
|
||||||
style="width: 100%; border: 1px solid #cccccc;height: 400px"
|
|
||||||
height="48%"
|
|
||||||
border
|
|
||||||
highlight-current-row
|
|
||||||
@selection-change="selectStandChange"
|
|
||||||
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
|
|
||||||
fontWeight: 'bold', fontFamily: 'MicrosoftYaHei-Bold', height: '48px'}">
|
|
||||||
<el-table-column
|
|
||||||
type="selection"
|
|
||||||
width="55"
|
|
||||||
align="center">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="productLine"
|
|
||||||
align="center"
|
|
||||||
width="150"
|
|
||||||
label="产品线">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="projectNumber"
|
|
||||||
align="center"
|
|
||||||
width="160px"
|
|
||||||
label="项目编号">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="projectName"
|
|
||||||
align="center"
|
|
||||||
min-width="300"
|
|
||||||
label="项目名称">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="itemNum"
|
|
||||||
align="center"
|
|
||||||
width="100px"
|
|
||||||
label="条款号">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="itemsName"
|
|
||||||
align="center"
|
|
||||||
width="160px"
|
|
||||||
label="条款名称">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="technicalRequir"
|
|
||||||
align="center"
|
|
||||||
width="160px"
|
|
||||||
label="核心技术要求/变化点">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="changePoint"
|
|
||||||
align="center"
|
|
||||||
width="160px"
|
|
||||||
label="基于上一版本差异">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="xcxssrq"
|
|
||||||
align="center"
|
|
||||||
width="120px"
|
|
||||||
label="新车型实施日期">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="zccssrq"
|
|
||||||
align="center"
|
|
||||||
width="120px"
|
|
||||||
label="在产车实施日期">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
label="落实人"
|
|
||||||
width="210"
|
|
||||||
align="center">
|
|
||||||
<template slot-scope="scope">
|
|
||||||
<el-input v-model="scope.row.implementerId" style="display: none;" />
|
|
||||||
<el-input v-model="scope.row.implementer" placeholder="请选择落实人"
|
|
||||||
@click.native="choiceZRRS(scope.row, 1, scope.$index)" />
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
</el-table>
|
|
||||||
<!-- <el-pagination-->
|
|
||||||
<!-- layout="total,sizes, prev, pager, next"-->
|
|
||||||
<!-- background-->
|
|
||||||
<!-- :page-sizes="[20, 40, 60]"-->
|
|
||||||
<!-- :total="total"-->
|
|
||||||
<!-- @size-change="handleSizeChange"-->
|
|
||||||
<!-- @current-change="handleCurrentChange"-->
|
|
||||||
<!-- />-->
|
|
||||||
<!-- 选择责任人-->
|
<!-- 选择责任人-->
|
||||||
<Role-tree
|
<Role-tree
|
||||||
is-title="选择落实人"
|
is-title="选择落实人"
|
||||||
@@ -242,6 +141,108 @@
|
|||||||
:nodeList="nodeList"
|
:nodeList="nodeList"
|
||||||
></Role-tree>
|
></Role-tree>
|
||||||
</div>
|
</div>
|
||||||
|
<process-title>
|
||||||
|
<template slot="title">填写信息</template>
|
||||||
|
</process-title>
|
||||||
|
<div class="tableTitle">
|
||||||
|
<div class="tableButton">
|
||||||
|
<el-button class="common-button-primary" plain size="mini" @click="addProject">添加
|
||||||
|
</el-button>
|
||||||
|
<el-button plain class="common-button-primary" type="primary" size="mini" @click="deleteList">批量删除
|
||||||
|
</el-button>
|
||||||
|
<el-button plain class="common-button-primary" type="primary" size="mini" @click="choiceZRRS('', 2, '')">
|
||||||
|
批量分发落实人
|
||||||
|
</el-button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<el-table
|
||||||
|
ref="multipleTable"
|
||||||
|
:data="breakdownList"
|
||||||
|
style="width: 100%; border: 1px solid #cccccc;height: 400px"
|
||||||
|
height="100%"
|
||||||
|
border
|
||||||
|
highlight-current-row
|
||||||
|
@selection-change="selectStandChange"
|
||||||
|
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
|
||||||
|
fontWeight: 'bold', fontFamily: 'MicrosoftYaHei-Bold', height: '48px'}">
|
||||||
|
<el-table-column
|
||||||
|
type="selection"
|
||||||
|
width="55"
|
||||||
|
align="center">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="productLine"
|
||||||
|
align="center"
|
||||||
|
width="150"
|
||||||
|
label="产品线">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="projectNumber"
|
||||||
|
align="center"
|
||||||
|
width="160px"
|
||||||
|
label="项目编号">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="projectName"
|
||||||
|
align="center"
|
||||||
|
min-width="300"
|
||||||
|
label="项目名称">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="itemNum"
|
||||||
|
align="center"
|
||||||
|
width="100px"
|
||||||
|
label="条款号">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="itemsName"
|
||||||
|
align="center"
|
||||||
|
width="160px"
|
||||||
|
label="条款名称">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="technicalRequir"
|
||||||
|
align="center"
|
||||||
|
width="160px"
|
||||||
|
label="核心技术要求/变化点">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="changePoint"
|
||||||
|
align="center"
|
||||||
|
width="160px"
|
||||||
|
label="基于上一版本差异">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="xcxssrq"
|
||||||
|
align="center"
|
||||||
|
width="120px"
|
||||||
|
label="新车型实施日期">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="zccssrq"
|
||||||
|
align="center"
|
||||||
|
width="120px"
|
||||||
|
label="在产车实施日期">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="落实人"
|
||||||
|
width="210"
|
||||||
|
align="center">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-input v-model="scope.row.implementerId" style="display: none;" />
|
||||||
|
<el-input v-model="scope.row.implementer" placeholder="请选择落实人"
|
||||||
|
@click.native="choiceZRRS(scope.row, 1, scope.$index)" />
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<!-- <el-pagination-->
|
||||||
|
<!-- layout="total,sizes, prev, pager, next"-->
|
||||||
|
<!-- background-->
|
||||||
|
<!-- :page-sizes="[20, 40, 60]"-->
|
||||||
|
<!-- :total="total"-->
|
||||||
|
<!-- @size-change="handleSizeChange"-->
|
||||||
|
<!-- @current-change="handleCurrentChange"-->
|
||||||
|
<!-- />-->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="content" v-show="active === '3'">
|
<div class="content" v-show="active === '3'">
|
||||||
@@ -341,7 +342,7 @@
|
|||||||
type="primary"
|
type="primary"
|
||||||
class="common-button-primary"
|
class="common-button-primary"
|
||||||
size="small"
|
size="small"
|
||||||
@click="getProject">
|
@click="getProjectBtn">
|
||||||
查询
|
查询
|
||||||
</el-button>
|
</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@@ -360,7 +361,7 @@
|
|||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
border
|
border
|
||||||
ref="table"
|
ref="table"
|
||||||
height="100%"
|
class="table-height"
|
||||||
:header-cell-style="{background: '#f5f1f1', color: '#333333', fontSize: '16px',
|
:header-cell-style="{background: '#f5f1f1', color: '#333333', fontSize: '16px',
|
||||||
fontWeight: 'bold', height: '48px'}"
|
fontWeight: 'bold', height: '48px'}"
|
||||||
@selection-change="selectThree"
|
@selection-change="selectThree"
|
||||||
@@ -679,6 +680,10 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
|
getProjectBtn(){
|
||||||
|
this.pageNo = 1,
|
||||||
|
this.getProject()
|
||||||
|
},
|
||||||
getProject() {
|
getProject() {
|
||||||
this.$http.get("sarStandProjectLibrary/queryProjectUnderLine", {
|
this.$http.get("sarStandProjectLibrary/queryProjectUnderLine", {
|
||||||
productLine: this.projectLineId,
|
productLine: this.projectLineId,
|
||||||
@@ -967,16 +972,14 @@ export default {
|
|||||||
padding: 0 20px 0;
|
padding: 0 20px 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
position: relative;
|
||||||
|
height: 100%;
|
||||||
.choiceBtn {
|
.choiceBtn {
|
||||||
.el-button--primary {
|
.el-button--primary {
|
||||||
width: 150px;
|
width: 150px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
position: relative;
|
|
||||||
height: 100%;
|
|
||||||
|
|
||||||
.headerTabs {
|
.headerTabs {
|
||||||
height: 52px;
|
height: 52px;
|
||||||
display: flex;
|
display: flex;
|
||||||
@@ -1035,6 +1038,10 @@ export default {
|
|||||||
.demo-drawer-content {
|
.demo-drawer-content {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
.table-height{
|
||||||
|
height: calc(~'100% - 65px');
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
<div class="headerTabsItem" :class="active === '3' ? 'active' : ''" @click="handleTabs('3')">审批历史</div>
|
<div class="headerTabsItem" :class="active === '3' ? 'active' : ''" @click="handleTabs('3')">审批历史</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="content" v-show="active === '1'">
|
<div class="content" v-show="active === '1'">
|
||||||
<div style="flex: auto; overflow: auto">
|
<div style="overflow: auto">
|
||||||
<process-title>
|
<process-title>
|
||||||
<template slot="title">基础信息</template>
|
<template slot="title">基础信息</template>
|
||||||
</process-title>
|
</process-title>
|
||||||
@@ -131,201 +131,201 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
<process-title>
|
</div>
|
||||||
<template slot="title">填写信息</template>
|
<process-title>
|
||||||
</process-title>
|
<template slot="title">填写信息</template>
|
||||||
<div class="tableTitle">
|
</process-title>
|
||||||
<div class="tableButton">
|
<div class="tableTitle">
|
||||||
<el-button :disabled="acceptShow" class="common-button-primary add-button" type="primary" size="mini"
|
<div class="tableButton">
|
||||||
@click="batchEdit">批量编辑
|
<el-button :disabled="acceptShow" class="common-button-primary add-button" type="primary" size="mini"
|
||||||
</el-button>
|
@click="batchEdit">批量编辑
|
||||||
</div>
|
</el-button>
|
||||||
</div>
|
</div>
|
||||||
<el-table
|
</div>
|
||||||
ref="multipleTable"
|
<el-table
|
||||||
:data="dataList"
|
ref="multipleTable"
|
||||||
tooltip-effect="dark"
|
:data="dataList"
|
||||||
style="width: 100%"
|
tooltip-effect="dark"
|
||||||
border
|
style="width: 100%"
|
||||||
@selection-change="selectStandChange"
|
border
|
||||||
height="48%"
|
@selection-change="selectStandChange"
|
||||||
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
|
height="100%"
|
||||||
|
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
|
||||||
fontWeight: 'bold', fontFamily: 'MicrosoftYaHei-Bold'}">
|
fontWeight: 'bold', fontFamily: 'MicrosoftYaHei-Bold'}">
|
||||||
<el-table-column
|
<el-table-column
|
||||||
type="selection"
|
type="selection"
|
||||||
width="55"
|
width="55"
|
||||||
align="center">
|
align="center">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="productLine"
|
prop="productLine"
|
||||||
align="center"
|
align="center"
|
||||||
width="200"
|
width="200"
|
||||||
label="产品线">
|
label="产品线">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="projectNumber"
|
prop="projectNumber"
|
||||||
align="center"
|
align="center"
|
||||||
width="200"
|
width="200"
|
||||||
label="项目编号">
|
label="项目编号">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="projectName"
|
prop="projectName"
|
||||||
align="center"
|
align="center"
|
||||||
width="200"
|
width="200"
|
||||||
label="项目名称">
|
label="项目名称">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="itemNum"
|
prop="itemNum"
|
||||||
align="center"
|
align="center"
|
||||||
width="200"
|
width="200"
|
||||||
label="条款号">
|
label="条款号">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="itemsName"
|
prop="itemsName"
|
||||||
width="200"
|
width="200"
|
||||||
align="center"
|
align="center"
|
||||||
label="条款名称">
|
label="条款名称">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="technicalRequir"
|
prop="technicalRequir"
|
||||||
align="center"
|
align="center"
|
||||||
width="250"
|
width="250"
|
||||||
label="核心技术要求/变化点">
|
label="核心技术要求/变化点">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="changePoint"
|
prop="changePoint"
|
||||||
width="250"
|
width="250"
|
||||||
align="center"
|
align="center"
|
||||||
label="基于上一版本差异">
|
label="基于上一版本差异">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="xCXSSRQ"
|
prop="xCXSSRQ"
|
||||||
width="200"
|
width="200"
|
||||||
align="center"
|
align="center"
|
||||||
label="新车型实施日期">
|
label="新车型实施日期">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="zCCSSRQ"
|
prop="zCCSSRQ"
|
||||||
width="200"
|
width="200"
|
||||||
align="center"
|
align="center"
|
||||||
label="在产车实施日期">
|
label="在产车实施日期">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="researchCompliance"
|
prop="researchCompliance"
|
||||||
align="center"
|
align="center"
|
||||||
width="160"
|
width="160"
|
||||||
label="合规">
|
label="合规">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-input
|
<el-input
|
||||||
v-if="dataList[scope.$index].noCompliance && dataList[scope.$index].noCompliance.length>0
|
v-if="dataList[scope.$index].noCompliance && dataList[scope.$index].noCompliance.length>0
|
||||||
|| dataList[scope.$index].countermeasures && dataList[scope.$index].countermeasures.length>0
|
|| dataList[scope.$index].countermeasures && dataList[scope.$index].countermeasures.length>0
|
||||||
|| dataList[scope.$index].completionTime && dataList[scope.$index].completionTime !== null"
|
|| dataList[scope.$index].completionTime && dataList[scope.$index].completionTime !== null"
|
||||||
disabled
|
disabled
|
||||||
v-model="dataList[scope.$index].complianceReasons"
|
v-model="dataList[scope.$index].complianceReasons"
|
||||||
placeholder="请输入合规原因"
|
placeholder="请输入合规原因"
|
||||||
>
|
>
|
||||||
</el-input>
|
</el-input>
|
||||||
<el-input
|
<el-input
|
||||||
v-else
|
v-else
|
||||||
:disabled="acceptShow"
|
:disabled="acceptShow"
|
||||||
clearable
|
clearable
|
||||||
v-model="dataList[scope.$index].complianceReasons"
|
v-model="dataList[scope.$index].complianceReasons"
|
||||||
placeholder="请输入合规原因"
|
placeholder="请输入合规原因"
|
||||||
>
|
>
|
||||||
</el-input>
|
</el-input>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
align="center"
|
align="center"
|
||||||
width="160"
|
width="160"
|
||||||
prop="researchNonCompliance"
|
prop="researchNonCompliance"
|
||||||
label="不合规">
|
label="不合规">
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="researchNonCompliance"
|
prop="researchNonCompliance"
|
||||||
align="center"
|
align="center"
|
||||||
width="170"
|
width="170"
|
||||||
label="不合规项目">
|
label="不合规项目">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-input
|
|
||||||
v-if="dataList[scope.$index].complianceReasons && dataList[scope.$index].complianceReasons.length>0"
|
|
||||||
disabled
|
|
||||||
v-model="dataList[scope.$index].noCompliance"
|
|
||||||
placeholder="请输入不合规项目"
|
|
||||||
>
|
|
||||||
</el-input>
|
|
||||||
<el-input
|
|
||||||
v-else
|
|
||||||
:disabled="acceptShow"
|
|
||||||
v-model="dataList[scope.$index].noCompliance"
|
|
||||||
placeholder="请输入不合规项目"
|
|
||||||
>
|
|
||||||
</el-input>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="researchCountermeasures"
|
|
||||||
align="center"
|
|
||||||
width="160"
|
|
||||||
label="应对措施">
|
|
||||||
<template slot-scope="scope">
|
|
||||||
<el-input
|
|
||||||
v-if="dataList[scope.$index].complianceReasons && dataList[scope.$index].complianceReasons.length>0"
|
|
||||||
disabled
|
|
||||||
v-model="dataList[scope.$index].countermeasures"
|
|
||||||
placeholder="请输入应对措施"
|
|
||||||
>
|
|
||||||
</el-input>
|
|
||||||
<el-input
|
|
||||||
v-else
|
|
||||||
:disabled="acceptShow"
|
|
||||||
v-model="dataList[scope.$index].countermeasures"
|
|
||||||
placeholder="请输入应对措施"
|
|
||||||
>
|
|
||||||
</el-input>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="researchCompletionTime"
|
|
||||||
align="center"
|
|
||||||
width="140"
|
|
||||||
label="完成时间">
|
|
||||||
<template slot-scope="scope">
|
|
||||||
<el-date-picker
|
|
||||||
v-if="dataList[scope.$index].complianceReasons && dataList[scope.$index].complianceReasons.length>0"
|
|
||||||
disabled
|
|
||||||
v-model="dataList[scope.$index].completionTime"
|
|
||||||
type="date"
|
|
||||||
placeholder="请选择日期">
|
|
||||||
</el-date-picker>
|
|
||||||
<el-date-picker
|
|
||||||
v-else
|
|
||||||
:disabled="acceptShow"
|
|
||||||
class="datePickLen"
|
|
||||||
clearable
|
|
||||||
value-format="yyyy-MM-dd HH:mm:ss"
|
|
||||||
v-model="dataList[scope.$index].completionTime"
|
|
||||||
type="date"
|
|
||||||
placeholder="请选择日期">
|
|
||||||
</el-date-picker>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
</el-table-column>
|
|
||||||
</el-table>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<el-collapse accordion>
|
|
||||||
<el-collapse-item title="回执说明">
|
|
||||||
<div style="margin: 10px 0;">
|
|
||||||
<el-input
|
<el-input
|
||||||
type="textarea"
|
v-if="dataList[scope.$index].complianceReasons && dataList[scope.$index].complianceReasons.length>0"
|
||||||
:rows="3"
|
disabled
|
||||||
resize="none"
|
v-model="dataList[scope.$index].noCompliance"
|
||||||
placeholder="请输入意见"
|
placeholder="请输入不合规项目"
|
||||||
v-model="commentText">
|
>
|
||||||
</el-input>
|
</el-input>
|
||||||
</div>
|
<el-input
|
||||||
</el-collapse-item>
|
v-else
|
||||||
</el-collapse>
|
:disabled="acceptShow"
|
||||||
|
v-model="dataList[scope.$index].noCompliance"
|
||||||
|
placeholder="请输入不合规项目"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="researchCountermeasures"
|
||||||
|
align="center"
|
||||||
|
width="160"
|
||||||
|
label="应对措施">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-input
|
||||||
|
v-if="dataList[scope.$index].complianceReasons && dataList[scope.$index].complianceReasons.length>0"
|
||||||
|
disabled
|
||||||
|
v-model="dataList[scope.$index].countermeasures"
|
||||||
|
placeholder="请输入应对措施"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
<el-input
|
||||||
|
v-else
|
||||||
|
:disabled="acceptShow"
|
||||||
|
v-model="dataList[scope.$index].countermeasures"
|
||||||
|
placeholder="请输入应对措施"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="researchCompletionTime"
|
||||||
|
align="center"
|
||||||
|
width="140"
|
||||||
|
label="完成时间">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-date-picker
|
||||||
|
v-if="dataList[scope.$index].complianceReasons && dataList[scope.$index].complianceReasons.length>0"
|
||||||
|
disabled
|
||||||
|
v-model="dataList[scope.$index].completionTime"
|
||||||
|
type="date"
|
||||||
|
placeholder="请选择日期">
|
||||||
|
</el-date-picker>
|
||||||
|
<el-date-picker
|
||||||
|
v-else
|
||||||
|
:disabled="acceptShow"
|
||||||
|
class="datePickLen"
|
||||||
|
clearable
|
||||||
|
value-format="yyyy-MM-dd HH:mm:ss"
|
||||||
|
v-model="dataList[scope.$index].completionTime"
|
||||||
|
type="date"
|
||||||
|
placeholder="请选择日期">
|
||||||
|
</el-date-picker>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<el-collapse accordion>
|
||||||
|
<el-collapse-item title="回执说明">
|
||||||
|
<div style="margin: 10px 0;">
|
||||||
|
<el-input
|
||||||
|
type="textarea"
|
||||||
|
:rows="3"
|
||||||
|
resize="none"
|
||||||
|
placeholder="请输入意见"
|
||||||
|
v-model="commentText">
|
||||||
|
</el-input>
|
||||||
|
</div>
|
||||||
|
</el-collapse-item>
|
||||||
|
</el-collapse>
|
||||||
|
<div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
<div class="headerTabsItem" :class="active === '3' ? 'active' : ''" @click="handleTabs('3')">审批历史</div>
|
<div class="headerTabsItem" :class="active === '3' ? 'active' : ''" @click="handleTabs('3')">审批历史</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="content" v-show="active === '1'">
|
<div class="content" v-show="active === '1'">
|
||||||
<div style="flex: auto; overflow: auto">
|
<div style="overflow: auto">
|
||||||
<process-title>
|
<process-title>
|
||||||
<template slot="title">基础信息</template>
|
<template slot="title">基础信息</template>
|
||||||
</process-title>
|
</process-title>
|
||||||
@@ -131,143 +131,143 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
<process-title>
|
|
||||||
<template slot="title">填写信息</template>
|
|
||||||
</process-title>
|
|
||||||
<div class="tableTitle">
|
|
||||||
</div>
|
|
||||||
<el-table
|
|
||||||
ref="multipleTable"
|
|
||||||
:data="dataList"
|
|
||||||
tooltip-effect="dark"
|
|
||||||
style="width: 100%"
|
|
||||||
border
|
|
||||||
@selection-change="selectStandChange"
|
|
||||||
height="55%"
|
|
||||||
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
|
|
||||||
fontWeight: 'bold', fontFamily: 'MicrosoftYaHei-Bold'}">
|
|
||||||
<el-table-column
|
|
||||||
type="selection"
|
|
||||||
width="55"
|
|
||||||
align="center">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="productLine"
|
|
||||||
align="center"
|
|
||||||
width="200"
|
|
||||||
label="产品线">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="projectNumber"
|
|
||||||
align="center"
|
|
||||||
width="200"
|
|
||||||
label="项目编号">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="projectName"
|
|
||||||
align="center"
|
|
||||||
width="200"
|
|
||||||
label="项目名称">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="itemNum"
|
|
||||||
align="center"
|
|
||||||
width="200"
|
|
||||||
label="条款号">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="itemsName"
|
|
||||||
width="200"
|
|
||||||
align="center"
|
|
||||||
label="条款名称">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="technicalRequir"
|
|
||||||
align="center"
|
|
||||||
width="250"
|
|
||||||
label="核心技术要求/变化点">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="changePoint"
|
|
||||||
width="250"
|
|
||||||
align="center"
|
|
||||||
label="基于上一版本差异">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="xCXSSRQ"
|
|
||||||
width="200"
|
|
||||||
align="center"
|
|
||||||
label="新车型实施日期">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="zCCSSRQ"
|
|
||||||
width="200"
|
|
||||||
align="center"
|
|
||||||
label="在产车实施日期">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="complianceReasons"
|
|
||||||
align="center"
|
|
||||||
width="160"
|
|
||||||
label="合规">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
align="center"
|
|
||||||
width="160"
|
|
||||||
prop="researchNonCompliance"
|
|
||||||
label="不合规">
|
|
||||||
<el-table-column
|
|
||||||
prop="noCompliance"
|
|
||||||
align="center"
|
|
||||||
width="170"
|
|
||||||
label="不合规项目">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="countermeasures"
|
|
||||||
align="center"
|
|
||||||
width="160"
|
|
||||||
label="应对措施">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="completionTime"
|
|
||||||
align="center"
|
|
||||||
width="120"
|
|
||||||
label="完成时间">
|
|
||||||
<template slot-scope="scope">
|
|
||||||
<span>{{ scope.row.completionTime ? $moment(scope.row.completionTime).format('YYYY-MM-DD') : '' }}</span>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
fixed="right"
|
|
||||||
align="center"
|
|
||||||
width="150"
|
|
||||||
prop="implementer"
|
|
||||||
label="落实人">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
fixed="right"
|
|
||||||
align="center"
|
|
||||||
width="150"
|
|
||||||
prop="distributePerson"
|
|
||||||
label="责任人">
|
|
||||||
</el-table-column>
|
|
||||||
</el-table>
|
|
||||||
</div>
|
</div>
|
||||||
|
<process-title>
|
||||||
|
<template slot="title">填写信息</template>
|
||||||
|
</process-title>
|
||||||
|
<div class="tableTitle">
|
||||||
|
</div>
|
||||||
|
<el-table
|
||||||
|
ref="multipleTable"
|
||||||
|
:data="dataList"
|
||||||
|
tooltip-effect="dark"
|
||||||
|
style="width: 100%"
|
||||||
|
border
|
||||||
|
@selection-change="selectStandChange"
|
||||||
|
height="100%"
|
||||||
|
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
|
||||||
|
fontWeight: 'bold', fontFamily: 'MicrosoftYaHei-Bold'}">
|
||||||
|
<el-table-column
|
||||||
|
type="selection"
|
||||||
|
width="55"
|
||||||
|
align="center">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="productLine"
|
||||||
|
align="center"
|
||||||
|
width="200"
|
||||||
|
label="产品线">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="projectNumber"
|
||||||
|
align="center"
|
||||||
|
width="200"
|
||||||
|
label="项目编号">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="projectName"
|
||||||
|
align="center"
|
||||||
|
width="200"
|
||||||
|
label="项目名称">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="itemNum"
|
||||||
|
align="center"
|
||||||
|
width="200"
|
||||||
|
label="条款号">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="itemsName"
|
||||||
|
width="200"
|
||||||
|
align="center"
|
||||||
|
label="条款名称">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="technicalRequir"
|
||||||
|
align="center"
|
||||||
|
width="250"
|
||||||
|
label="核心技术要求/变化点">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="changePoint"
|
||||||
|
width="250"
|
||||||
|
align="center"
|
||||||
|
label="基于上一版本差异">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="xCXSSRQ"
|
||||||
|
width="200"
|
||||||
|
align="center"
|
||||||
|
label="新车型实施日期">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="zCCSSRQ"
|
||||||
|
width="200"
|
||||||
|
align="center"
|
||||||
|
label="在产车实施日期">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="complianceReasons"
|
||||||
|
align="center"
|
||||||
|
width="160"
|
||||||
|
label="合规">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
align="center"
|
||||||
|
width="160"
|
||||||
|
prop="researchNonCompliance"
|
||||||
|
label="不合规">
|
||||||
|
<el-table-column
|
||||||
|
prop="noCompliance"
|
||||||
|
align="center"
|
||||||
|
width="170"
|
||||||
|
label="不合规项目">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="countermeasures"
|
||||||
|
align="center"
|
||||||
|
width="160"
|
||||||
|
label="应对措施">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="completionTime"
|
||||||
|
align="center"
|
||||||
|
width="120"
|
||||||
|
label="完成时间">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ scope.row.completionTime ? $moment(scope.row.completionTime).format('YYYY-MM-DD') : '' }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
fixed="right"
|
||||||
|
align="center"
|
||||||
|
width="150"
|
||||||
|
prop="implementer"
|
||||||
|
label="落实人">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
fixed="right"
|
||||||
|
align="center"
|
||||||
|
width="150"
|
||||||
|
prop="distributePerson"
|
||||||
|
label="责任人">
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<el-collapse accordion>
|
||||||
|
<el-collapse-item title="审批意见">
|
||||||
|
<div style="margin: 10px 0;">
|
||||||
|
<el-input
|
||||||
|
type="textarea"
|
||||||
|
:rows="3"
|
||||||
|
resize="none"
|
||||||
|
placeholder="请输入意见"
|
||||||
|
v-model.trim="commentText">
|
||||||
|
</el-input>
|
||||||
|
</div>
|
||||||
|
</el-collapse-item>
|
||||||
|
</el-collapse>
|
||||||
<div>
|
<div>
|
||||||
<el-collapse accordion>
|
|
||||||
<el-collapse-item title="审批意见">
|
|
||||||
<div style="margin: 10px 0;">
|
|
||||||
<el-input
|
|
||||||
type="textarea"
|
|
||||||
:rows="3"
|
|
||||||
resize="none"
|
|
||||||
placeholder="请输入意见"
|
|
||||||
v-model.trim="commentText">
|
|
||||||
</el-input>
|
|
||||||
</div>
|
|
||||||
</el-collapse-item>
|
|
||||||
</el-collapse>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
<div class="headerTabsItem" :class="active === '3' ? 'active' : ''" @click="handleTabs('3')">审批历史</div>
|
<div class="headerTabsItem" :class="active === '3' ? 'active' : ''" @click="handleTabs('3')">审批历史</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="content" v-show="active === '1'">
|
<div class="content" v-show="active === '1'">
|
||||||
<div style="flex: auto; overflow: auto">
|
<div style="overflow: auto">
|
||||||
<process-title>
|
<process-title>
|
||||||
<template slot="title">基础信息</template>
|
<template slot="title">基础信息</template>
|
||||||
</process-title>
|
</process-title>
|
||||||
@@ -131,143 +131,143 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
<process-title>
|
|
||||||
<template slot="title">填写信息</template>
|
|
||||||
</process-title>
|
|
||||||
<div class="tableTitle">
|
|
||||||
</div>
|
|
||||||
<el-table
|
|
||||||
ref="multipleTable"
|
|
||||||
:data="dataList"
|
|
||||||
tooltip-effect="dark"
|
|
||||||
style="width: 100%"
|
|
||||||
border
|
|
||||||
@selection-change="selectStandChange"
|
|
||||||
height="55%"
|
|
||||||
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
|
|
||||||
fontWeight: 'bold', fontFamily: 'MicrosoftYaHei-Bold'}">
|
|
||||||
<el-table-column
|
|
||||||
type="selection"
|
|
||||||
width="55"
|
|
||||||
align="center">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="productLine"
|
|
||||||
align="center"
|
|
||||||
width="200"
|
|
||||||
label="产品线">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="projectNumber"
|
|
||||||
align="center"
|
|
||||||
width="200"
|
|
||||||
label="项目编号">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="projectName"
|
|
||||||
align="center"
|
|
||||||
width="200"
|
|
||||||
label="项目名称">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="itemNum"
|
|
||||||
align="center"
|
|
||||||
width="200"
|
|
||||||
label="条款号">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="itemsName"
|
|
||||||
width="200"
|
|
||||||
align="center"
|
|
||||||
label="条款名称">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="technicalRequir"
|
|
||||||
align="center"
|
|
||||||
width="250"
|
|
||||||
label="核心技术要求/变化点">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="changePoint"
|
|
||||||
width="250"
|
|
||||||
align="center"
|
|
||||||
label="基于上一版本差异">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="xCXSSRQ"
|
|
||||||
width="200"
|
|
||||||
align="center"
|
|
||||||
label="新车型实施日期">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="zCCSSRQ"
|
|
||||||
width="200"
|
|
||||||
align="center"
|
|
||||||
label="在产车实施日期">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="complianceReasons"
|
|
||||||
align="center"
|
|
||||||
width="160"
|
|
||||||
label="合规">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
align="center"
|
|
||||||
width="160"
|
|
||||||
prop="researchNonCompliance"
|
|
||||||
label="不合规">
|
|
||||||
<el-table-column
|
|
||||||
prop="noCompliance"
|
|
||||||
align="center"
|
|
||||||
width="170"
|
|
||||||
label="不合规项目">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="countermeasures"
|
|
||||||
align="center"
|
|
||||||
width="160"
|
|
||||||
label="应对措施">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="completionTime"
|
|
||||||
align="center"
|
|
||||||
width="120"
|
|
||||||
label="完成时间">
|
|
||||||
<template slot-scope="scope">
|
|
||||||
<span>{{ scope.row.completionTime ? $moment(scope.row.completionTime).format('YYYY-MM-DD') : '' }}</span>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
fixed="right"
|
|
||||||
align="center"
|
|
||||||
width="150"
|
|
||||||
prop="implementer"
|
|
||||||
label="落实人">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
fixed="right"
|
|
||||||
align="center"
|
|
||||||
width="150"
|
|
||||||
prop="distributePerson"
|
|
||||||
label="责任人">
|
|
||||||
</el-table-column>
|
|
||||||
</el-table>
|
|
||||||
</div>
|
</div>
|
||||||
|
<process-title>
|
||||||
|
<template slot="title">填写信息</template>
|
||||||
|
</process-title>
|
||||||
|
<div class="tableTitle">
|
||||||
|
</div>
|
||||||
|
<el-table
|
||||||
|
ref="multipleTable"
|
||||||
|
:data="dataList"
|
||||||
|
tooltip-effect="dark"
|
||||||
|
style="width: 100%"
|
||||||
|
border
|
||||||
|
@selection-change="selectStandChange"
|
||||||
|
height="100%"
|
||||||
|
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
|
||||||
|
fontWeight: 'bold', fontFamily: 'MicrosoftYaHei-Bold'}">
|
||||||
|
<el-table-column
|
||||||
|
type="selection"
|
||||||
|
width="55"
|
||||||
|
align="center">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="productLine"
|
||||||
|
align="center"
|
||||||
|
width="200"
|
||||||
|
label="产品线">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="projectNumber"
|
||||||
|
align="center"
|
||||||
|
width="200"
|
||||||
|
label="项目编号">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="projectName"
|
||||||
|
align="center"
|
||||||
|
width="200"
|
||||||
|
label="项目名称">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="itemNum"
|
||||||
|
align="center"
|
||||||
|
width="200"
|
||||||
|
label="条款号">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="itemsName"
|
||||||
|
width="200"
|
||||||
|
align="center"
|
||||||
|
label="条款名称">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="technicalRequir"
|
||||||
|
align="center"
|
||||||
|
width="250"
|
||||||
|
label="核心技术要求/变化点">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="changePoint"
|
||||||
|
width="250"
|
||||||
|
align="center"
|
||||||
|
label="基于上一版本差异">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="xCXSSRQ"
|
||||||
|
width="200"
|
||||||
|
align="center"
|
||||||
|
label="新车型实施日期">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="zCCSSRQ"
|
||||||
|
width="200"
|
||||||
|
align="center"
|
||||||
|
label="在产车实施日期">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="complianceReasons"
|
||||||
|
align="center"
|
||||||
|
width="160"
|
||||||
|
label="合规">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
align="center"
|
||||||
|
width="160"
|
||||||
|
prop="researchNonCompliance"
|
||||||
|
label="不合规">
|
||||||
|
<el-table-column
|
||||||
|
prop="noCompliance"
|
||||||
|
align="center"
|
||||||
|
width="170"
|
||||||
|
label="不合规项目">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="countermeasures"
|
||||||
|
align="center"
|
||||||
|
width="160"
|
||||||
|
label="应对措施">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="completionTime"
|
||||||
|
align="center"
|
||||||
|
width="120"
|
||||||
|
label="完成时间">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ scope.row.completionTime ? $moment(scope.row.completionTime).format('YYYY-MM-DD') : '' }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
fixed="right"
|
||||||
|
align="center"
|
||||||
|
width="150"
|
||||||
|
prop="implementer"
|
||||||
|
label="落实人">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
fixed="right"
|
||||||
|
align="center"
|
||||||
|
width="150"
|
||||||
|
prop="distributePerson"
|
||||||
|
label="责任人">
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<el-collapse accordion>
|
||||||
|
<el-collapse-item title="审批意见">
|
||||||
|
<div style="margin: 10px 0;">
|
||||||
|
<el-input
|
||||||
|
type="textarea"
|
||||||
|
:rows="3"
|
||||||
|
resize="none"
|
||||||
|
placeholder="请输入意见"
|
||||||
|
v-model="commentText">
|
||||||
|
</el-input>
|
||||||
|
</div>
|
||||||
|
</el-collapse-item>
|
||||||
|
</el-collapse>
|
||||||
<div>
|
<div>
|
||||||
<el-collapse accordion>
|
|
||||||
<el-collapse-item title="审批意见">
|
|
||||||
<div style="margin: 10px 0;">
|
|
||||||
<el-input
|
|
||||||
type="textarea"
|
|
||||||
:rows="3"
|
|
||||||
resize="none"
|
|
||||||
placeholder="请输入意见"
|
|
||||||
v-model="commentText">
|
|
||||||
</el-input>
|
|
||||||
</div>
|
|
||||||
</el-collapse-item>
|
|
||||||
</el-collapse>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
<div class="headerTabsItem" :class="active === '3' ? 'active' : ''" @click="handleTabs('3')">审批历史</div>
|
<div class="headerTabsItem" :class="active === '3' ? 'active' : ''" @click="handleTabs('3')">审批历史</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="content" v-show="active === '1'">
|
<div class="content" v-show="active === '1'">
|
||||||
<div style="flex: auto; overflow: auto">
|
<div style="overflow: auto">
|
||||||
<process-title>
|
<process-title>
|
||||||
<template slot="title">基础信息</template>
|
<template slot="title">基础信息</template>
|
||||||
</process-title>
|
</process-title>
|
||||||
@@ -131,143 +131,143 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
<process-title>
|
|
||||||
<template slot="title">填写信息</template>
|
|
||||||
</process-title>
|
|
||||||
<div class="tableTitle">
|
|
||||||
</div>
|
|
||||||
<el-table
|
|
||||||
ref="multipleTable"
|
|
||||||
:data="dataList"
|
|
||||||
tooltip-effect="dark"
|
|
||||||
style="width: 100%"
|
|
||||||
border
|
|
||||||
@selection-change="selectStandChange"
|
|
||||||
height="52%"
|
|
||||||
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
|
|
||||||
fontWeight: 'bold', fontFamily: 'MicrosoftYaHei-Bold'}">
|
|
||||||
<el-table-column
|
|
||||||
type="selection"
|
|
||||||
width="55"
|
|
||||||
align="center">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="productLine"
|
|
||||||
align="center"
|
|
||||||
width="200"
|
|
||||||
label="产品线">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="projectNumber"
|
|
||||||
align="center"
|
|
||||||
width="200"
|
|
||||||
label="项目编号">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="projectName"
|
|
||||||
align="center"
|
|
||||||
width="200"
|
|
||||||
label="项目名称">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="itemNum"
|
|
||||||
align="center"
|
|
||||||
width="200"
|
|
||||||
label="条款号">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="itemsName"
|
|
||||||
width="200"
|
|
||||||
align="center"
|
|
||||||
label="条款名称">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="technicalRequir"
|
|
||||||
align="center"
|
|
||||||
width="250"
|
|
||||||
label="核心技术要求/变化点">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="changePoint"
|
|
||||||
width="250"
|
|
||||||
align="center"
|
|
||||||
label="基于上一版本差异">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="xCXSSRQ"
|
|
||||||
width="200"
|
|
||||||
align="center"
|
|
||||||
label="新车型实施日期">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="zCCSSRQ"
|
|
||||||
width="200"
|
|
||||||
align="center"
|
|
||||||
label="在产车实施日期">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="complianceReasons"
|
|
||||||
align="center"
|
|
||||||
width="160"
|
|
||||||
label="合规">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
align="center"
|
|
||||||
width="160"
|
|
||||||
prop="researchNonCompliance"
|
|
||||||
label="不合规">
|
|
||||||
<el-table-column
|
|
||||||
prop="noCompliance"
|
|
||||||
align="center"
|
|
||||||
width="170"
|
|
||||||
label="不合规项目">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="countermeasures"
|
|
||||||
align="center"
|
|
||||||
width="160"
|
|
||||||
label="应对措施">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
prop="completionTime"
|
|
||||||
align="center"
|
|
||||||
width="120"
|
|
||||||
label="完成时间">
|
|
||||||
<template slot-scope="scope">
|
|
||||||
<span>{{ scope.row.completionTime ? $moment(scope.row.completionTime).format('YYYY-MM-DD') : '' }}</span>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
fixed="right"
|
|
||||||
align="center"
|
|
||||||
width="150"
|
|
||||||
prop="implementer"
|
|
||||||
label="落实人">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
fixed="right"
|
|
||||||
align="center"
|
|
||||||
width="150"
|
|
||||||
prop="distributePerson"
|
|
||||||
label="责任人">
|
|
||||||
</el-table-column>
|
|
||||||
</el-table>
|
|
||||||
</div>
|
</div>
|
||||||
|
<process-title>
|
||||||
|
<template slot="title">填写信息</template>
|
||||||
|
</process-title>
|
||||||
|
<div class="tableTitle">
|
||||||
|
</div>
|
||||||
|
<el-table
|
||||||
|
ref="multipleTable"
|
||||||
|
:data="dataList"
|
||||||
|
tooltip-effect="dark"
|
||||||
|
style="width: 100%"
|
||||||
|
border
|
||||||
|
@selection-change="selectStandChange"
|
||||||
|
height="100%"
|
||||||
|
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
|
||||||
|
fontWeight: 'bold', fontFamily: 'MicrosoftYaHei-Bold'}">
|
||||||
|
<el-table-column
|
||||||
|
type="selection"
|
||||||
|
width="55"
|
||||||
|
align="center">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="productLine"
|
||||||
|
align="center"
|
||||||
|
width="200"
|
||||||
|
label="产品线">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="projectNumber"
|
||||||
|
align="center"
|
||||||
|
width="200"
|
||||||
|
label="项目编号">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="projectName"
|
||||||
|
align="center"
|
||||||
|
width="200"
|
||||||
|
label="项目名称">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="itemNum"
|
||||||
|
align="center"
|
||||||
|
width="200"
|
||||||
|
label="条款号">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="itemsName"
|
||||||
|
width="200"
|
||||||
|
align="center"
|
||||||
|
label="条款名称">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="technicalRequir"
|
||||||
|
align="center"
|
||||||
|
width="250"
|
||||||
|
label="核心技术要求/变化点">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="changePoint"
|
||||||
|
width="250"
|
||||||
|
align="center"
|
||||||
|
label="基于上一版本差异">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="xCXSSRQ"
|
||||||
|
width="200"
|
||||||
|
align="center"
|
||||||
|
label="新车型实施日期">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="zCCSSRQ"
|
||||||
|
width="200"
|
||||||
|
align="center"
|
||||||
|
label="在产车实施日期">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="complianceReasons"
|
||||||
|
align="center"
|
||||||
|
width="160"
|
||||||
|
label="合规">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
align="center"
|
||||||
|
width="160"
|
||||||
|
prop="researchNonCompliance"
|
||||||
|
label="不合规">
|
||||||
|
<el-table-column
|
||||||
|
prop="noCompliance"
|
||||||
|
align="center"
|
||||||
|
width="170"
|
||||||
|
label="不合规项目">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="countermeasures"
|
||||||
|
align="center"
|
||||||
|
width="160"
|
||||||
|
label="应对措施">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="completionTime"
|
||||||
|
align="center"
|
||||||
|
width="120"
|
||||||
|
label="完成时间">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ scope.row.completionTime ? $moment(scope.row.completionTime).format('YYYY-MM-DD') : '' }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
fixed="right"
|
||||||
|
align="center"
|
||||||
|
width="150"
|
||||||
|
prop="implementer"
|
||||||
|
label="落实人">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
fixed="right"
|
||||||
|
align="center"
|
||||||
|
width="150"
|
||||||
|
prop="distributePerson"
|
||||||
|
label="责任人">
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<el-collapse accordion>
|
||||||
|
<el-collapse-item title="审批意见">
|
||||||
|
<div style="margin: 10px 0;">
|
||||||
|
<el-input
|
||||||
|
type="textarea"
|
||||||
|
:rows="3"
|
||||||
|
resize="none"
|
||||||
|
placeholder="请输入意见"
|
||||||
|
v-model="commentText">
|
||||||
|
</el-input>
|
||||||
|
</div>
|
||||||
|
</el-collapse-item>
|
||||||
|
</el-collapse>
|
||||||
<div>
|
<div>
|
||||||
<el-collapse accordion>
|
|
||||||
<el-collapse-item title="审批意见">
|
|
||||||
<div style="margin: 10px 0;">
|
|
||||||
<el-input
|
|
||||||
type="textarea"
|
|
||||||
:rows="3"
|
|
||||||
resize="none"
|
|
||||||
placeholder="请输入意见"
|
|
||||||
v-model="commentText">
|
|
||||||
</el-input>
|
|
||||||
</div>
|
|
||||||
</el-collapse-item>
|
|
||||||
</el-collapse>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -191,7 +191,7 @@
|
|||||||
tooltip-effect="dark"
|
tooltip-effect="dark"
|
||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
border
|
border
|
||||||
height="100%"
|
class="table-height"
|
||||||
:header-cell-style="{background: '#f5f1f1', color: '#333333', fontSize: '16px',
|
:header-cell-style="{background: '#f5f1f1', color: '#333333', fontSize: '16px',
|
||||||
fontWeight: 'bold', height: '48px'}"
|
fontWeight: 'bold', height: '48px'}"
|
||||||
@selection-change="selectProjectChange"
|
@selection-change="selectProjectChange"
|
||||||
@@ -499,7 +499,6 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
this.ProjectDatas = res.data.total.records;
|
this.ProjectDatas = res.data.total.records;
|
||||||
this.total = res.data.total.total;
|
this.total = res.data.total.total;
|
||||||
this.page = 1;
|
|
||||||
}, e => {
|
}, e => {
|
||||||
|
|
||||||
});
|
});
|
||||||
@@ -840,6 +839,10 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.table-height{
|
||||||
|
height: calc(~'100% - 65px');
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|||||||
@@ -59,6 +59,7 @@
|
|||||||
<el-button size="mini" type="primary" style="margin-top: 1%;" @click="choiceList">选择清单</el-button>
|
<el-button size="mini" type="primary" style="margin-top: 1%;" @click="choiceList">选择清单</el-button>
|
||||||
<el-form-item label="截止日期" prop="endTime" class="add-form-item form-item-disabled">
|
<el-form-item label="截止日期" prop="endTime" class="add-form-item form-item-disabled">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
|
:picker-options="pickerOptions"
|
||||||
v-model="qdform.endTime"
|
v-model="qdform.endTime"
|
||||||
type="date"
|
type="date"
|
||||||
placeholder="请选择截止日期"
|
placeholder="请选择截止日期"
|
||||||
@@ -198,7 +199,7 @@
|
|||||||
tooltip-effect="dark"
|
tooltip-effect="dark"
|
||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
border
|
border
|
||||||
height="100%"
|
class="table-height"
|
||||||
:header-cell-style="{background: '#f5f1f1', color: '#333333', fontSize: '16px',
|
:header-cell-style="{background: '#f5f1f1', color: '#333333', fontSize: '16px',
|
||||||
fontWeight: 'bold', height: '48px'}"
|
fontWeight: 'bold', height: '48px'}"
|
||||||
@selection-change="selectProjectChange"
|
@selection-change="selectProjectChange"
|
||||||
@@ -398,6 +399,11 @@ export default {
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
pickerOptions: {
|
||||||
|
disabledDate(time) {
|
||||||
|
return time.getTime() < Date.now() - 8.64e7;
|
||||||
|
},
|
||||||
|
},
|
||||||
multipleSelection: [],
|
multipleSelection: [],
|
||||||
active: "1", //默认显示
|
active: "1", //默认显示
|
||||||
commentText: "",
|
commentText: "",
|
||||||
@@ -503,7 +509,6 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
this.ProjectDatas = res.data.total.records;
|
this.ProjectDatas = res.data.total.records;
|
||||||
this.total = res.data.total.total;
|
this.total = res.data.total.total;
|
||||||
this.page = 1;
|
|
||||||
}, e => {
|
}, e => {
|
||||||
|
|
||||||
});
|
});
|
||||||
@@ -834,6 +839,10 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.table-height{
|
||||||
|
height: calc(~'100% - 65px');
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|||||||
@@ -137,7 +137,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<el-collapse accordion>
|
<el-collapse accordion>
|
||||||
<el-collapse-item title="回执说明">
|
<el-collapse-item title="审批意见">
|
||||||
<div style="margin: 10px 0;">
|
<div style="margin: 10px 0;">
|
||||||
<el-input
|
<el-input
|
||||||
type="textarea"
|
type="textarea"
|
||||||
|
|||||||
@@ -266,28 +266,21 @@
|
|||||||
v-model="form.ZCWBLAWSName"
|
v-model="form.ZCWBLAWSName"
|
||||||
clearable
|
clearable
|
||||||
></el-input>
|
></el-input>
|
||||||
<div v-if="ZCWBLAWSFileList.length>0">
|
<div style="display: flex;justify-content: space-between">
|
||||||
<!-- {{ form.fbgbjbdName }}-->
|
<div style="width: 80%;">
|
||||||
<el-button
|
<div v-for="(item,index) in ZCWBLAWSFileList" :key="index" @click="handleFilePreview(item)" style="color: #409eff;cursor:pointer" class="fileClass">{{ item.name }}</div>
|
||||||
type="primary"
|
</div>
|
||||||
class="common-button-primary"
|
<div style="width: 20%;">
|
||||||
size="mini"
|
<el-button
|
||||||
style="margin-left: 10px"
|
type="primary"
|
||||||
@click="fileUpload('ZCWBLAWS')">
|
class="common-button-primary"
|
||||||
<i class="el-icon-upload el-icon--right"></i>
|
size="mini"
|
||||||
查看已上传的文件
|
@click="fileUpload('ZCWBLAWS')"
|
||||||
</el-button>
|
style="margin-left: 10px; margin-top: 11px; float: right;">
|
||||||
</div>
|
<i class="el-icon-upload el-icon--right"></i>
|
||||||
<div v-else>
|
</el-button>
|
||||||
<el-button
|
</div>
|
||||||
type="primary"
|
</div>
|
||||||
class="common-button-primary"
|
|
||||||
size="mini"
|
|
||||||
@click="fileUpload('ZCWBLAWS')">
|
|
||||||
<i class="el-icon-upload el-icon--right"></i>
|
|
||||||
点击上传
|
|
||||||
</el-button>
|
|
||||||
</div>
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="解读文件" prop="JDWJLAWSName" class="add-form-item form-item-disabled">
|
<el-form-item label="解读文件" prop="JDWJLAWSName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
@@ -296,28 +289,21 @@
|
|||||||
v-model="form.JDWJLAWSName"
|
v-model="form.JDWJLAWSName"
|
||||||
clearable
|
clearable
|
||||||
></el-input>
|
></el-input>
|
||||||
<div v-if="JDWJLAWSFileList.length>0">
|
<div style="display: flex;justify-content: space-between">
|
||||||
<!-- {{ form.caName }}-->
|
<div style="width: 80%;">
|
||||||
<el-button
|
<div v-for="(item,index) in JDWJLAWSFileList" :key="index" @click="handleFilePreview(item)" style="color: #409eff;cursor:pointer" class="fileClass">{{ item.name }}</div>
|
||||||
type="primary"
|
</div>
|
||||||
class="common-button-primary"
|
<div style="width: 20%;">
|
||||||
size="mini"
|
<el-button
|
||||||
style="margin-left: 10px"
|
type="primary"
|
||||||
@click="fileUpload('JDWJLAWS')">
|
class="common-button-primary"
|
||||||
<i class="el-icon-upload el-icon--right"></i>
|
size="mini"
|
||||||
查看已上传的文件
|
@click="fileUpload('JDWJLAWS')"
|
||||||
</el-button>
|
style="margin-left: 10px; margin-top: 11px; float: right;">
|
||||||
</div>
|
<i class="el-icon-upload el-icon--right"></i>
|
||||||
<div v-else>
|
</el-button>
|
||||||
<el-button
|
</div>
|
||||||
type="primary"
|
</div>
|
||||||
class="common-button-primary"
|
|
||||||
size="mini"
|
|
||||||
@click="fileUpload('JDWJLAWS')">
|
|
||||||
<i class="el-icon-upload el-icon--right"></i>
|
|
||||||
点击上传
|
|
||||||
</el-button>
|
|
||||||
</div>
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
@@ -328,27 +314,20 @@
|
|||||||
v-model="form.GCWBLAWSName"
|
v-model="form.GCWBLAWSName"
|
||||||
clearable
|
clearable
|
||||||
></el-input>
|
></el-input>
|
||||||
<div v-if="GCWBLAWSFileList.length>0">
|
<div style="display: flex;justify-content: space-between">
|
||||||
<!-- {{ form.ssgName }}-->
|
<div style="width: 80%;">
|
||||||
<el-button
|
<div v-for="(item,index) in GCWBLAWSFileList" :key="index" @click="handleFilePreview(item)" style="color: #409eff;cursor:pointer" class="fileClass">{{ item.name }}</div>
|
||||||
type="primary"
|
</div>
|
||||||
class="common-button-primary"
|
<div style="width: 20%;">
|
||||||
size="mini"
|
<el-button
|
||||||
style="margin-left: 10px"
|
type="primary"
|
||||||
@click="fileUpload('GCWBLAWS')">
|
class="common-button-primary"
|
||||||
<i class="el-icon-upload el-icon--right"></i>
|
size="mini"
|
||||||
查看已上传的文件
|
@click="fileUpload('GCWBLAWS')"
|
||||||
</el-button>
|
style="margin-left: 10px; margin-top: 11px; float: right;">
|
||||||
</div>
|
<i class="el-icon-upload el-icon--right"></i>
|
||||||
<div v-else>
|
</el-button>
|
||||||
<el-button
|
</div>
|
||||||
type="primary"
|
|
||||||
class="common-button-primary"
|
|
||||||
size="mini"
|
|
||||||
@click="fileUpload('GCWBLAWS')">
|
|
||||||
<i class="el-icon-upload el-icon--right"></i>
|
|
||||||
点击上传
|
|
||||||
</el-button>
|
|
||||||
</div>
|
</div>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
@@ -475,27 +454,20 @@
|
|||||||
v-model="form.GLWJLAWSName"
|
v-model="form.GLWJLAWSName"
|
||||||
clearable
|
clearable
|
||||||
></el-input>
|
></el-input>
|
||||||
<div v-if="GLWJLAWSFileList.length>0">
|
<div style="display: flex;justify-content: space-between">
|
||||||
|
<div style="width: 80%;">
|
||||||
<el-button
|
<div v-for="(item,index) in GLWJLAWSFileList" :key="index" @click="handleFilePreview(item)" style="color: #409eff;cursor:pointer" class="fileClass">{{ item.name }}</div>
|
||||||
type="primary"
|
</div>
|
||||||
class="common-button-primary"
|
<div style="width: 20%;">
|
||||||
size="mini"
|
<el-button
|
||||||
@click="fileUpload('GLWJLAWS')">
|
type="primary"
|
||||||
<i class="el-icon-upload el-icon--right"></i>
|
class="common-button-primary"
|
||||||
查看已上传文件
|
size="mini"
|
||||||
</el-button>
|
@click="fileUpload('GLWJLAWS')"
|
||||||
<!-- {{ form.glwjName }}-->
|
style="margin-left: 10px; margin-top: 11px; float: right;">
|
||||||
</div>
|
<i class="el-icon-upload el-icon--right"></i>
|
||||||
<div v-else>
|
</el-button>
|
||||||
<el-button
|
</div>
|
||||||
type="primary"
|
|
||||||
class="common-button-primary"
|
|
||||||
size="mini"
|
|
||||||
@click="fileUpload('GLWJLAWS')">
|
|
||||||
<i class="el-icon-upload el-icon--right"></i>
|
|
||||||
点击上传
|
|
||||||
</el-button>
|
|
||||||
</div>
|
</div>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<!-- <el-form-item label="相关流程" prop="xglc" class="add-form-item form-item-disabled">-->
|
<!-- <el-form-item label="相关流程" prop="xglc" class="add-form-item form-item-disabled">-->
|
||||||
@@ -827,17 +799,19 @@
|
|||||||
</el-formItem>
|
</el-formItem>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button
|
<el-button
|
||||||
icon="el-icon-search"
|
|
||||||
type="primary"
|
type="primary"
|
||||||
class="common-button-primary"
|
class="common-button-primary"
|
||||||
@click="handleSearchStandard"
|
size="mini"
|
||||||
round>
|
style="margin-left: 5px"
|
||||||
|
@click="handleSearchStandard">
|
||||||
|
查询
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button
|
<el-button
|
||||||
class="common-button-default"
|
class="common-button-default"
|
||||||
icon="el-icon-refresh-left"
|
size="mini"
|
||||||
@click="handleResetSearch"
|
@click="handleResetSearch">
|
||||||
round></el-button>
|
清空
|
||||||
|
</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
</div>
|
</div>
|
||||||
@@ -933,6 +907,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { onlyOfficeUrl } from '@/sysConfig'
|
||||||
import ProcessHeader from '../../components/ProcessHeader'
|
import ProcessHeader from '../../components/ProcessHeader'
|
||||||
import ProcessFooter from '../../components/ProcessFooter'
|
import ProcessFooter from '../../components/ProcessFooter'
|
||||||
import ProcessTitle from '../../components/ProcessTitle'
|
import ProcessTitle from '../../components/ProcessTitle'
|
||||||
@@ -1664,11 +1639,11 @@
|
|||||||
this.standardCheckedList = data
|
this.standardCheckedList = data
|
||||||
},
|
},
|
||||||
handleResetSearch() {
|
handleResetSearch() {
|
||||||
this.standardSearchForm.standType = 'INLAND'
|
// this.standardSearchForm.standType = 'INLAND'
|
||||||
this.standardSearchForm.standNumber = ''
|
this.standardSearchForm.lawsNumber = ''
|
||||||
this.standardSearchForm.standSort = ''
|
this.standardSearchForm.lawsName = ''
|
||||||
this.standardSearchForm.standName = ''
|
this.standardSearchForm.lawsEnName = ''
|
||||||
this.standardSearchForm.standEnName = ''
|
this.standardSearchForm.lawsTextState = ''
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
this.handleSearchStandard()
|
this.handleSearchStandard()
|
||||||
}, 100)
|
}, 100)
|
||||||
@@ -2022,6 +1997,34 @@
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
// 文件预览及下载
|
||||||
|
handleFilePreview(file) {
|
||||||
|
const attId = file.response.data.id
|
||||||
|
if (this.preview) {
|
||||||
|
if (attId) {
|
||||||
|
window.location.href = '/api/att/attFile/downloadFileForSar?fileId=' + attId
|
||||||
|
} else {
|
||||||
|
this.$message.warning('文件不存在,下载失败')
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this.getBusStandFileByAttId(attId)
|
||||||
|
.then(res => {
|
||||||
|
if(res){
|
||||||
|
const editFileInfo = res
|
||||||
|
if(editFileInfo.fileSuffix === 'pdg' || editFileInfo.fileSuffix === 'PDG'){
|
||||||
|
window.open('book://ssreader/e0?url='+editFileInfo.downLoadUrl)
|
||||||
|
}else {
|
||||||
|
const nowTime = new Date().getTime()
|
||||||
|
window.open(onlyOfficeUrl+'/onlyOffice?oldFileName=' + editFileInfo.oldFileName + '&fileType=' + editFileInfo.fileSuffix + '&attId=' + editFileInfo.id + '&fileUrl=' + editFileInfo.downLoadUrl + '&key=' + editFileInfo.id + nowTime+'&filePath='+editFileInfo.filePath+'&fileName='+editFileInfo.fileName)
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}).catch(e => {
|
||||||
|
console.log(e)
|
||||||
|
this.$message.warning('文件不存在,预览失败')
|
||||||
|
})
|
||||||
|
}
|
||||||
|
},
|
||||||
fileUpload (type) {
|
fileUpload (type) {
|
||||||
this.fileType = '';
|
this.fileType = '';
|
||||||
// this.fileMadel = true;//此句应在最后执行,否则会有先显示没变换的的文件列表,在显示变换了的文件列表
|
// this.fileMadel = true;//此句应在最后执行,否则会有先显示没变换的的文件列表,在显示变换了的文件列表
|
||||||
|
|||||||
@@ -69,7 +69,7 @@
|
|||||||
:data="dataList"
|
:data="dataList"
|
||||||
border
|
border
|
||||||
tooltip-effect="dark"
|
tooltip-effect="dark"
|
||||||
height="60%"
|
height="50%"
|
||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
@selection-change="selectStandChange"
|
@selection-change="selectStandChange"
|
||||||
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
|
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
|
||||||
@@ -109,18 +109,12 @@
|
|||||||
min-width="130"
|
min-width="130"
|
||||||
align="center"
|
align="center"
|
||||||
label="新车型实施日期">
|
label="新车型实施日期">
|
||||||
<template slot-scope="scope">
|
|
||||||
<span>{{ scope.row.XCXSSRQ ? $moment(scope.row.XCXSSRQ).format("YYYY-MM-DD") : "" }}</span>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="ZCCSSRQ"
|
prop="ZCCSSRQ"
|
||||||
min-width="130"
|
min-width="130"
|
||||||
align="center"
|
align="center"
|
||||||
label="在产车实施日期">
|
label="在产车实施日期">
|
||||||
<template slot-scope="scope">
|
|
||||||
<span>{{ scope.row.ZCCSSRQ ? $moment(scope.row.ZCCSSRQ).format("YYYY-MM-DD") : "" }}</span>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
@@ -128,9 +122,6 @@
|
|||||||
width="100px"
|
width="100px"
|
||||||
align="center"
|
align="center"
|
||||||
label="文本状态">
|
label="文本状态">
|
||||||
<template slot-scope="scope">
|
|
||||||
<span>{{ textStatusMap[scope.row.textStatus] }}</span>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
</div>
|
</div>
|
||||||
@@ -154,7 +145,7 @@
|
|||||||
<el-table
|
<el-table
|
||||||
height="100%"
|
height="100%"
|
||||||
ref="selection"
|
ref="selection"
|
||||||
:data="histortData"
|
:data="detailData"
|
||||||
tooltip-effect="dark"
|
tooltip-effect="dark"
|
||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
border
|
border
|
||||||
@@ -509,7 +500,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$message.success(res.message);
|
this.$message.success(res.message);
|
||||||
this.$router.push("/processCenter");
|
window.history.back()
|
||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -77,7 +77,7 @@
|
|||||||
<el-table
|
<el-table
|
||||||
height="100%"
|
height="100%"
|
||||||
ref="selection"
|
ref="selection"
|
||||||
:data="histortData"
|
:data="detailData"
|
||||||
tooltip-effect="dark"
|
tooltip-effect="dark"
|
||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
border
|
border
|
||||||
|
|||||||
@@ -77,7 +77,7 @@
|
|||||||
<el-table
|
<el-table
|
||||||
height="100%"
|
height="100%"
|
||||||
ref="selection"
|
ref="selection"
|
||||||
:data="histortData"
|
:data="detailData"
|
||||||
tooltip-effect="dark"
|
tooltip-effect="dark"
|
||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
border
|
border
|
||||||
|
|||||||
@@ -77,7 +77,7 @@
|
|||||||
<el-table
|
<el-table
|
||||||
height="100%"
|
height="100%"
|
||||||
ref="selection"
|
ref="selection"
|
||||||
:data="histortData"
|
:data="detailData"
|
||||||
tooltip-effect="dark"
|
tooltip-effect="dark"
|
||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
border
|
border
|
||||||
|
|||||||
@@ -211,26 +211,19 @@
|
|||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="xcxssrqgj"
|
prop="xcxssrq"
|
||||||
sortable
|
sortable
|
||||||
align="center"
|
align="center"
|
||||||
width="150"
|
width="150"
|
||||||
label="新车型实施日期">
|
label="新车型实施日期">
|
||||||
<template slot-scope="scope">
|
|
||||||
<span v-if="scope.row.xcxssrqgj">{{ scope.row.xcxssrqgj }}</span>
|
|
||||||
<span v-else-if="scope.row.putTime">{{ scope.row.putTime }}</span>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
prop="zccssrqgj"
|
prop="zccssrq"
|
||||||
sortable
|
sortable
|
||||||
align="center"
|
align="center"
|
||||||
width="150"
|
width="150"
|
||||||
label="在产车实施日期">
|
label="在产车实施日期">
|
||||||
<template slot-scope="scope">
|
|
||||||
<span>{{ scope.row.zccssrqgj }}</span>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
@@ -341,14 +334,14 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
prop="zccssrqgj"
|
prop="zccssrq"
|
||||||
sortable
|
sortable
|
||||||
width="210px"
|
width="210px"
|
||||||
align="center"
|
align="center"
|
||||||
label="在产车实施日期">
|
label="在产车实施日期">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="xcxssrqgj"
|
prop="xcxssrq"
|
||||||
sortable
|
sortable
|
||||||
align="center"
|
align="center"
|
||||||
width="210px"
|
width="210px"
|
||||||
@@ -464,17 +457,17 @@
|
|||||||
placeholder="选择日期">
|
placeholder="选择日期">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="在产车实施日期" prop="zccssrqgj">
|
<el-form-item label="在产车实施日期" prop="zccssrq">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
v-model.trim="editRowData.zccssrqgj"
|
v-model.trim="editRowData.zccssrq"
|
||||||
type="dates"
|
type="dates"
|
||||||
value-format="yyyy-MM-dd"
|
value-format="yyyy-MM-dd"
|
||||||
placeholder="选择日期">
|
placeholder="选择日期">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="新车型实施日期" prop="xcxssrqgj">
|
<el-form-item label="新车型实施日期" prop="xcxssrq">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
v-model.trim="editRowData.xcxssrqgj"
|
v-model.trim="editRowData.xcxssrq"
|
||||||
type="dates"
|
type="dates"
|
||||||
value-format="yyyy-MM-dd"
|
value-format="yyyy-MM-dd"
|
||||||
placeholder="选择日期">
|
placeholder="选择日期">
|
||||||
@@ -575,8 +568,8 @@ export default {
|
|||||||
typeApplicable: '',
|
typeApplicable: '',
|
||||||
nylx: '',
|
nylx: '',
|
||||||
ssrq: '',
|
ssrq: '',
|
||||||
zccssrqgj: '',
|
zccssrq: '',
|
||||||
xcxssrqgj: '',
|
xcxssrq: '',
|
||||||
zrbm: '',
|
zrbm: '',
|
||||||
sycpx: '',
|
sycpx: '',
|
||||||
cycvppsbm: '',
|
cycvppsbm: '',
|
||||||
@@ -1251,11 +1244,11 @@ export default {
|
|||||||
if (this.editRowData.ssrq !== null) {
|
if (this.editRowData.ssrq !== null) {
|
||||||
this.editRowData.ssrq = this.editRowData.ssrq.split(',')
|
this.editRowData.ssrq = this.editRowData.ssrq.split(',')
|
||||||
}
|
}
|
||||||
if (this.editRowData.zccssrqgj !== null) {
|
if (this.editRowData.zccssrq !== null) {
|
||||||
this.editRowData.zccssrqgj = this.editRowData.zccssrqgj.split(',')
|
this.editRowData.zccssrq = this.editRowData.zccssrq.split(',')
|
||||||
}
|
}
|
||||||
if (this.editRowData.xcxssrqgj !== null) {
|
if (this.editRowData.xcxssrq !== null) {
|
||||||
this.editRowData.xcxssrqgj = this.editRowData.xcxssrqgj.split(',')
|
this.editRowData.xcxssrq = this.editRowData.xcxssrq.split(',')
|
||||||
}
|
}
|
||||||
this.drawerEdit = true
|
this.drawerEdit = true
|
||||||
},
|
},
|
||||||
@@ -1263,8 +1256,8 @@ export default {
|
|||||||
cancelInfo() {
|
cancelInfo() {
|
||||||
let Item = JSON.parse(localStorage.getItem('obj'))
|
let Item = JSON.parse(localStorage.getItem('obj'))
|
||||||
this.editRowData.ssrq = Item.ssrq
|
this.editRowData.ssrq = Item.ssrq
|
||||||
this.editRowData.xcxssrqgj = Item.xcxssrqgj
|
this.editRowData.xcxssrq = Item.xcxssrq
|
||||||
this.editRowData.zccssrqgj = Item.zccssrqgj
|
this.editRowData.zccssrq = Item.zccssrq
|
||||||
this.drawerEdit = false
|
this.drawerEdit = false
|
||||||
},
|
},
|
||||||
// 抽屉提交按钮
|
// 抽屉提交按钮
|
||||||
@@ -1272,11 +1265,11 @@ export default {
|
|||||||
if (this.editRowData.ssrq !== null) {
|
if (this.editRowData.ssrq !== null) {
|
||||||
this.editRowData.ssrq = this.editRowData.ssrq.join(',')
|
this.editRowData.ssrq = this.editRowData.ssrq.join(',')
|
||||||
}
|
}
|
||||||
if (this.editRowData.xcxssrqgj !== null){
|
if (this.editRowData.xcxssrq !== null){
|
||||||
this.editRowData.xcxssrqgj = this.editRowData.xcxssrqgj.join(',')
|
this.editRowData.xcxssrq = this.editRowData.xcxssrq.join(',')
|
||||||
}
|
}
|
||||||
if (this.editRowData.zccssrqgj !== null){
|
if (this.editRowData.zccssrq !== null){
|
||||||
this.editRowData.zccssrqgj = this.editRowData.zccssrqgj.join(',')
|
this.editRowData.zccssrq = this.editRowData.zccssrq.join(',')
|
||||||
}
|
}
|
||||||
this.drawerEdit = false
|
this.drawerEdit = false
|
||||||
},
|
},
|
||||||
@@ -1351,15 +1344,15 @@ export default {
|
|||||||
} else {
|
} else {
|
||||||
rowlist1.push(this.sarAccessInfoList[i].ssrq)
|
rowlist1.push(this.sarAccessInfoList[i].ssrq)
|
||||||
}
|
}
|
||||||
if (this.sarAccessInfoList[i].xcxssrqgj === null || this.sarAccessInfoList[i].xcxssrqgj === undefined) {
|
if (this.sarAccessInfoList[i].xcxssrq === null || this.sarAccessInfoList[i].xcxssrq === undefined) {
|
||||||
rowlist3.push(this.sarAccessInfoList[i].xcxssrqgj = '-')
|
rowlist3.push(this.sarAccessInfoList[i].xcxssrq = '-')
|
||||||
} else {
|
} else {
|
||||||
rowlist3.push(this.sarAccessInfoList[i].xcxssrqgj)
|
rowlist3.push(this.sarAccessInfoList[i].xcxssrq)
|
||||||
}
|
}
|
||||||
if (this.sarAccessInfoList[i].zccssrqgj === null || this.sarAccessInfoList[i].zccssrqgj === undefined) {
|
if (this.sarAccessInfoList[i].zccssrq === null || this.sarAccessInfoList[i].zccssrq === undefined) {
|
||||||
rowlist2.push(this.sarAccessInfoList[i].zccssrqgj = '-')
|
rowlist2.push(this.sarAccessInfoList[i].zccssrq = '-')
|
||||||
} else {
|
} else {
|
||||||
rowlist2.push(this.sarAccessInfoList[i].zccssrqgj)
|
rowlist2.push(this.sarAccessInfoList[i].zccssrq)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
console.log(rowlist1)
|
console.log(rowlist1)
|
||||||
|
|||||||
@@ -369,7 +369,7 @@
|
|||||||
width="210px"
|
width="210px"
|
||||||
label="卡车VPPS中文名称">
|
label="卡车VPPS中文名称">
|
||||||
</el-table-column>-->
|
</el-table-column>-->
|
||||||
<el-table-column width="240" align="center" fixed="right" label="操作">
|
<el-table-column width="160" align="center" fixed="right" label="操作">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-button
|
<el-button
|
||||||
class="common-button-default"
|
class="common-button-default"
|
||||||
@@ -383,12 +383,12 @@
|
|||||||
size="small" @click="moveDown(scope.$index, scope.row)"
|
size="small" @click="moveDown(scope.$index, scope.row)"
|
||||||
v-if="!disabledFlag"
|
v-if="!disabledFlag"
|
||||||
>下移</el-button>
|
>下移</el-button>
|
||||||
<el-button
|
<!-- <el-button-->
|
||||||
size="small"
|
<!-- size="small"-->
|
||||||
@click="editTghisRow(scope.row)"
|
<!-- @click="editTghisRow(scope.row)"-->
|
||||||
class="common-button-default"
|
<!-- class="common-button-default"-->
|
||||||
type="warning"
|
<!-- type="warning"-->
|
||||||
>编辑</el-button>
|
<!-- >编辑</el-button>-->
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
|||||||
+8
-8
@@ -399,7 +399,7 @@
|
|||||||
align="center"
|
align="center"
|
||||||
label="适用产品线">
|
label="适用产品线">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column width="240" align="center" fixed="right" label="操作">
|
<el-table-column width="160" align="center" fixed="right" label="操作">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-button
|
<el-button
|
||||||
class="common-button-default"
|
class="common-button-default"
|
||||||
@@ -415,13 +415,13 @@
|
|||||||
v-if="!disabledFlag"
|
v-if="!disabledFlag"
|
||||||
>下移
|
>下移
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button
|
<!-- <el-button-->
|
||||||
size="small"
|
<!-- size="small"-->
|
||||||
@click="editTghisRow(scope.row)"
|
<!-- @click="editTghisRow(scope.row)"-->
|
||||||
class="common-button-default"
|
<!-- class="common-button-default"-->
|
||||||
type="warning"
|
<!-- type="warning"-->
|
||||||
>编辑
|
<!-- >编辑-->
|
||||||
</el-button>
|
<!-- </el-button>-->
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
|||||||
@@ -1498,7 +1498,7 @@
|
|||||||
<!-- 高级筛选-->
|
<!-- 高级筛选-->
|
||||||
<el-drawer
|
<el-drawer
|
||||||
title="高级搜索"
|
title="高级搜索"
|
||||||
size="700px"
|
size="710px"
|
||||||
:wrapperClosable="false"
|
:wrapperClosable="false"
|
||||||
:visible.sync="isAdvancedSearch">
|
:visible.sync="isAdvancedSearch">
|
||||||
<div class="demo-drawer-content">
|
<div class="demo-drawer-content">
|
||||||
@@ -1712,12 +1712,24 @@
|
|||||||
<!-- </el-form-item>-->
|
<!-- </el-form-item>-->
|
||||||
<!-- 责任工程师-->
|
<!-- 责任工程师-->
|
||||||
<template>
|
<template>
|
||||||
<custom-select-array
|
<el-form-item
|
||||||
:key="zrgcsOptions.options"
|
prop="ZRGCSUser"
|
||||||
:config="zrgcsOptions"
|
label-width="150px"
|
||||||
v-model="advanceSearchMapping['ZRGCS']"
|
class="add-form-item"
|
||||||
></custom-select-array>
|
>
|
||||||
|
<template slot="label">责任工程师</template>
|
||||||
|
<el-input v-model="advanceSearchMapping['ZRGCS']" placeholder="查询责任工程师"
|
||||||
|
@click.native="choiceZRRS('zrgcs', '查询责任工程师', advanceSearchMapping['ZRGCS'])">
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
</template>
|
</template>
|
||||||
|
<!-- <template>-->
|
||||||
|
<!-- <custom-select-array-->
|
||||||
|
<!-- :key="zrgcsOptions.options"-->
|
||||||
|
<!-- :config="zrgcsOptions"-->
|
||||||
|
<!-- v-model="advanceSearchMapping['ZRGCS']"-->
|
||||||
|
<!-- ></custom-select-array>-->
|
||||||
|
<!-- </template>-->
|
||||||
<!-- <el-form-item label="责任工程师" class="add-form-item form-item-disabled">-->
|
<!-- <el-form-item label="责任工程师" class="add-form-item form-item-disabled">-->
|
||||||
<!-- <el-select v-model="advanceSearchMapping.ZRGCS" placeholder="根据责任工程师查找" clearable filterable-->
|
<!-- <el-select v-model="advanceSearchMapping.ZRGCS" placeholder="根据责任工程师查找" clearable filterable-->
|
||||||
<!-- @keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">-->
|
<!-- @keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">-->
|
||||||
@@ -1791,12 +1803,29 @@
|
|||||||
<!-- </el-form-item>-->
|
<!-- </el-form-item>-->
|
||||||
<!-- 责任部门-->
|
<!-- 责任部门-->
|
||||||
<template>
|
<template>
|
||||||
<custom-select-array
|
<el-form-item
|
||||||
:key="zrbmOptions.options"
|
prop="ZRBM"
|
||||||
:config="zrbmOptions"
|
label-width="150px"
|
||||||
v-model="advanceSearchMapping['ZRBM']"
|
class="add-form-item"
|
||||||
></custom-select-array>
|
>
|
||||||
|
<template slot="label">责任部门</template>
|
||||||
|
<el-input
|
||||||
|
:key="zrbmOptions.options"
|
||||||
|
:config="zrbmOptions"
|
||||||
|
clearable
|
||||||
|
v-model="advanceSearchMapping['ZRBM']"
|
||||||
|
:disabled="formdisableflag" placeholder="查询责任部门"
|
||||||
|
@click.native="choiceZRBM('ZRBMId', '查询责任部门', advanceSearchMapping['ZRBM'])">
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
</template>
|
</template>
|
||||||
|
<!-- <template>-->
|
||||||
|
<!-- <custom-select-array-->
|
||||||
|
<!-- :key="zrbmOptions.options"-->
|
||||||
|
<!-- :config="zrbmOptions"-->
|
||||||
|
<!-- v-model="advanceSearchMapping['ZRBM']"-->
|
||||||
|
<!-- ></custom-select-array>-->
|
||||||
|
<!-- </template>-->
|
||||||
<!-- <el-form-item label="责任部门" class="add-form-item form-item-disabled">-->
|
<!-- <el-form-item label="责任部门" class="add-form-item form-item-disabled">-->
|
||||||
<!-- <el-select v-model="advanceSearchMapping.ZRBM" placeholder="根据责任部门查找" clearable filterable-->
|
<!-- <el-select v-model="advanceSearchMapping.ZRBM" placeholder="根据责任部门查找" clearable filterable-->
|
||||||
<!-- @keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">-->
|
<!-- @keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">-->
|
||||||
@@ -5521,7 +5550,7 @@ export default {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
choiceZRRS (type, title, id) {
|
choiceZRRS (type, title, id) {
|
||||||
console.log('2077',title)
|
console.log('2077',type, title, id)
|
||||||
this.nodeList = []
|
this.nodeList = []
|
||||||
this.nodeList.push(id)
|
this.nodeList.push(id)
|
||||||
this.userType = type
|
this.userType = type
|
||||||
@@ -5529,7 +5558,7 @@ export default {
|
|||||||
this.modalShowRoleFlag = true
|
this.modalShowRoleFlag = true
|
||||||
},
|
},
|
||||||
checkedRole2 (data) {
|
checkedRole2 (data) {
|
||||||
console.log('1712',this.drawerTitle)
|
console.log('1712',data)
|
||||||
let idList = ''
|
let idList = ''
|
||||||
let nameList = ''
|
let nameList = ''
|
||||||
data.forEach( item => {
|
data.forEach( item => {
|
||||||
@@ -5544,6 +5573,8 @@ export default {
|
|||||||
this.sarStandardsInfoEO['WSSMR'] = nameList
|
this.sarStandardsInfoEO['WSSMR'] = nameList
|
||||||
}else if (this.drawerTitle === '选择责任工程师'){
|
}else if (this.drawerTitle === '选择责任工程师'){
|
||||||
this.sarStandardsInfoEO['ZRGCS'] = nameList
|
this.sarStandardsInfoEO['ZRGCS'] = nameList
|
||||||
|
}else if (this.drawerTitle === '查询责任工程师'){
|
||||||
|
this.advanceSearchMapping['ZRGCS'] = nameList
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
@@ -5577,7 +5608,7 @@ export default {
|
|||||||
},
|
},
|
||||||
drawerCheckZRBM(data) {
|
drawerCheckZRBM(data) {
|
||||||
|
|
||||||
console.log("5389", data);
|
console.log("5389", this.drawerTitle);
|
||||||
let idList = ''
|
let idList = ''
|
||||||
let nameList = ''
|
let nameList = ''
|
||||||
data.forEach(item => {
|
data.forEach(item => {
|
||||||
@@ -5590,9 +5621,12 @@ export default {
|
|||||||
nameList += item.name
|
nameList += item.name
|
||||||
// }
|
// }
|
||||||
})
|
})
|
||||||
|
if (this.drawerTitle === '责任部门'){
|
||||||
this.sarStandardsInfoEO.ZRBMId = idList;
|
this.sarStandardsInfoEO.ZRBMId = idList;
|
||||||
this.sarStandardsInfoEO['ZRBM'] = nameList;
|
this.sarStandardsInfoEO['ZRBM'] = nameList;
|
||||||
|
}else if (this.drawerTitle === '查询责任部门'){
|
||||||
|
this.advanceSearchMapping['ZRBM'] = nameList
|
||||||
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
+139
-59
@@ -1139,29 +1139,52 @@
|
|||||||
<div class="prc-content-border">
|
<div class="prc-content-border">
|
||||||
<el-row :gutter="24">
|
<el-row :gutter="24">
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="起草部门" class="add-form-item form-item-disabled">
|
<el-form-item
|
||||||
<el-input v-model="sarBussionessSearch.QCDW" clearable placeholder="请输入起草部门"></el-input>
|
prop="QCDW"
|
||||||
<!-- <el-select v-model="sarBussionessSearch.QCDW" filterable clearable>-->
|
label-width="150px"
|
||||||
|
class="add-form-item"
|
||||||
|
>
|
||||||
|
<template slot="label">起草部门</template>
|
||||||
|
<el-input
|
||||||
|
:key="qcdwOptions.options"
|
||||||
|
:config="qcdwOptions"
|
||||||
|
clearable
|
||||||
|
v-model="sarBussionessSearch.QCDW"
|
||||||
|
:disabled="formdisableflag" placeholder="查询起草部门"
|
||||||
|
@click.native="choiceQCDW('QCDWId', '查询起草部门', sarBussionessSearch.QCDW)">
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<!-- <el-form-item label="起草部门" class="add-form-item form-item-disabled">-->
|
||||||
|
<!-- <el-input v-model="sarBussionessSearch.QCDW" clearable placeholder="请输入起草部门"></el-input>-->
|
||||||
|
<!--<!– <el-select v-model="sarBussionessSearch.QCDW" filterable clearable>–>-->
|
||||||
|
<!--<!– <el-option–>-->
|
||||||
|
<!--<!– v-for="item in qcdwOptions"–>-->
|
||||||
|
<!--<!– placeholder="请选择"–>-->
|
||||||
|
<!--<!– :key="item.value"–>-->
|
||||||
|
<!--<!– :value="item.value"–>-->
|
||||||
|
<!--<!– :label="item.label"–>-->
|
||||||
|
<!--<!– ></el-option>–>-->
|
||||||
|
<!--<!– </el-select>–>-->
|
||||||
|
<!-- </el-form-item>-->
|
||||||
|
<!-- 适用车型-->
|
||||||
|
<template>
|
||||||
|
<custom-select-array
|
||||||
|
:key="applyArcticOptions.options"
|
||||||
|
:config="applyArcticOptions"
|
||||||
|
v-model="sarBussionessSearch['SYCXCLASS']"
|
||||||
|
></custom-select-array>
|
||||||
|
</template>
|
||||||
|
<!-- <el-form-item label="适用车型" class="add-form-item form-item-disabled">-->
|
||||||
|
<!-- <el-select v-model="sarBussionessSearch.SYCXCLASS" filterable clearable>-->
|
||||||
<!-- <el-option-->
|
<!-- <el-option-->
|
||||||
<!-- v-for="item in qcdwOptions"-->
|
<!-- v-for="item in applyArcticOptions"-->
|
||||||
<!-- placeholder="请选择"-->
|
<!-- placeholder="请选择"-->
|
||||||
<!-- :key="item.value"-->
|
<!-- :key="item.value"-->
|
||||||
<!-- :value="item.value"-->
|
<!-- :value="item.value"-->
|
||||||
<!-- :label="item.label"-->
|
<!-- :label="item.label"-->
|
||||||
<!-- ></el-option>-->
|
<!-- ></el-option>-->
|
||||||
<!-- </el-select>-->
|
<!-- </el-select>-->
|
||||||
</el-form-item>
|
<!-- </el-form-item>-->
|
||||||
<el-form-item label="适用车型" class="add-form-item form-item-disabled">
|
|
||||||
<el-select v-model="sarBussionessSearch.SYCXCLASS" filterable clearable>
|
|
||||||
<el-option
|
|
||||||
v-for="item in applyArcticOptions"
|
|
||||||
placeholder="请选择"
|
|
||||||
:key="item.value"
|
|
||||||
:value="item.value"
|
|
||||||
:label="item.label"
|
|
||||||
></el-option>
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="体系类别" class="add-form-item form-item-disabled">
|
<el-form-item label="体系类别" class="add-form-item form-item-disabled">
|
||||||
<el-input v-model="sarBussionessSearch.TXLBBUSS" placeholder="选择体系类别" clearable @click.native="choiceZRR1('TXLBBUSS', '体系类别', sarBussionessStandEO.TXLBBUSS)"></el-input>
|
<el-input v-model="sarBussionessSearch.TXLBBUSS" placeholder="选择体系类别" clearable @click.native="choiceZRR1('TXLBBUSS', '体系类别', sarBussionessStandEO.TXLBBUSS)"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@@ -1170,40 +1193,66 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="起草人" class="add-form-item form-item-disabled">
|
<el-form-item
|
||||||
<el-input v-model="sarBussionessSearch.QCRBUSS" clearable placeholder="请输入起草人"></el-input>
|
prop="ZRGCSUser"
|
||||||
<!-- <el-select v-model="sarBussionessSearch.QCRBUSS" filterable clearable>-->
|
label-width="150px"
|
||||||
|
class="add-form-item"
|
||||||
|
>
|
||||||
|
<template slot="label">起草人</template>
|
||||||
|
<el-input v-model="sarBussionessSearch['QCRBUSS']" placeholder="查询起草人"
|
||||||
|
@click.native="choiceQCR('QCRBUSS', '查询起草人', sarBussionessSearch['QCRBUSS'])">
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<!-- <el-form-item label="起草人" class="add-form-item form-item-disabled">-->
|
||||||
|
<!-- <el-input v-model="sarBussionessSearch.QCRBUSS" clearable placeholder="请输入起草人"></el-input>-->
|
||||||
|
<!--<!– <el-select v-model="sarBussionessSearch.QCRBUSS" filterable clearable>–>-->
|
||||||
|
<!--<!– <el-option–>-->
|
||||||
|
<!--<!– v-for="item in qcrOptions"–>-->
|
||||||
|
<!--<!– placeholder="请选择"–>-->
|
||||||
|
<!--<!– :key="item.value"–>-->
|
||||||
|
<!--<!– :value="item.value"–>-->
|
||||||
|
<!--<!– :label="item.label"–>-->
|
||||||
|
<!--<!– ></el-option>–>-->
|
||||||
|
<!--<!– </el-select>–>-->
|
||||||
|
<!-- </el-form-item>-->
|
||||||
|
<!-- 能源类型-->
|
||||||
|
<template>
|
||||||
|
<custom-select-array
|
||||||
|
:key="categoryOptions.options"
|
||||||
|
:config="categoryOptions"
|
||||||
|
v-model="sarBussionessSearch['NYLXCLASS']"
|
||||||
|
></custom-select-array>
|
||||||
|
</template>
|
||||||
|
<!-- <el-form-item label="能源类型" class="add-form-item form-item-disabled">-->
|
||||||
|
<!-- <el-select v-model="sarBussionessSearch.NYLXCLASS" filterable clearable>-->
|
||||||
<!-- <el-option-->
|
<!-- <el-option-->
|
||||||
<!-- v-for="item in qcrOptions"-->
|
<!-- v-for="item in categoryOptions"-->
|
||||||
<!-- placeholder="请选择"-->
|
<!-- placeholder="请选择"-->
|
||||||
<!-- :key="item.value"-->
|
<!-- :key="item.value"-->
|
||||||
<!-- :value="item.value"-->
|
<!-- :value="item.value"-->
|
||||||
<!-- :label="item.label"-->
|
<!-- :label="item.label"-->
|
||||||
<!-- ></el-option>-->
|
<!-- ></el-option>-->
|
||||||
<!-- </el-select>-->
|
<!-- </el-select>-->
|
||||||
</el-form-item>
|
<!-- </el-form-item>-->
|
||||||
<el-form-item label="能源类型" class="add-form-item form-item-disabled">
|
<!-- 适用产品线(新增字段)-->
|
||||||
<el-select v-model="sarBussionessSearch.NYLXCLASS" filterable clearable>
|
<template>
|
||||||
<el-option
|
<custom-select-array
|
||||||
v-for="item in categoryOptions"
|
:key="sycpxOptions.options"
|
||||||
placeholder="请选择"
|
:config="sycpxOptions"
|
||||||
:key="item.value"
|
v-model="sarBussionessSearch['SYCPXCLASS']"
|
||||||
:value="item.value"
|
></custom-select-array>
|
||||||
:label="item.label"
|
</template>
|
||||||
></el-option>
|
<!-- <el-form-item label="适用产品线" title="适用产品线" class="add-form-item form-item-disabled">-->
|
||||||
</el-select>
|
<!-- <el-select v-model="sarBussionessSearch.SYCPXCLASS" filterable clearable>-->
|
||||||
</el-form-item>
|
<!-- <el-option-->
|
||||||
<el-form-item label="适用产品线" title="适用产品线" class="add-form-item form-item-disabled">
|
<!-- v-for="item in sycpxOptions"-->
|
||||||
<el-select v-model="sarBussionessSearch.SYCPXCLASS" filterable clearable>
|
<!-- placeholder="请选择"-->
|
||||||
<el-option
|
<!-- :key="item.value"-->
|
||||||
v-for="item in sycpxOptions"
|
<!-- :value="item.value"-->
|
||||||
placeholder="请选择"
|
<!-- :label="item.label"-->
|
||||||
:key="item.value"
|
<!-- ></el-option>-->
|
||||||
:value="item.value"
|
<!-- </el-select>-->
|
||||||
:label="item.label"
|
<!-- </el-form-item>-->
|
||||||
></el-option>
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="模块中文名称" title="模块中文名称" class="add-form-item form-item-disabled">
|
<el-form-item label="模块中文名称" title="模块中文名称" class="add-form-item form-item-disabled">
|
||||||
<el-input v-model="sarBussionessSearch.VPPSCNBUSS" placeholder="请输入模块中文名称" clearable></el-input>
|
<el-input v-model="sarBussionessSearch.VPPSCNBUSS" placeholder="请输入模块中文名称" clearable></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@@ -2047,29 +2096,53 @@ export default {
|
|||||||
stahndinfoList: [],
|
stahndinfoList: [],
|
||||||
tableFlag: '',
|
tableFlag: '',
|
||||||
// sycpxOptions: [], // 适用产品线
|
// sycpxOptions: [], // 适用产品线
|
||||||
syzrOptions: [], // 适用认证
|
syzrOptions: {
|
||||||
|
attrName: '适用认证',
|
||||||
|
options:[]
|
||||||
|
}, // 适用认证
|
||||||
// zrgcsOptions: [], // 责任工程师
|
// zrgcsOptions: [], // 责任工程师
|
||||||
|
|
||||||
countryOptions: [],
|
countryOptions: [],
|
||||||
regionOptions: [], // 区域
|
regionOptions: [], // 区域
|
||||||
standSortOptions: [], // 标准类别下拉框
|
standSortOptions: [], // 标准类别下拉框
|
||||||
standSystemOptions: [], // 标准体系下拉框
|
standSystemOptions: [], // 标准体系下拉框
|
||||||
sycpxOptions: [], // 适用产品线下拉框
|
sycpxOptions: {
|
||||||
|
attrName: '适用产品线',
|
||||||
|
options:[]
|
||||||
|
}, // 适用产品线下拉框
|
||||||
zrbmOptions: [], // 责任部门下拉框
|
zrbmOptions: [], // 责任部门下拉框
|
||||||
zrgcsOptions: [], // 责任工程师下拉框
|
zrgcsOptions: [], // 责任工程师下拉框
|
||||||
txlbOptions: [], // 体系类别下拉框
|
txlbOptions: [], // 体系类别下拉框
|
||||||
standSortConfigOptions: [], // 标准类别下拉框
|
standSortConfigOptions: [], // 标准类别下拉框
|
||||||
applyArcticOptions: [], // 适用车型下拉框
|
applyArcticOptions: {
|
||||||
|
attrName: '适用车型',
|
||||||
|
options:[]
|
||||||
|
}, // 适用车型下拉框
|
||||||
standStateOptions: [], // 标准状态下拉框
|
standStateOptions: [], // 标准状态下拉框
|
||||||
standNatureOptions: [], // 标准性质下拉框
|
standNatureOptions: [], // 标准性质下拉框
|
||||||
adoptExtentOptions: [], // 采标程度下拉框
|
adoptExtentOptions: [], // 采标程度下拉框
|
||||||
emergyKindOptions: [], // 能源种类下拉框
|
emergyKindOptions: {
|
||||||
applyAuthOptions: [], // 适用认证下拉框
|
attrName: '能源类型',
|
||||||
categoryOptions: [], // 所属类别下拉框
|
options:[]
|
||||||
|
}, // 能源种类下拉框
|
||||||
|
applyAuthOptions: {
|
||||||
|
attrName: '适用认证',
|
||||||
|
options:[]
|
||||||
|
}, // 适用认证下拉框
|
||||||
|
categoryOptions: {
|
||||||
|
attrName: '能源类型',
|
||||||
|
options:[]
|
||||||
|
}, // 所属类别下拉框
|
||||||
categoryConfigOptions: [], // 所属类别下拉框
|
categoryConfigOptions: [], // 所属类别下拉框
|
||||||
assemClassOptions: [], // 总成分类下拉框
|
assemClassOptions: [], // 总成分类下拉框
|
||||||
qcdwOptions:[],//起草单位下拉框
|
qcdwOptions:{
|
||||||
qcrOptions:[],//起草人下拉框
|
attrName: '起草单位',
|
||||||
|
options:[]
|
||||||
|
},//起草单位下拉框
|
||||||
|
qcrOptions:{
|
||||||
|
attrName: '起草人',
|
||||||
|
options:[]
|
||||||
|
},//起草人下拉框
|
||||||
cysdOptions:[], //我司参与深度下拉框
|
cysdOptions:[], //我司参与深度下拉框
|
||||||
nylxOptions:[],//能源类型下拉框
|
nylxOptions:[],//能源类型下拉框
|
||||||
syrzOptions:[],//适用认证下拉框
|
syrzOptions:[],//适用认证下拉框
|
||||||
@@ -3104,6 +3177,7 @@ export default {
|
|||||||
this.modalShowRoleFlag = true
|
this.modalShowRoleFlag = true
|
||||||
},
|
},
|
||||||
checkedRole2 (data) {
|
checkedRole2 (data) {
|
||||||
|
console.log('1712',data)
|
||||||
let idList = ''
|
let idList = ''
|
||||||
let nameList = ''
|
let nameList = ''
|
||||||
data.forEach( item => {
|
data.forEach( item => {
|
||||||
@@ -3114,6 +3188,9 @@ export default {
|
|||||||
idList += item.id
|
idList += item.id
|
||||||
nameList += item.name
|
nameList += item.name
|
||||||
})
|
})
|
||||||
|
if (this.drawerTitle === '查询起草人'){
|
||||||
|
this.sarBussionessSearch['QCRBUSS'] = nameList
|
||||||
|
}
|
||||||
this.$set(this.sarBussionessStandEO, 'QCRBUSS', nameList)
|
this.$set(this.sarBussionessStandEO, 'QCRBUSS', nameList)
|
||||||
if(this.sarBussionessStandEO.QCRBUSS){
|
if(this.sarBussionessStandEO.QCRBUSS){
|
||||||
this.$refs.sarBussionessStandForm.validateField('QCRBUSS')
|
this.$refs.sarBussionessStandForm.validateField('QCRBUSS')
|
||||||
@@ -3143,6 +3220,9 @@ export default {
|
|||||||
nameList += item.name
|
nameList += item.name
|
||||||
// }
|
// }
|
||||||
})
|
})
|
||||||
|
if (this.drawerTitle === '查询起草部门'){
|
||||||
|
this.sarBussionessSearch.QCDW = nameList
|
||||||
|
}
|
||||||
this.$set(this.sarBussionessStandEO, 'QCDWId', idList)
|
this.$set(this.sarBussionessStandEO, 'QCDWId', idList)
|
||||||
this.$set(this.sarBussionessStandEO, 'QCDW', nameList)
|
this.$set(this.sarBussionessStandEO, 'QCDW', nameList)
|
||||||
if(this.sarBussionessStandEO.QCRBUSS){
|
if(this.sarBussionessStandEO.QCRBUSS){
|
||||||
@@ -4500,17 +4580,17 @@ export default {
|
|||||||
this.standNatureOptions = res.data.SARPROPERTY // 标准性质
|
this.standNatureOptions = res.data.SARPROPERTY // 标准性质
|
||||||
this.standStateOptions = res.data.TEXTSTATUSBUSS // 文本状态
|
this.standStateOptions = res.data.TEXTSTATUSBUSS // 文本状态
|
||||||
this.standSystemOptions = res.data.TXLBBUSS // 标准体系
|
this.standSystemOptions = res.data.TXLBBUSS // 标准体系
|
||||||
this.applyArcticOptions = res.data.ENERGYTYPES // 适用车型
|
this.applyArcticOptions.options = res.data.ENERGYTYPES // 适用车型
|
||||||
this.categoryOptions = res.data.NYLXCLASS // 能源类型
|
this.categoryOptions.options = res.data.NYLXCLASS // 能源类型
|
||||||
this.applyAuthOptions = res.data.SYRZCLASS // 适用认证
|
this.applyAuthOptions.options = res.data.SYRZCLASS // 适用认证
|
||||||
this.cysdOptions = res.data.WSCYSD // 我司参与深度
|
this.cysdOptions = res.data.WSCYSD // 我司参与深度
|
||||||
this.zrgcsOptions = res.data.ZRGCSCLASS // 责任工程师
|
this.zrgcsOptions = res.data.ZRGCSCLASS // 责任工程师
|
||||||
this.txlbOptions = res.data.TXLBCLASS // 体系类别
|
this.txlbOptions = res.data.TXLBCLASS // 体系类别
|
||||||
this.qcdwOptions = res.data.QCDW // 起草单位
|
this.qcdwOptions.options = res.data.QCDW // 起草单位
|
||||||
this.qcrOptions = res.data.QCRBUSS // 起草人
|
this.qcrOptions.options = res.data.QCRBUSS // 起草人
|
||||||
this.nylxOptions = res.data.NYLXCLASS // 能源类型
|
this.nylxOptions.options = res.data.NYLXCLASS // 能源类型
|
||||||
this.syrzOptions = res.data.SYRZCLASS // 适用认证
|
this.syrzOptions.options = res.data.SYRZCLASS // 适用认证
|
||||||
this.sycpxOptions = res.data.SYCPXCLASS // 适用产品线
|
this.sycpxOptions.options = res.data.SYCPXCLASS // 适用产品线
|
||||||
this.zrgcsOptions = res.data.ZRGCSCLASS // 责任工程师
|
this.zrgcsOptions = res.data.ZRGCSCLASS // 责任工程师
|
||||||
this.zrbmOptions = res.data.ZRBMCLASS // 责任部门
|
this.zrbmOptions = res.data.ZRBMCLASS // 责任部门
|
||||||
this.gkglbmOptions=res.data.GKGLBM;//归口管理部门
|
this.gkglbmOptions=res.data.GKGLBM;//归口管理部门
|
||||||
|
|||||||
@@ -458,7 +458,7 @@
|
|||||||
<!-- 高级筛选-->
|
<!-- 高级筛选-->
|
||||||
<el-drawer
|
<el-drawer
|
||||||
title="高级搜索"
|
title="高级搜索"
|
||||||
size="700px"
|
size="710px"
|
||||||
:wrapperClosable="false"
|
:wrapperClosable="false"
|
||||||
:visible.sync="isAdvancedSearch">
|
:visible.sync="isAdvancedSearch">
|
||||||
<div class="demo-drawer-content">
|
<div class="demo-drawer-content">
|
||||||
@@ -659,12 +659,24 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
<!-- 责任工程师-->
|
<!-- 责任工程师-->
|
||||||
<template>
|
<template>
|
||||||
<custom-select-array
|
<el-form-item
|
||||||
:key="zrgcsOptions.options"
|
prop="ZRGCSUser"
|
||||||
:config="zrgcsOptions"
|
label-width="150px"
|
||||||
v-model="advanceSearchMapping['ZRGCS']"
|
class="add-form-item"
|
||||||
></custom-select-array>
|
>
|
||||||
|
<template slot="label">责任工程师</template>
|
||||||
|
<el-input v-model="advanceSearchMapping['ZRGCS']" placeholder="查询责任工程师"
|
||||||
|
@click.native="choiceZRRS('zrgcs', '查询责任工程师', advanceSearchMapping['ZRGCS'])">
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
</template>
|
</template>
|
||||||
|
<!-- <template>-->
|
||||||
|
<!-- <custom-select-array-->
|
||||||
|
<!-- :key="zrgcsOptions.options"-->
|
||||||
|
<!-- :config="zrgcsOptions"-->
|
||||||
|
<!-- v-model="advanceSearchMapping['ZRGCS']"-->
|
||||||
|
<!-- ></custom-select-array>-->
|
||||||
|
<!-- </template>-->
|
||||||
<!-- <el-form-item label="责任工程师" class="add-form-item form-item-disabled">-->
|
<!-- <el-form-item label="责任工程师" class="add-form-item form-item-disabled">-->
|
||||||
<!-- <el-select v-model="advanceSearchMapping.ZRGCS" placeholder="根据责任工程师查找" clearable filterable-->
|
<!-- <el-select v-model="advanceSearchMapping.ZRGCS" placeholder="根据责任工程师查找" clearable filterable-->
|
||||||
<!-- @keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">-->
|
<!-- @keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">-->
|
||||||
@@ -722,12 +734,29 @@
|
|||||||
<!-- </el-form-item>-->
|
<!-- </el-form-item>-->
|
||||||
<!-- 责任部门-->
|
<!-- 责任部门-->
|
||||||
<template>
|
<template>
|
||||||
<custom-select-array
|
<el-form-item
|
||||||
:key="zrbmOptions.options"
|
prop="ZRBM"
|
||||||
:config="zrbmOptions"
|
label-width="150px"
|
||||||
v-model="advanceSearchMapping['ZRBM']"
|
class="add-form-item"
|
||||||
></custom-select-array>
|
>
|
||||||
|
<template slot="label">责任部门</template>
|
||||||
|
<el-input
|
||||||
|
:key="zrbmOptions.options"
|
||||||
|
:config="zrbmOptions"
|
||||||
|
clearable
|
||||||
|
v-model="advanceSearchMapping['ZRBM']"
|
||||||
|
:disabled="formdisableflag" placeholder="查询责任部门"
|
||||||
|
@click.native="choiceZRBM('ZRBMId', '查询责任部门', advanceSearchMapping['ZRBM'])">
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
</template>
|
</template>
|
||||||
|
<!-- <template>-->
|
||||||
|
<!-- <custom-select-array-->
|
||||||
|
<!-- :key="zrbmOptions.options"-->
|
||||||
|
<!-- :config="zrbmOptions"-->
|
||||||
|
<!-- v-model="advanceSearchMapping['ZRBM']"-->
|
||||||
|
<!-- ></custom-select-array>-->
|
||||||
|
<!-- </template>-->
|
||||||
<!-- <el-form-item label="责任部门" class="add-form-item form-item-disabled">-->
|
<!-- <el-form-item label="责任部门" class="add-form-item form-item-disabled">-->
|
||||||
<!-- <el-select v-model="advanceSearchMapping.ZRBM" placeholder="根据责任部门查找" clearable filterable-->
|
<!-- <el-select v-model="advanceSearchMapping.ZRBM" placeholder="根据责任部门查找" clearable filterable-->
|
||||||
<!-- @keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">-->
|
<!-- @keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">-->
|
||||||
@@ -2574,6 +2603,8 @@ export default {
|
|||||||
this.sarStandardsInfoEO['WSSMR'] = nameList
|
this.sarStandardsInfoEO['WSSMR'] = nameList
|
||||||
}else if (this.drawerTitle === '选择责任工程师'){
|
}else if (this.drawerTitle === '选择责任工程师'){
|
||||||
this.sarStandardsInfoEO['ZRGCS'] = nameList
|
this.sarStandardsInfoEO['ZRGCS'] = nameList
|
||||||
|
}else if (this.drawerTitle === '查询责任工程师'){
|
||||||
|
this.advanceSearchMapping['ZRGCS'] = nameList
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
@@ -4981,8 +5012,12 @@ export default {
|
|||||||
nameList += item.name
|
nameList += item.name
|
||||||
// }
|
// }
|
||||||
})
|
})
|
||||||
this.sarStandardsInfoEO.ZRBMId = idList;
|
if (this.drawerTitle === '责任部门'){
|
||||||
this.sarStandardsInfoEO['ZRBM'] = nameList;
|
this.sarStandardsInfoEO.ZRBMId = idList;
|
||||||
|
this.sarStandardsInfoEO['ZRBM'] = nameList;
|
||||||
|
}else if (this.drawerTitle === '查询责任部门'){
|
||||||
|
this.advanceSearchMapping['ZRBM'] = nameList
|
||||||
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
|||||||
@@ -6,23 +6,27 @@
|
|||||||
<el-form :modal="nonConformitySearch" inline class="label-input-form">
|
<el-form :modal="nonConformitySearch" inline class="label-input-form">
|
||||||
<el-form-item label="标准号/标准名称" class="search-item">
|
<el-form-item label="标准号/标准名称" class="search-item">
|
||||||
<el-input v-model="nonConformitySearch.standSerialNumber"
|
<el-input v-model="nonConformitySearch.standSerialNumber"
|
||||||
placeholder="请输入"
|
placeholder="根据标准号/标准名称查询"
|
||||||
clearable
|
clearable
|
||||||
:maxlength="100"></el-input>
|
:maxlength="100"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="项目名称" class="search-item">
|
<el-form-item label="项目名称" class="search-item">
|
||||||
<el-input v-model="nonConformitySearch.productName"
|
<el-input v-model="nonConformitySearch.productName"
|
||||||
placeholder="请输入"
|
placeholder="根据项目名称查询"
|
||||||
clearable
|
clearable
|
||||||
:maxlength="100"></el-input>
|
:maxlength="100"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="责任部门" class="search-item">
|
<el-form-item label="责任部门" class="search-item">
|
||||||
<el-select v-model="nonConformitySearch.responsibleUnit" placeholder="根据责任部门查找" clearable>
|
<el-input v-model="nonConformitySearch.responsibleUnit"
|
||||||
<el-option v-for="opt in zrbmOptions" :value="opt.value === undefined ? '' :opt.value" :key="opt.value"
|
placeholder="根据责任部门查询"
|
||||||
:label="opt.label">
|
clearable
|
||||||
{{ opt.label }}
|
:maxlength="100"></el-input>
|
||||||
</el-option>
|
<!-- <el-select v-model="nonConformitySearch.responsibleUnit" placeholder="根据责任部门查找" clearable>-->
|
||||||
</el-select>
|
<!-- <el-option v-for="opt in zrbmOptions" :value="opt.value === undefined ? '' :opt.value" :key="opt.value"-->
|
||||||
|
<!-- :label="opt.label">-->
|
||||||
|
<!-- {{ opt.label }}-->
|
||||||
|
<!-- </el-option>-->
|
||||||
|
<!-- </el-select>-->
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item class="search-item btn-box">
|
<el-form-item class="search-item btn-box">
|
||||||
<el-button
|
<el-button
|
||||||
|
|||||||
Reference in New Issue
Block a user