Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
+3
-3
@@ -9,6 +9,7 @@
|
|||||||
<meta http-equiv="Cache-Control" content="no-cache, must-revalidate">
|
<meta http-equiv="Cache-Control" content="no-cache, must-revalidate">
|
||||||
<meta http-equiv="expires" content="0">
|
<meta http-equiv="expires" content="0">
|
||||||
<title>标准法规管理系统</title>
|
<title>标准法规管理系统</title>
|
||||||
|
<script src="static/polyfill/proxy.min.js"></script>
|
||||||
<style>
|
<style>
|
||||||
.logo {
|
.logo {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@@ -24,8 +25,8 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background: url("static/images/BG.png");
|
background: url("static/images/BG.png");
|
||||||
background-size: 100% 100%; //
|
background-size: 100% 100%;
|
||||||
background-repeat: no-repeat; //
|
background-repeat: no-repeat;
|
||||||
background-attachment: fixed;
|
background-attachment: fixed;
|
||||||
}
|
}
|
||||||
#headerId {margin:0;}
|
#headerId {margin:0;}
|
||||||
@@ -33,7 +34,6 @@
|
|||||||
.inner-header {height:65vh;width:100%;margin:0;padding:0;}
|
.inner-header {height:65vh;width:100%;margin:0;padding:0;}
|
||||||
.flex {display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;}
|
.flex {display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;}
|
||||||
</style>
|
</style>
|
||||||
<script src="static/polyfill/proxy.min.js"></script>
|
|
||||||
<!-- vconsole调试工具-->
|
<!-- vconsole调试工具-->
|
||||||
<!-- <script src="https://cdn.bootcss.com/vConsole/3.3.4/vconsole.min.js"></script>-->
|
<!-- <script src="https://cdn.bootcss.com/vConsole/3.3.4/vconsole.min.js"></script>-->
|
||||||
<!-- <script type="text/javascript">-->
|
<!-- <script type="text/javascript">-->
|
||||||
|
|||||||
@@ -19,7 +19,7 @@
|
|||||||
<el-button size="mini" @click="delSearch">清空</el-button>
|
<el-button size="mini" @click="delSearch">清空</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button size="mini" type="primary" @click="queBtn">提问</el-button>
|
<el-button v-if="activeName === 'myQue'" size="mini" type="primary" @click="queBtn">提问</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
<template style="width: 10%">
|
<template style="width: 10%">
|
||||||
<el-table
|
<el-table
|
||||||
:data="historyData"
|
:data="historyData"
|
||||||
height="250"
|
:height="tablePHeight"
|
||||||
border
|
border
|
||||||
:header-cell-style="{background: '#f8f8f9', color: '#515a6e'}"
|
:header-cell-style="{background: '#f8f8f9', color: '#515a6e'}"
|
||||||
style="width: 10%;float: left;margin-right: 20px;">
|
style="width: 10%;float: left;margin-right: 20px;">
|
||||||
@@ -32,7 +32,7 @@
|
|||||||
label="质量评价人"
|
label="质量评价人"
|
||||||
min-width="100%">
|
min-width="100%">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<div @click="ccc(scope.row)">{{scope.row.userName}}-{{scope.row.taskInfo}}</div>
|
<div @click="ccc(scope.row)" style="cursor: pointer">{{scope.row.userName}}-{{scope.row.taskInfo}}</div>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
|||||||
@@ -127,6 +127,7 @@ export default {
|
|||||||
type: '',
|
type: '',
|
||||||
commentText: '',
|
commentText: '',
|
||||||
qbfsForm: {},
|
qbfsForm: {},
|
||||||
|
LXDList:[],
|
||||||
isTransfer: false,
|
isTransfer: false,
|
||||||
isSubmit: false,
|
isSubmit: false,
|
||||||
saveLoading: false,
|
saveLoading: false,
|
||||||
@@ -220,13 +221,14 @@ export default {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
assemble(ids,names){
|
assemble(ids,names){
|
||||||
let list= new Array();
|
let list= [];
|
||||||
let idArray=ids.split(',');
|
if(ids && ids !== '' && names && names !== ''){
|
||||||
let nameArray=names.split(',');
|
let idArray=ids.split(',');
|
||||||
for(let i=0; i<idArray.length; i++){
|
let nameArray=names.split(',');
|
||||||
list.push({id:idArray[i],name:nameArray[i]});
|
for(let i=0; i<idArray.length; i++){
|
||||||
|
list.push({id:idArray[i],name:nameArray[i]});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return list;
|
return list;
|
||||||
},
|
},
|
||||||
handleTabs(name){
|
handleTabs(name){
|
||||||
|
|||||||
@@ -127,6 +127,7 @@ export default {
|
|||||||
type: '',
|
type: '',
|
||||||
commentText: '',
|
commentText: '',
|
||||||
qbfsForm: {},
|
qbfsForm: {},
|
||||||
|
LXDList:[],
|
||||||
isTransfer: false,
|
isTransfer: false,
|
||||||
isSubmit: false,
|
isSubmit: false,
|
||||||
saveLoading: false,
|
saveLoading: false,
|
||||||
@@ -219,6 +220,17 @@ export default {
|
|||||||
this.LXDList=this.assemble(this.qbfsForm.LXD,this.qbfsForm.LXDName);
|
this.LXDList=this.assemble(this.qbfsForm.LXD,this.qbfsForm.LXDName);
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
assemble(ids,names){
|
||||||
|
let list= [];
|
||||||
|
if(ids && ids !== '' && names && names !== ''){
|
||||||
|
let idArray=ids.split(',');
|
||||||
|
let nameArray=names.split(',');
|
||||||
|
for(let i=0; i<idArray.length; i++){
|
||||||
|
list.push({id:idArray[i],name:nameArray[i]});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return list;
|
||||||
|
},
|
||||||
handleTabs(name){
|
handleTabs(name){
|
||||||
this.active = name
|
this.active = name
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -127,6 +127,7 @@ export default {
|
|||||||
type: '',
|
type: '',
|
||||||
commentText: '',
|
commentText: '',
|
||||||
qbfsForm: {},
|
qbfsForm: {},
|
||||||
|
LXDList:[],
|
||||||
isTransfer: false,
|
isTransfer: false,
|
||||||
isSubmit: false,
|
isSubmit: false,
|
||||||
saveLoading: false,
|
saveLoading: false,
|
||||||
@@ -218,6 +219,17 @@ export default {
|
|||||||
this.LXDList=this.assemble(this.qbfsForm.LXD,this.qbfsForm.LXDName);
|
this.LXDList=this.assemble(this.qbfsForm.LXD,this.qbfsForm.LXDName);
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
assemble(ids,names){
|
||||||
|
let list= [];
|
||||||
|
if(ids && ids !== '' && names && names !== ''){
|
||||||
|
let idArray=ids.split(',');
|
||||||
|
let nameArray=names.split(',');
|
||||||
|
for(let i=0; i<idArray.length; i++){
|
||||||
|
list.push({id:idArray[i],name:nameArray[i]});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return list;
|
||||||
|
},
|
||||||
handleTabs(name){
|
handleTabs(name){
|
||||||
this.active = name
|
this.active = name
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -127,6 +127,7 @@ export default {
|
|||||||
type: '',
|
type: '',
|
||||||
commentText: '',
|
commentText: '',
|
||||||
qbfsForm: {},
|
qbfsForm: {},
|
||||||
|
LXDList:[],
|
||||||
isTransfer: false,
|
isTransfer: false,
|
||||||
isSubmit: false,
|
isSubmit: false,
|
||||||
saveLoading: false,
|
saveLoading: false,
|
||||||
@@ -218,6 +219,17 @@ export default {
|
|||||||
this.LXDList=this.assemble(this.qbfsForm.LXD,this.qbfsForm.LXDName);
|
this.LXDList=this.assemble(this.qbfsForm.LXD,this.qbfsForm.LXDName);
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
assemble(ids,names){
|
||||||
|
let list= [];
|
||||||
|
if(ids && ids !== '' && names && names !== ''){
|
||||||
|
let idArray=ids.split(',');
|
||||||
|
let nameArray=names.split(',');
|
||||||
|
for(let i=0; i<idArray.length; i++){
|
||||||
|
list.push({id:idArray[i],name:nameArray[i]});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return list;
|
||||||
|
},
|
||||||
handleTabs(name){
|
handleTabs(name){
|
||||||
this.active = name
|
this.active = name
|
||||||
},
|
},
|
||||||
@@ -267,7 +279,9 @@ export default {
|
|||||||
this.isSubmit = true
|
this.isSubmit = true
|
||||||
this.qbfsForm.bzfgbzFlag = '0'
|
this.qbfsForm.bzfgbzFlag = '0'
|
||||||
this.qbfsForm.planStatus = '未开始'
|
this.qbfsForm.planStatus = '未开始'
|
||||||
this.qbfsForm.area = this.qbfsForm.area.join(',')
|
if(this.qbfsForm.area && this.qbfsForm.length > 0){
|
||||||
|
this.qbfsForm.area = this.qbfsForm.area.join(',')
|
||||||
|
}
|
||||||
this.qbfsForm.commentText = this.commentText
|
this.qbfsForm.commentText = this.commentText
|
||||||
let json = JSON.stringify(this.qbfsForm);
|
let json = JSON.stringify(this.qbfsForm);
|
||||||
this.$http.post('lawss/activiti/completeTask', {
|
this.$http.post('lawss/activiti/completeTask', {
|
||||||
|
|||||||
+2
-2
@@ -1728,7 +1728,7 @@ export default {
|
|||||||
{value: 'buss1_2',label: '技术标准-修订'},
|
{value: 'buss1_2',label: '技术标准-修订'},
|
||||||
{value: 'buss2_1',label: '产品标准-制定'},
|
{value: 'buss2_1',label: '产品标准-制定'},
|
||||||
{value: 'buss2_2',label: '产品标准-修订'},
|
{value: 'buss2_2',label: '产品标准-修订'},
|
||||||
{value: 'buss2_3',label: '产品标准-修订'},
|
{value: 'buss2_3',label: '产品标准-修改'},
|
||||||
],
|
],
|
||||||
QCBFC: false, //C类标准展示备案日期
|
QCBFC: false, //C类标准展示备案日期
|
||||||
replaceLawsNumModel: false,
|
replaceLawsNumModel: false,
|
||||||
@@ -2425,7 +2425,7 @@ export default {
|
|||||||
nodeList3: [],
|
nodeList3: [],
|
||||||
nodeListZRBM: [],
|
nodeListZRBM: [],
|
||||||
modalshowflagZRBM: false,
|
modalshowflagZRBM: false,
|
||||||
addOrUPdateFlag: 1, // 新增:1, 修改:2
|
addOrUPdateFlag: 2, // 新增:1, 修改:2
|
||||||
modalshowflag: false,
|
modalshowflag: false,
|
||||||
standSubclassConfigOptions: [], // 企标细类下拉框-所有数据
|
standSubclassConfigOptions: [], // 企标细类下拉框-所有数据
|
||||||
collectBtn: false,
|
collectBtn: false,
|
||||||
|
|||||||
Reference in New Issue
Block a user