BUG修改

This commit is contained in:
a0049873 2022-12-01 14:41:32 +08:00
parent ae9fe6c8c2
commit c07f9bdc4c
3 changed files with 21 additions and 15 deletions

View File

@ -1,8 +1,8 @@
<!-- <!--
* @Author: hisense.fanchunxiang * @Author: hisense.fanchunxiang
* @Date: 2021-08-24 10:28:49 * @Date: 2021-08-24 10:28:49
* @LastEditors: hisense.fanchunxiang * @LastEditors: Light
* @LastEditTime: 2021-10-14 17:10:05 * @LastEditTime: 2022-12-01 14:32:43
* @Description: 企业数据 企业卡片 * @Description: 企业数据 企业卡片
--> -->
<template> <template>
@ -393,7 +393,7 @@ export default {
this.oldId = item.id this.oldId = item.id
} }
}) })
this.$message.success('删除企业成功!') this.$message.success('删除编目成功!')
// 退 // 退
this.initTopicCardList() this.initTopicCardList()
this.isRemoveCard = !this.isRemoveCard this.isRemoveCard = !this.isRemoveCard
@ -401,8 +401,8 @@ export default {
this.topicCoverZIndex = this.isEditGroupName ? -999 : 1000 this.topicCoverZIndex = this.isEditGroupName ? -999 : 1000
}) })
.catch((e) => { .catch((e) => {
console.log('删除企业失败!%o', e) console.log('删除编目失败!%o', e)
this.$message.error('删除企业失败!') this.$message.error('删除编目失败!')
}) })
}) })
}, },

View File

@ -12,7 +12,7 @@
<ren-select v-model="dataForm.gender" dict-type="gender" :placeholder="$t('user.gender')"></ren-select> <ren-select v-model="dataForm.gender" dict-type="gender" :placeholder="$t('user.gender')"></ren-select>
</el-form-item> --> </el-form-item> -->
<el-form-item label="所属部门"> <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 :label="data.name" v-for="data in deptList" :key="data.id" :value="data.id">{{ data.name
}}</el-option> }}</el-option>
</el-select> </el-select>
@ -105,8 +105,8 @@ export default {
mixins: [mixinViewModule], mixins: [mixinViewModule],
data () { data () {
return { return {
// //
checkVisible:false, checkVisible: false,
mixinViewModuleOptions: { mixinViewModuleOptions: {
getDataListURL: '/sys/user/page', getDataListURL: '/sys/user/page',
getDataListIsPage: true, getDataListIsPage: true,
@ -131,14 +131,14 @@ export default {
this.getDeptList() this.getDeptList()
}, },
methods: { methods: {
check(){ check () {
this.checkVisible=true this.checkVisible = true
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.check.init() this.$refs.check.init()
}) })
}, },
refreshCheck(val){ refreshCheck (val) {
this.checkVisible=val this.checkVisible = val
}, },
reset () { reset () {
this.dataForm.username = '' this.dataForm.username = ''

View File

@ -1,8 +1,8 @@
<!-- <!--
* @Author: hisense.liangjunhua * @Author: hisense.liangjunhua
* @Date: 2022-07-12 09:42:44 * @Date: 2022-07-12 09:42:44
* @LastEditors: hisense.liangjunhua * @LastEditors: Light
* @LastEditTime: 2022-08-02 15:48:15 * @LastEditTime: 2022-12-01 14:02:17
* @Description:我的申请 能力申请 查看详情 * @Description:我的申请 能力申请 查看详情
--> -->
<template> <template>
@ -51,6 +51,12 @@
refObj: { type: Object, default: null }, refObj: { type: Object, default: null },
}) })
console.log(props.refObj, '=====================================') 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 = () => { const endThis = () => {
endProcess({ instanceId: props.refObj.processInstanceId }).then((res) => { endProcess({ instanceId: props.refObj.processInstanceId }).then((res) => {
if (res.data.code == 0) { if (res.data.code == 0) {