Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
秦嘉
2022-10-10 10:19:17 +08:00
4 changed files with 307 additions and 2 deletions
@@ -915,7 +915,7 @@
type="primary"
class="common-button-primary"
size="small"
@click="handleSearchStandard">
@click="handleStandardPageChange(1)">
查询
</el-button>
</el-form-item>
@@ -177,6 +177,9 @@
size="mini" @click="OCRAdd('2')"
v-btn-permission="'247cebaefa7cf1683092af160af11502'"><i class="iconfont">&#xe611;</i>编辑
</el-button>
<el-button class="common-button-default" v-btn-permission="'56b2eec13fe5b53916b8e2b9dacc6554'"
size="mini" @click="MobileStandard('2')"><i class="iconfont">&#xe611;</i>移动标准
</el-button>
<!-- <el-button class="common-button-default"-->
<!-- size="mini"-->
<!-- :loading="searching"-->
@@ -1414,6 +1417,32 @@
:data="standSystemOptions"
:defaultProps="defaultProps"
:nodeKey="nodeKey" @popoverHide="TpopoverHide" @popoverHideCancel="TpopoverHideCancel"></tree-select-new>
<!-- 移动标准 -->
<el-drawer title="移动标准" :visible.sync="mobileModal" size="500px" @close="mobileeCancel">
<div class="demo-drawer-content">
<el-tree
ref="menuTree"
node-key="id"
class="tree-line"
icon-class="icon-tree"
:indent="0"
show-checkbox
:check-strictly="true"
@check-change="handleCheckChange"
:props="props"
:data="treeList"
:default-expanded-keys="['1']"
highlight-current
:filter-node-method="filterNode">
</el-tree>
</div>
<div class="demo-drawer-footer">
<el-button size="mini" type="primary" class="common-button-primary" icon="el-icon-check"
@click="mobileStandardBt">提交
</el-button>
<el-button size="mini" class="common-button-default" icon="el-icon-close" @click="mobileeCancel">取消</el-button>
</div>
</el-drawer>
<!-- 导入失败-->
<el-dialog :visible.sync="importFailed" :close-on-click-modal="false" width="400px">
<p slot="title" style="color:#f60">
@@ -2917,6 +2946,7 @@ export default {
//
resType: '',
drawerModal: false, //
mobileModal: false, //
// start
//
personShareEO: {
@@ -3317,6 +3347,69 @@ export default {
this.productModal = false
this.closeDrawer()
},
//
handleCheckChange(item,checked,self){
if(checked){
this.editCheckd = item.id
this.$refs.menuTree.setCheckedKeys([item.id]);
// this.nodeClick(item)
}else{
if(this.editCheckd === item.id){
this.$refs.menuTree.setCheckedKeys([item.id]);
}
}
},
//
MobileStandard(){
let checkedObj = []
if(this.selectSarMenu.parentId == null || this.selectSarMenu.parentId === '' || this.selectSarMenu.parentId === undefined){
this.$message.error('请选择二级及以下目录')
}else if (this.selectedList < 1){
this.$message.error('请至少选择一条标准')
}else {
this.mobileModal = true
}
},
//
mobileeCancel() {
let checkedObj = []
this.$nextTick(() => {
this.$refs.menuTree.setCheckedKeys(checkedObj);
})
this.editCheckd = ''
this.mobileModal = false
},
//
mobileStandardBt(){
let checkedObj = []
let search = {}
// id
search.oldMenuId = this.selectSarMenu.id
search.menuId = this.editCheckd
search.idlist = []
for (let i = 0; i < this.selectedList.length; i++) {
search.idlist.push(this.selectedList[i])
}
if(search.menuId == '' || search.menuId == null || search.menuId == undefined){
this.$message.error('请至少选择一个节点')
}else{
this.$http.putData('lawss/sarStandMenu/moveStandInfo', search, {
_this: this
}, res => {
// this.$Message.success('!')
this.$nextTick(() => {
this.$refs.menuTree.setCheckedKeys(checkedObj);
})
this.editCheckd = ''
this.mobileModal = false
this.getDomesticStandardTable()
}, e => {
})
}
},
// /
saveProduct(name) {
this.$refs[name].validate((valid) => {
@@ -284,6 +284,9 @@
size="mini" @click="selectBuss()" style="float: right;margin-top: 11px;"
v-btn-permission="'76742566e1cf930f384ef78cecb86f61'"><i class="iconfont">&#xe606;</i>企标复审计划
</el-button>
<el-button class="common-button-default" v-btn-permission="'6d0daae8471f16d635bec1529801670a'"
size="mini" @click="MobileStandard('2')"><i class="iconfont">&#xe611;</i>移动标准
</el-button>
</div>
<!--表格-->
<div class="content">
@@ -489,6 +492,32 @@
@pageChange="pageChange" @pageSizeChange="pageSizeChange"></pagination>
<loading :loading="loading">数据获取中</loading>
</div>
<!-- 移动标准 -->
<el-drawer title="移动标准" :visible.sync="mobileModal" size="500px" @close="mobileeCancel">
<div class="demo-drawer-content">
<el-tree
ref="menuTree"
node-key="id"
class="tree-line"
icon-class="icon-tree"
:indent="0"
show-checkbox
:check-strictly="true"
@check-change="handleCheckChange"
:props="props"
:data="treeList1"
:default-expanded-keys="['1']"
highlight-current
:filter-node-method="filterNode">
</el-tree>
</div>
<div class="demo-drawer-footer">
<el-button size="mini" type="primary" class="common-button-primary" icon="el-icon-check"
@click="mobileStandardBt">提交
</el-button>
<el-button size="mini" class="common-button-default" icon="el-icon-close" @click="mobileeCancel">取消</el-button>
</div>
</el-drawer>
<!-- 新增、编辑模态窗 -->
<el-drawer :title="drawerTitle"
:visible.sync="modalshowflag"
@@ -1792,6 +1821,7 @@ export default {
nodeKeyModel: 'model',
defaultCheckedKeys: [],
productModal: false, // 模态框是否打开
mobileModal: false, // 移动标准
modalType: '',
productTitle: '', // 模态框标题
// 规范
@@ -1841,6 +1871,7 @@ export default {
},
filterText: '', // 企业标准库过滤
treeList: [],
treeList1: [],
standId: '',
visibleOrgTable: false,
visibleShare: false,
@@ -2971,6 +3002,19 @@ export default {
})
})
},
// 查询二级菜单
selectMenuListNew1() {
return new Promise((resolve, reject) => {
this.$http.get('sarResource/ts-resource/getListStandLimitData', {
sorDivide: 'BUSINESS_STAND',
userId: this.$store.getters.userInfo.userId
}, {
_this: this
}, res => {
this.treeList1 = res.data
})
})
},
selectMenuList() {
return new Promise((resolve, reject) => {
this.$http.get('sarResource/ts-resource/getListStandLimitData', {
@@ -3192,6 +3236,75 @@ export default {
}
})
},
//节点选中状态发生变化时的回调,当选中另一个后,当前的的节点状态变化也会触发这个事件
handleCheckChange(item,checked,self){
if(checked){
console.log(item)
this.editCheckd = item.id
this.NewTreeType = item.treeType
this.$refs.menuTree.setCheckedKeys([item.id]);
// this.nodeClick(item)
}else{
if(this.editCheckd === item.id){
this.$refs.menuTree.setCheckedKeys([item.id]);
}
}
},
//移动标准
MobileStandard(){
let checkedObj = []
if(this.selectSarMenu.parentId == null || this.selectSarMenu.parentId === '' || this.selectSarMenu.parentId === undefined){
this.$message.error('请选择二级及以下目录')
}else if (this.selectedList < 1){
this.$message.error('请至少选择一条标准')
}else {
this.selectMenuListNew1()
this.mobileModal = true
}
},
// 取消
mobileeCancel() {
let checkedObj = []
this.$nextTick(() => {
this.$refs.menuTree.setCheckedKeys(checkedObj);
})
this.editCheckd = ''
this.mobileModal = false
},
// 移动标准提交
mobileStandardBt(){
let checkedObj = []
let search = {}
// 取最外层目录id
search.oldMenuId = this.selectSarMenu.id
search.menuId = this.editCheckd
search.treeType = this.selectSarMenu.treeType
// search.oldTreeType = this.selectSarMenu.treeType
// search.NewTreeType = this.NewTreeType
search.idlist = []
for (let i = 0; i < this.selectedList.length; i++) {
search.idlist.push(this.selectedList[i])
}
if(search.menuId == '' || search.menuId == null || search.menuId == undefined){
this.$message.error('请至少选择一个节点')
}else{
this.$http.putData('lawss/sarBussStandMenu/moveStandInfo', search, {
_this: this
}, res => {
// this.$Message.success('取消配置成功!')
this.$nextTick(() => {
this.$refs.menuTree.setCheckedKeys(checkedObj);
})
this.editCheckd = ''
this.mobileModal = false
this.getBussionStandTable()
}, e => {
})
}
},
// 树点击
isTreeOk(checkedList) {
this.shareStandardSelect = []
@@ -4010,7 +4123,11 @@ export default {
if (nowstandinfo.firstPutTime != null && nowstandinfo.firstPutTime !== '') {
nowstandinfo.firstPutTime = this.$dateFormat(this.sarBussionessStandEO.firstPutTime, 'yyyy-MM-dd hh:mm:ss')
}
nowstandinfo.standCode = nowstandinfo.standSort+""+ nowstandinfo.standNumber + (nowstandinfo.standYear === '' ? '' : '-' + nowstandinfo.standYear)
if (nowstandinfo.standSort === 'Q/QCBFC'){
nowstandinfo.standCode = nowstandinfo.standSort + "" + nowstandinfo.standNumber + (nowstandinfo.standYear === '' ? '' : '-' + nowstandinfo.standYear)
}else{
nowstandinfo.standCode = nowstandinfo.standSort + " " + nowstandinfo.standNumber + (nowstandinfo.standYear === '' ? '' : '-' + nowstandinfo.standYear)
}
this.$http.postData('lawss/sarBussionessStand/updateSarBussionessStand', nowstandinfo, {
_this: this,
loading: 'isSubmit'
@@ -165,6 +165,9 @@
size="mini" @click="OCRAdd('2')"
v-btn-permission="'e8d690904ee1895dd0d17d9c794fbcd7'"><i class="iconfont">&#xe611;</i>编辑
</el-button>
<el-button class="common-button-default" v-btn-permission="'c596ecef95f5177ecde662acfc9dee02'"
size="mini" @click="MobileStandard('2')"><i class="iconfont">&#xe611;</i>移动标准
</el-button>
<!--&lt;!&ndash; <el-button class="common-button-default"
size="mini" :loading="searching"
@click="uploadImportModal(1)"
@@ -1720,6 +1723,32 @@
</el-button>
</div>
</el-drawer>
<!-- 移动标准 -->
<el-drawer title="移动标准" :visible.sync="mobileModal" size="500px" @close="mobileeCancel">
<div class="demo-drawer-content">
<el-tree
ref="menuTree"
node-key="id"
class="tree-line"
icon-class="icon-tree"
:indent="0"
show-checkbox
:check-strictly="true"
@check-change="handleCheckChange"
:props="props"
:data="treeList"
:default-expanded-keys="['1']"
highlight-current
:filter-node-method="filterNode">
</el-tree>
</div>
<div class="demo-drawer-footer">
<el-button size="mini" type="primary" class="common-button-primary" icon="el-icon-check"
@click="mobileStandardBt">提交
</el-button>
<el-button size="mini" class="common-button-default" icon="el-icon-close" @click="mobileeCancel">取消</el-button>
</div>
</el-drawer>
<!-- 组件树-->
<tree-select-new
width="500"
@@ -2002,6 +2031,7 @@ export default {
isCollapse: true,
sideClose: false, // 边栏收展状态
isAdvancedSearch: false, // 高级检索窗口是否打开
mobileModal: false, // 移动标准
replaceStandNumModel: false,
lawsExplainQuoteModel: false,
page: 1,
@@ -3919,6 +3949,71 @@ export default {
}
})
},
//节点选中状态发生变化时的回调,当选中另一个后,当前的的节点状态变化也会触发这个事件
handleCheckChange(item,checked,self){
if(checked){
this.editCheckd = item.id
this.$refs.menuTree.setCheckedKeys([item.id]);
// this.nodeClick(item)
}else{
if(this.editCheckd === item.id){
this.$refs.menuTree.setCheckedKeys([item.id]);
}
}
},
//移动标准
MobileStandard(){
let checkedObj = []
console.log(this.selectSarMenu.parentId)
if(this.selectSarMenu.parentId == null || this.selectSarMenu.parentId === '' || this.selectSarMenu.parentId === undefined){
this.$message.error('请选择二级及以下目录')
}else if (this.selectedList < 1){
this.$message.error('请至少选择一条标准')
}else {
this.mobileModal = true
}
},
// 取消
mobileeCancel() {
let checkedObj = []
this.$nextTick(() => {
this.$refs.menuTree.setCheckedKeys(checkedObj);
})
this.editCheckd = ''
this.mobileModal = false
},
// 移动标准提交
mobileStandardBt(){
let checkedObj = []
let search = {}
// 取最外层目录id
search.oldMenuId = this.selectSarMenu.id
search.menuId = this.editCheckd
search.idlist = []
for (let i = 0; i < this.selectedList.length; i++) {
search.idlist.push(this.selectedList[i])
}
console.log(search.menuId)
if(search.menuId == '' || search.menuId == null || search.menuId == undefined){
this.$message.error('请至少选择一个节点')
}else{
this.$http.putData('lawss/sarStandMenu/moveStandInfo', search, {
_this: this
}, res => {
// this.$Message.success('取消配置成功!')
this.$nextTick(() => {
this.$refs.menuTree.setCheckedKeys(checkedObj);
})
this.editCheckd = ''
this.mobileModal = false
this.getDomesticStandardTable()
}, e => {
})
}
},
// 表格排序
sortChange(sortObj) {