BUG修改
This commit is contained in:
parent
ae9fe6c8c2
commit
c07f9bdc4c
|
@ -1,8 +1,8 @@
|
|||
<!--
|
||||
* @Author: hisense.fanchunxiang
|
||||
* @Date: 2021-08-24 10:28:49
|
||||
* @LastEditors: hisense.fanchunxiang
|
||||
* @LastEditTime: 2021-10-14 17:10:05
|
||||
* @LastEditors: Light
|
||||
* @LastEditTime: 2022-12-01 14:32:43
|
||||
* @Description: 企业数据 企业卡片
|
||||
-->
|
||||
<template>
|
||||
|
@ -393,7 +393,7 @@ export default {
|
|||
this.oldId = item.id
|
||||
}
|
||||
})
|
||||
this.$message.success('删除企业成功!')
|
||||
this.$message.success('删除编目成功!')
|
||||
// 删除完退出编辑模式
|
||||
this.initTopicCardList()
|
||||
this.isRemoveCard = !this.isRemoveCard
|
||||
|
@ -401,8 +401,8 @@ export default {
|
|||
this.topicCoverZIndex = this.isEditGroupName ? -999 : 1000
|
||||
})
|
||||
.catch((e) => {
|
||||
console.log('删除企业失败!%o', e)
|
||||
this.$message.error('删除企业失败!')
|
||||
console.log('删除编目失败!%o', e)
|
||||
this.$message.error('删除编目失败!')
|
||||
})
|
||||
})
|
||||
},
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
<ren-select v-model="dataForm.gender" dict-type="gender" :placeholder="$t('user.gender')"></ren-select>
|
||||
</el-form-item> -->
|
||||
<el-form-item label="所属部门">
|
||||
<el-select v-model="dataForm.deptId" :placeholder="$t('infrastructure.department')" clearable>
|
||||
<el-select v-model="dataForm.deptId" :placeholder="$t('infrastructure.department')" clearable filterable >
|
||||
<el-option :label="data.name" v-for="data in deptList" :key="data.id" :value="data.id">{{ data.name
|
||||
}}</el-option>
|
||||
</el-select>
|
||||
|
@ -105,8 +105,8 @@ export default {
|
|||
mixins: [mixinViewModule],
|
||||
data () {
|
||||
return {
|
||||
//审核权限配置检查
|
||||
checkVisible:false,
|
||||
// 审核权限配置检查
|
||||
checkVisible: false,
|
||||
mixinViewModuleOptions: {
|
||||
getDataListURL: '/sys/user/page',
|
||||
getDataListIsPage: true,
|
||||
|
@ -131,14 +131,14 @@ export default {
|
|||
this.getDeptList()
|
||||
},
|
||||
methods: {
|
||||
check(){
|
||||
this.checkVisible=true
|
||||
this.$nextTick(() => {
|
||||
check () {
|
||||
this.checkVisible = true
|
||||
this.$nextTick(() => {
|
||||
this.$refs.check.init()
|
||||
})
|
||||
},
|
||||
refreshCheck(val){
|
||||
this.checkVisible=val
|
||||
refreshCheck (val) {
|
||||
this.checkVisible = val
|
||||
},
|
||||
reset () {
|
||||
this.dataForm.username = ''
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<!--
|
||||
* @Author: hisense.liangjunhua
|
||||
* @Date: 2022-07-12 09:42:44
|
||||
* @LastEditors: hisense.liangjunhua
|
||||
* @LastEditTime: 2022-08-02 15:48:15
|
||||
* @LastEditors: Light
|
||||
* @LastEditTime: 2022-12-01 14:02:17
|
||||
* @Description:我的申请 能力申请 查看详情
|
||||
-->
|
||||
<template>
|
||||
|
@ -51,6 +51,12 @@
|
|||
refObj: { type: Object, default: null },
|
||||
})
|
||||
console.log(props.refObj, '=====================================')
|
||||
const arr = ['算法优势', '应用场景', '计费标准信息', '常见问题', '功能介绍']
|
||||
if (props.refObj.dto.infoList) {
|
||||
props.refObj.dto.infoList = props.refObj.dto.infoList.filter(
|
||||
(val) => arr.indexOf(val.attrType) == -1
|
||||
)
|
||||
}
|
||||
const endThis = () => {
|
||||
endProcess({ instanceId: props.refObj.processInstanceId }).then((res) => {
|
||||
if (res.data.code == 0) {
|
||||
|
|
Loading…
Reference in New Issue