|
@@ -1,866 +0,0 @@
|
|
|
-<!-- Dialog.vue -->
|
|
|
-<template>
|
|
|
- <el-dialog :modal="true" :close-on-click-modal="false" :close-on-press-escape="false" :title="dialogTitle"
|
|
|
- :append-to-body="true" v-model="visible" width="80%" :before-close="handleClose">
|
|
|
- <div>
|
|
|
- <el-steps :active="activeValue" align-center>
|
|
|
- <el-step title="填写编目信息"></el-step>
|
|
|
- <el-step title="选择服务"></el-step>
|
|
|
- <el-step title="完善归集项"></el-step>
|
|
|
- </el-steps>
|
|
|
- </div>
|
|
|
- <div v-if="activeValue === 1" class="container">
|
|
|
- <div class="t-b">目录信息</div>
|
|
|
- <el-form inline :model="libraryData" label-width="auto" ref="firstRef" :disabled="isEdit"
|
|
|
- class="form-detail-inline" :rules="firstFormRules">
|
|
|
- <el-form-item label="数据目录代码" prop="catalogCode">
|
|
|
- <el-input v-model="libraryData.catalogCode" placeholder="提交后自动生成" disabled />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="目录名称" prop="catalogName">
|
|
|
- <el-input v-model="libraryData.catalogName" placeholder="请输入目录名称" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="目录英文名称" prop="catalogNameEn">
|
|
|
- <el-input v-model="libraryData.catalogNameEn" placeholder="请输入目录英文名称" />
|
|
|
- </el-form-item>
|
|
|
- <!-- 添加其他表单项... -->
|
|
|
- <div class="t-b">共享管理</div>
|
|
|
- <el-form-item label="共享方式" prop="shareMethod">
|
|
|
- <el-select v-model="libraryData.shareMethod" placeholder="请选择共享方式">
|
|
|
- <el-option v-for="item in dict.type.share_method" :key="item.value" :label="item.label"
|
|
|
- :value="item.value" />
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="共享范围" prop="shareRange">
|
|
|
- <el-select v-model="libraryData.shareRange" placeholder="请选择共享范围">
|
|
|
- <el-option v-for="item in dict.type.shared_scope" :key="item.value" :label="item.label"
|
|
|
- :value="item.value" />
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- <!-- 更多表单项 -->
|
|
|
- </el-form>
|
|
|
- </div>
|
|
|
- <div v-if="activeValue === 2" class="container">
|
|
|
- <div class="t-b">封装API选择</div>
|
|
|
- <div class="box">
|
|
|
- <el-form inline :model="libraryData" label-position="left" :disabled="isEdit">
|
|
|
- <el-form-item label="选择服务来源">
|
|
|
- <el-radio-group v-model="libraryData.apiSourceType" class="ml-4">
|
|
|
- <el-radio :label="item.value" :value="item.value" v-for="item in resourceArr"
|
|
|
- :key="item.label">{{ item.label }}</el-radio>
|
|
|
- </el-radio-group>
|
|
|
- </el-form-item>
|
|
|
- </el-form>
|
|
|
- </div>
|
|
|
- <div class="t-b">接口信息</div>
|
|
|
- <div class="box">
|
|
|
- <el-form class="other-form" inline :model="libraryData" label-position="left" :disabled="isEdit">
|
|
|
- <el-form-item label="接口地址">
|
|
|
- <el-input placeholder="请输入" v-model="libraryData.apiAddress"></el-input>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="接口名称">
|
|
|
- <el-input placeholder="请输入" v-model="libraryData.apiName"></el-input>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="请求方式">
|
|
|
- <el-select v-model="libraryData.method">
|
|
|
- <el-option :label="item.label" :value="item.value" v-for="item in method_type"
|
|
|
- :key="item.value"></el-option>
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- </el-form>
|
|
|
- </div>
|
|
|
- <!-- 请求参数表格 -->
|
|
|
- <div class="t-b">请求参数</div>
|
|
|
- <div class="box">
|
|
|
- <el-button type="primary" @click="addData1" :disabled="isEdit">新增</el-button>
|
|
|
- <el-table :data="data1" border style="width: 100%">
|
|
|
- <el-table-column type="selection" width="50" align="center" />
|
|
|
- <el-table-column prop="fieldName" label="参数信息" />
|
|
|
- <el-table-column prop="parameterDes" label="参数描述" />
|
|
|
- <el-table-column prop="fieldType" label="参数类型" />
|
|
|
- <el-table-column prop="isNeed" label="是否必填">
|
|
|
- <template slot-scope="{ row }">
|
|
|
- <el-switch v-model="row.isNeed" :disabled="isDisabled" active-text="是" inactive-text="否" />
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="explain" label="说明" />
|
|
|
- </el-table>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div v-if="activeValue === 3" class="container">
|
|
|
- <div class="t-b">目录信息</div>
|
|
|
- <p>编辑数据信息项</p>
|
|
|
- <el-form inline :model="libraryData" label-position="left" :disabled="isEdit">
|
|
|
- <el-form-item label="接入归集方式">
|
|
|
- <el-input v-model="libraryData.inputationMethod" placeholder="请输入数据目录代码" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="数据归集频率">
|
|
|
- <el-input v-model="libraryData.inputationSequence" placeholder="请输入数据目录代码" />
|
|
|
- </el-form-item>
|
|
|
- </el-form>
|
|
|
- </div>
|
|
|
- <div class="op-btn">
|
|
|
- <el-button type="primary" v-if="!isEdit" @click="handleSave('save')">暂存</el-button>
|
|
|
- <el-button type="primary" v-if="activeValue === 3 && !isEdit" @click="fangdouSaveClick">保存</el-button>
|
|
|
- <el-button v-if="activeValue !== 1" @click="changeActiveVal('up')">上一步</el-button>
|
|
|
- <el-button v-if="activeValue !== 3" @click="changeActiveVal('next')">下一步</el-button>
|
|
|
- <el-button @click="handleClose">取消</el-button>
|
|
|
- </div>
|
|
|
- </el-dialog>
|
|
|
-</template>
|
|
|
-
|
|
|
-<script>
|
|
|
-import { mapState, mapActions } from 'vuex';
|
|
|
-import { queryMisList, getDirectoryAllLevel, queryDirectoryList, queryDatabase, getEtlTableFields, getEtlTableList } from '@/api/unified-resources/information-system/index.js'
|
|
|
-import { queryGovernanceRuleByName } from '@/api/unified-resources/data-directory/index.js'
|
|
|
-import { getResponsibilityList } from '@/api/unified-resources/job-directory/index.js'
|
|
|
-import MainClassDialog from "../comp/MainClassDialog.vue";
|
|
|
-import SelectTagDialog from "../comp/SelectTagDialog.vue";
|
|
|
-import SelectDutyDialog from "../comp/SelectDutyDialog.vue";
|
|
|
-
|
|
|
-export default {
|
|
|
- name: "libraryTable",
|
|
|
- dicts: [
|
|
|
- 'share_method',
|
|
|
- 'shared_scope',
|
|
|
- 'shared_type',
|
|
|
- 'access_collection_method',
|
|
|
- 'data_collection_frequency',
|
|
|
- 'base_type',
|
|
|
- 'data_update_type',
|
|
|
- 'access_collection_caliber',
|
|
|
- 'datalayer_type'
|
|
|
- ],
|
|
|
- components: {
|
|
|
- MainClassDialog,
|
|
|
- SelectTagDialog,
|
|
|
- SelectDutyDialog,
|
|
|
- },
|
|
|
- props: {
|
|
|
- value: {
|
|
|
- type: Boolean,
|
|
|
- default: false,
|
|
|
- },
|
|
|
- title: {
|
|
|
- type: String,
|
|
|
- default: "弹窗标题",
|
|
|
- },
|
|
|
- currentOpObj: {
|
|
|
- type: Object,
|
|
|
- default: {},
|
|
|
- },
|
|
|
- width: {
|
|
|
- type: String,
|
|
|
- default: "85%",
|
|
|
- },
|
|
|
- isAddOperation: {
|
|
|
-
|
|
|
- }
|
|
|
- },
|
|
|
- data() {
|
|
|
- return {
|
|
|
- visible: this.value,
|
|
|
- dialogTitle: '',
|
|
|
- itemView: {},
|
|
|
-
|
|
|
- libraryData: {
|
|
|
- apiSourceType: 1,
|
|
|
- isSpace: 2,
|
|
|
- isOpen: 2,
|
|
|
- catalogType: '服务'
|
|
|
- },
|
|
|
- data1: {},
|
|
|
- isEdit: false,
|
|
|
- // catalogId: null,
|
|
|
- isAdding: false,
|
|
|
- optionName: '',
|
|
|
- isMainClassDialog: false,
|
|
|
- mainClassId: '',
|
|
|
- safetyLevelArr: [{ id: 1, levelName: '安全等级一级' }, { id: 2, levelName: '安全等级二级' }, { id: 3, levelName: '安全等级三级' }],
|
|
|
- allInformationSystemArr: [],
|
|
|
- informationSystemArr: [],
|
|
|
- provideUnitArr: [],
|
|
|
- departmentClassIdTypeArr: [],
|
|
|
- selectDutyId: '',
|
|
|
- tagSelectList: {},
|
|
|
- dutyIdTypeArr: [],
|
|
|
- mainClassIdOptions: [],
|
|
|
- isSelectTagDialog: false,
|
|
|
- isSelectDutyDialog: false,
|
|
|
- libraryData: {
|
|
|
- apiSourceType: 1,
|
|
|
- isSpace: 2,
|
|
|
- isOpen: 2,
|
|
|
- catalogType: '服务'
|
|
|
- },
|
|
|
- environmentOtherFormData: {
|
|
|
- env: ''
|
|
|
- },
|
|
|
- selectArr: [],
|
|
|
- options: [],
|
|
|
- data1: [
|
|
|
- ],
|
|
|
- nowSelectData: [],
|
|
|
- nowSelectRightData: [],
|
|
|
- activeValue: 1,
|
|
|
- tableData: [
|
|
|
- {
|
|
|
- id: 10001,
|
|
|
- name: '系统1',
|
|
|
- nickname: 'comId',
|
|
|
- role: 'VARCHAR2(2',
|
|
|
- sex: '主健',
|
|
|
- sex2: '是',
|
|
|
- num1: '是',
|
|
|
- age: '是',
|
|
|
- address: '是',
|
|
|
- date12: '是',
|
|
|
- date13: '是'
|
|
|
- }
|
|
|
- ],
|
|
|
- resourceArr: [
|
|
|
- { label: '转发API', value: 1 },
|
|
|
- { label: '查询API', value: 2 }
|
|
|
- ],
|
|
|
- isRadio: [
|
|
|
- { label: '是', value: 1 },
|
|
|
- { label: '否', value: 2 }
|
|
|
- ],
|
|
|
- isOpen: [
|
|
|
- { label: '开放', value: 1 },
|
|
|
- { label: '非开放', value: 2 }
|
|
|
- ],
|
|
|
-
|
|
|
- res1: '',
|
|
|
- firstFormRules:{
|
|
|
- catalogCode: [{ required: true, message: '请输入数据目录代码', trigger: 'blur' }],
|
|
|
- catalogName: [{ required: true, message: '请输入目录名称', trigger: 'blur' }],
|
|
|
- catalogNameEn: [{ required: true, message: '请输入目录英文名称', trigger: 'blur' }],
|
|
|
- provideUnit: [{ required: true, message: '请选择提供单位', trigger: 'change' }],
|
|
|
- informationSystem: [{ required: true, message: '请选择所属信息系统', trigger: 'change' }],
|
|
|
- catalogType: [{ required: true, message: '请输入目录类型', trigger: 'blur' }],
|
|
|
- updateSeq: [{ required: true, message: '请输入更新频率及增量描述', trigger: 'blur' }],
|
|
|
- isSpace: [{ required: true, message: '请选择是否为空间资源', trigger: 'change' }],
|
|
|
- coordinate: [{ required: true, message: '请输入源坐标系', trigger: 'blur' }],
|
|
|
- safetyLevel: [{ required: true, message: '请选择安全等级', trigger: 'change' }],
|
|
|
- shareMethod: [{ required: true, message: '请选择共享方式', trigger: 'change' }],
|
|
|
- shareRange: [{ required: true, message: '请选择共享范围', trigger: 'change' }],
|
|
|
- // shareType: [{ required: true, message: '请选择共享类型', trigger: 'change' }],
|
|
|
- // shareCondition: [{ required: true, message: '请输入共享条件', trigger: 'blur' }],
|
|
|
- // isOpen: [{ required: true, message: '请选择开放属性', trigger: 'change' }],
|
|
|
- openCondition: [{ required: true, message: '请输入开放条件', trigger: 'blur' }],
|
|
|
- isOpen: [{ required: true, message: '请选择是否硬件网络', trigger: 'change' }],
|
|
|
- mainClassId: [{ required: true, message: '请选择是否硬件网络', trigger: 'change' }],
|
|
|
- departmentClassId: [{ required: true, message: '请选择是否硬件网络', trigger: 'change' }],
|
|
|
- inputationMethod: [{ required: true, message: '请选择接入归集方式', trigger: 'change' }],
|
|
|
- baseType: [{ required: true, message: '请选择底座类型', trigger: 'change' }],
|
|
|
- updateType: [{ required: true, message: '请选择数据更新方式', trigger: 'change' }],
|
|
|
- inputationCron: [{ required: true, message: '请输入接入归集周期', trigger: 'blur' }],
|
|
|
- inputationCalibre: [{ required: true, message: '请选择接入归集口径', trigger: 'change' }],
|
|
|
- identificationField: [{ required: true, message: '请输入归集增量标识字段', trigger: 'blur' }],
|
|
|
- dutyId: [{ required: true, message: '请选择关联本机构职责目录', trigger: 'change' }]
|
|
|
-},
|
|
|
- };
|
|
|
- },
|
|
|
- watch: {
|
|
|
- value(newVal) {
|
|
|
- this.visible = newVal;
|
|
|
- },
|
|
|
- visible(newVal) {
|
|
|
- this.$emit("input", newVal);
|
|
|
- },
|
|
|
- title: {
|
|
|
- handler(newVal) {
|
|
|
- this.dialogTitle = newVal;
|
|
|
- },
|
|
|
- deep: true, // 深入监听
|
|
|
- immediate: true,
|
|
|
- },
|
|
|
- currentOpObj: {
|
|
|
- handler(newVal) {
|
|
|
- this.itemView = newVal;
|
|
|
- },
|
|
|
- deep: true, // 深入监听
|
|
|
- immediate: true,
|
|
|
- },
|
|
|
- },
|
|
|
-
|
|
|
- mounted() {
|
|
|
-
|
|
|
- if (this.isAddOperation === 'add' && sessionStorage.getItem('fw-form')) {
|
|
|
- this.libraryData = JSON.parse(sessionStorage.getItem('fw-form'));
|
|
|
- }
|
|
|
- this.libraryData.inputationMethod = '接口';
|
|
|
- this.getOrganizationalList();
|
|
|
- this.getTrees();
|
|
|
- this.getList();
|
|
|
- this.getSystemListData();
|
|
|
-
|
|
|
- if (this.isAddOperation !== 'add') {
|
|
|
- if (this.historyId) {
|
|
|
- this.getDirectoryList();
|
|
|
- this.getVerHistory();
|
|
|
- } else {
|
|
|
- this.getDirectoryList();
|
|
|
- this.getDetail();
|
|
|
- }
|
|
|
-
|
|
|
- if (this.isAddOperation === 'view') {
|
|
|
- this.isEdit = true;
|
|
|
- } else {
|
|
|
- this.isEdit = false;
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
- },
|
|
|
- computed: {
|
|
|
- ...mapState('projectManage', ['catalogId']), // 映射 Vuex 状态
|
|
|
- // isAddOperation() {
|
|
|
- // return this.$props.isAddOperation
|
|
|
- // }
|
|
|
- },
|
|
|
- methods: {
|
|
|
- // ...mapMutations(['updateCatalog']),
|
|
|
-
|
|
|
- onAddOption() {
|
|
|
- this.isAdding = true;
|
|
|
- },
|
|
|
-
|
|
|
- onConfirm() {
|
|
|
- if (this.optionName) {
|
|
|
- let pForm = {};
|
|
|
- pForm.directoryCode = this.createRandomId();
|
|
|
- pForm.directoryName = this.optionName;
|
|
|
- pForm.levelDirectory = this.libraryData.mainClassId;
|
|
|
- pForm.levelDirectoryName = this.libraryData.mainClassName;
|
|
|
- this.addDireccory(pForm).then(res => {
|
|
|
- if (+res.code === 200) {
|
|
|
- this.getDirectoryList(this.libraryData.mainClassId);
|
|
|
- }
|
|
|
- });
|
|
|
- this.clear();
|
|
|
- }
|
|
|
- },
|
|
|
-
|
|
|
- clear() {
|
|
|
- this.optionName = '';
|
|
|
- this.isAdding = false;
|
|
|
- },
|
|
|
-
|
|
|
- handelMainClassId() {
|
|
|
- this.mainClassId = this.libraryData.mainClassId;
|
|
|
- this.isMainClassDialog = true;
|
|
|
- },
|
|
|
-
|
|
|
- MainClassSaveHandle(value) {
|
|
|
- this.clear();
|
|
|
- this.libraryData.mainClassId = value.levelDirectory;
|
|
|
- this.libraryData.mainClassName = value.levelDirectoryName;
|
|
|
- this.libraryData.departmentClassId = '';
|
|
|
- this.getDirectoryList(value.levelDirectory);
|
|
|
- },
|
|
|
-
|
|
|
- getOrganizationalList() {
|
|
|
- getDirectoryAllLevel({ type: '组织机构' }).then(res => {
|
|
|
- if (+res.code === 200) {
|
|
|
- this.provideUnitArr = res.data === null ? [] : res.data[0].list;
|
|
|
- }
|
|
|
- });
|
|
|
- },
|
|
|
-
|
|
|
- getSystemListData() {
|
|
|
- queryMisList({ pageNumber: 1, pageSize: 999 }).then(res => {
|
|
|
- if (+res.code === 200) {
|
|
|
- this.informationSystemArr = res.data;
|
|
|
- }
|
|
|
- });
|
|
|
- },
|
|
|
-
|
|
|
- changeProvidedUnit(value) {
|
|
|
- this.libraryData.informationSystem = '';
|
|
|
- },
|
|
|
-
|
|
|
- addData1() {
|
|
|
- this.data1.push({});
|
|
|
- },
|
|
|
-
|
|
|
- handleMainClassIdChange(value) {
|
|
|
- this.libraryData.mainClassId = value[value.length - 1];
|
|
|
- this.libraryData.departmentClassId = '';
|
|
|
- this.getDirectoryList(this.libraryData.mainClassId);
|
|
|
- },
|
|
|
-
|
|
|
- getDirectoryList(val) {
|
|
|
- this.queryDirectoryList({ pageNumber: 1, pageSize: 99999, directoryTwoId: val }).then(res => {
|
|
|
- if (+res.code === 200) {
|
|
|
- this.departmentClassIdTypeArr = res.data;
|
|
|
- }
|
|
|
- });
|
|
|
- },
|
|
|
-
|
|
|
- inputationLabelSelected(obj) {
|
|
|
- this.libraryData.inputationLabel = obj.dynamicTags?.map(i => i.directoryName).join(',');
|
|
|
- this.libraryData.column1 = obj.dynamicTags;
|
|
|
- },
|
|
|
-
|
|
|
- dutyIdSelected(obj) {
|
|
|
- this.libraryData.dutyId = obj.id;
|
|
|
- },
|
|
|
-
|
|
|
- getList() {
|
|
|
- getResponsibilityList({
|
|
|
- pageNumber: 1,
|
|
|
- pageSize: 9999
|
|
|
- }).then(res => {
|
|
|
- if (+res.code === 200) {
|
|
|
- this.dutyIdTypeArr = res.data;
|
|
|
- }
|
|
|
- });
|
|
|
- },
|
|
|
-
|
|
|
- getTrees() {
|
|
|
- getDirectoryAllLevel({ type: '目录' }).then(res => {
|
|
|
- if (+res.code === 200) {
|
|
|
- this.mainClassIdOptions = res.data;
|
|
|
- }
|
|
|
- });
|
|
|
- },
|
|
|
-
|
|
|
- handelSelectTag() {
|
|
|
- this.isSelectTagDialog = true;
|
|
|
- this.$store.commit('setSelectTagList', this.libraryData.column1);
|
|
|
- },
|
|
|
-
|
|
|
- handelSelectDuty() {
|
|
|
- this.isSelectDutyDialog = true;
|
|
|
- this.$store.commit('setSelectDutyId', this.libraryData.dutyId);
|
|
|
- },
|
|
|
-
|
|
|
- handleClose() {
|
|
|
- if (this.props.isAddOperation === 'add') {
|
|
|
- if (Object.keys(this.libraryData).length > 5) {
|
|
|
- this.$confirm('表单尚未提交,是否暂存已修改的内容?', '提示', {
|
|
|
- confirmButtonText: '暂存',
|
|
|
- cancelButtonText: '取消',
|
|
|
- type: 'warning'
|
|
|
- }).then(() => {
|
|
|
- sessionStorage.setItem('fw-form', JSON.stringify(this.libraryData));
|
|
|
- this.$message({
|
|
|
- type: 'success',
|
|
|
- message: '暂存成功'
|
|
|
- });
|
|
|
- this.$emit('update:dialogVisible', false);
|
|
|
- }).catch(() => {
|
|
|
- this.$message({
|
|
|
- type: 'info',
|
|
|
- message: '取消成功'
|
|
|
- });
|
|
|
- this.libraryData = {};
|
|
|
- sessionStorage.removeItem('fw-form');
|
|
|
- this.$emit('update:dialogVisible', false);
|
|
|
- });
|
|
|
- } else {
|
|
|
- this.$emit('update:dialogVisible', false);
|
|
|
- }
|
|
|
- } else {
|
|
|
- this.$emit('update:dialogVisible', false);
|
|
|
- }
|
|
|
- },
|
|
|
-
|
|
|
- changeActiveVal(type) {
|
|
|
- if (type === 'up') {
|
|
|
- this.activeValue -= 1;
|
|
|
- } else {
|
|
|
- if (this.activeValue === 1) {
|
|
|
- this.libraryData.catalogCode = this.createRandomId();
|
|
|
-
|
|
|
- this.firstRef.validate((valid, fields) => {
|
|
|
- if (valid) {
|
|
|
- this.res1 = valid;
|
|
|
- this.activeValue += 1;
|
|
|
- this.queryDatabase({ pageNumber: 1, pageSize: 999 }).then(res => { });
|
|
|
- } else {
|
|
|
- this.$message.error('请完整输入表单项');
|
|
|
- return;
|
|
|
- }
|
|
|
- });
|
|
|
- } else if (this.activeValue === 2) {
|
|
|
- this.activeValue += 1;
|
|
|
- } else if (this.activeValue === 3) {
|
|
|
- this.activeValue += 1;
|
|
|
- }
|
|
|
- }
|
|
|
- },
|
|
|
- checkAll(val) {
|
|
|
- this.nowSelectData = val;
|
|
|
- },
|
|
|
-
|
|
|
- checkRightAll(val) {
|
|
|
- this.nowSelectRightData = val;
|
|
|
- },
|
|
|
-
|
|
|
- handleConcatArr(selectArr, nowSelectData) {
|
|
|
- let arr = [];
|
|
|
- arr = arr.concat(selectArr, nowSelectData);
|
|
|
- return arr;
|
|
|
- },
|
|
|
-
|
|
|
- handleRemoveTabList(isNeedArr, originalArr) {
|
|
|
- if (isNeedArr.length && originalArr.length) {
|
|
|
- for (let i = 0; i < isNeedArr.length; i++) {
|
|
|
- for (let k = 0; k < originalArr.length; k++) {
|
|
|
- if (isNeedArr[i]['name'] === originalArr[k]['name']) {
|
|
|
- originalArr.splice(k, 1);
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- },
|
|
|
-
|
|
|
- getDetail() {
|
|
|
- getCatalogDetail({ catalogId: this.catalogId }).then(res => {
|
|
|
- let catalog = res.data.catalog;
|
|
|
- let catalogDuty = res.data.catalogDuty;
|
|
|
- let catalogExtend = res.data.catalogExtend;
|
|
|
- let catalogApi = res.data.catalogApi;
|
|
|
- let newObj = {
|
|
|
- ...catalog,
|
|
|
- ...catalogDuty,
|
|
|
- ...catalogExtend,
|
|
|
- ...catalogApi
|
|
|
- };
|
|
|
- this.libraryData = newObj;
|
|
|
- this.catalogId = catalog.catalogId;
|
|
|
- this.libraryData.date = [catalogExtend.startTime, catalogExtend.endTime];
|
|
|
- this.libraryData.apiSourceType = Number(catalogApi.apiSourceType);
|
|
|
- this.libraryData.catalogType = '服务';
|
|
|
- this.libraryData.safetyLevel = +this.libraryData.safetyLevel;
|
|
|
- this.libraryData.provideUnit = this.libraryData.provideUnit.split(',');
|
|
|
- if (catalogApi.params) {
|
|
|
- this.data1 = JSON.parse(catalogApi.params);
|
|
|
- }
|
|
|
-
|
|
|
- if (this.libraryData.column1) {
|
|
|
- this.libraryData.column1 = JSON.parse(this.libraryData.column1);
|
|
|
- }
|
|
|
-
|
|
|
- if (newObj.params) {
|
|
|
- this.libraryData.params = JSON.parse(newObj.params);
|
|
|
- }
|
|
|
- if (newObj.body) {
|
|
|
- this.libraryData.body = JSON.parse(newObj.body);
|
|
|
- }
|
|
|
- if (newObj.apiExample) {
|
|
|
- this.libraryData.apiExample = JSON.parse(newObj.apiExample);
|
|
|
- }
|
|
|
-
|
|
|
- if (catalog?.catalogChange?.changeReason) {
|
|
|
- this.libraryData.changeReason = catalog.catalogChange.changeReason;
|
|
|
- }
|
|
|
- });
|
|
|
- },
|
|
|
-
|
|
|
- handleSave(type) {
|
|
|
- this.libraryData.column1 = JSON.stringify(this.libraryData.column1, null, '')
|
|
|
-
|
|
|
- let params = {
|
|
|
- catalog: {
|
|
|
- catalogCode: this.libraryData.catalogCode,
|
|
|
- catalogName: this.libraryData.catalogName,
|
|
|
- catalogNameEn: this.libraryData.catalogNameEn,
|
|
|
- provideUnit: this.libraryData.provideUnit.join(','),
|
|
|
- informationSystem: this.libraryData.informationSystem,
|
|
|
- catalogType: 2,
|
|
|
- updateSeq: this.libraryData.updateSeq,
|
|
|
- isSpace: this.libraryData.isSpace,
|
|
|
- coordinate: this.libraryData.coordinate,
|
|
|
- shareMethod: this.libraryData.shareMethod,
|
|
|
- shareRange: this.libraryData.shareRange,
|
|
|
- openCondition: this.libraryData.openCondition,
|
|
|
- mainClassId: this.libraryData.mainClassId,
|
|
|
- mainClassName: this.libraryData.mainClassName,
|
|
|
- departmentClassId: this.libraryData.departmentClassId,
|
|
|
- catalogStatus: this.libraryData.catalogStatus,
|
|
|
- safetyLevel: this.libraryData.safetyLevel,
|
|
|
- catalogDes: this.libraryData.catalogDes
|
|
|
- },
|
|
|
- catalogExtend: {
|
|
|
- inputationMethod: this.libraryData.inputationMethod,
|
|
|
- inputationSequence: this.libraryData.inputationSequence,
|
|
|
- catalogAbstract: this.libraryData.catalogAbstract,
|
|
|
- inputationLabel: this.libraryData.inputationLabel,
|
|
|
- column1: this.libraryData.column1,
|
|
|
- baseType: this.libraryData.baseType,
|
|
|
- updateType: this.libraryData.updateType,
|
|
|
- inputationCron: this.libraryData.inputationCron,
|
|
|
- inputationCalibre: this.libraryData.inputationCalibre,
|
|
|
- identificationField: this.libraryData.identificationField,
|
|
|
- dataSize: this.libraryData.dataSize,
|
|
|
- startTime: this.libraryData.date?.[0],
|
|
|
- endTime: this.libraryData.date?.[1]
|
|
|
- },
|
|
|
- catalogDuty: {
|
|
|
- dutyId: this.libraryData.dutyId
|
|
|
- },
|
|
|
- catalogApi: {
|
|
|
- apiAddress: this.libraryData.apiAddress,
|
|
|
- apiName: this.libraryData.apiName,
|
|
|
- method: this.libraryData.method,
|
|
|
- requestHeader: this.libraryData.requestHeader,
|
|
|
- responseHeader: this.libraryData.responseHeader,
|
|
|
- params: JSON.stringify(this.data1),
|
|
|
- body: JSON.stringify(this.libraryData.body),
|
|
|
- apiExample: JSON.stringify(this.libraryData.apiExample),
|
|
|
- apiSourceType: this.libraryData.apiSourceType
|
|
|
- },
|
|
|
- catalogChange: {
|
|
|
- changeReason: this.libraryData.changeReason
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if (type === 'save') {
|
|
|
- params.catalog.catalogStatus = 1
|
|
|
- } else {
|
|
|
- params.catalog.catalogStatus = 2
|
|
|
- }
|
|
|
-
|
|
|
- if (this.isAddOperation === 'change') {
|
|
|
- params.catalog.catalogId = this.catalogId
|
|
|
- params.catalogExtend.catalogId = this.catalogId
|
|
|
- params.catalogDuty.catalogId = this.catalogId
|
|
|
- params.catalogApi.catalogId = this.catalogId
|
|
|
- changeFeedbackList({ catalogDTO: params, queryType: 1, registerFlag: true, assertId: this.catalogId }).then(res => {
|
|
|
- if (+res.code === 200) {
|
|
|
- this.$emit('update:dialogVisible', false)
|
|
|
- this.$emit('saveHandle')
|
|
|
- this.$modal.msgSuccess('更新成功')
|
|
|
- this.$bus.emit('libraryTable', params)
|
|
|
- sessionStorage.removeItem('kb-form')
|
|
|
- }
|
|
|
- })
|
|
|
- } else {
|
|
|
- if (this.catalogId) {
|
|
|
- params.catalog.catalogId = this.catalogId
|
|
|
- params.catalogExtend.catalogId = this.catalogId
|
|
|
- params.catalogDuty.catalogId = this.catalogId
|
|
|
- params.catalogApi.catalogId = this.catalogId
|
|
|
- updateCatalog(params).then(res => {
|
|
|
- if (+res.code === 200) {
|
|
|
- this.$emit('update:dialogVisible', false)
|
|
|
- this.$modal.msgSuccess('更新成功')
|
|
|
- this.$bus.emit('libraryTable', params)
|
|
|
- sessionStorage.removeItem('fw-form')
|
|
|
- }
|
|
|
- })
|
|
|
- } else {
|
|
|
- saveCatalog(params).then(res => {
|
|
|
- if (+res.code === 200) {
|
|
|
- this.$emit('update:dialogVisible', false)
|
|
|
- this.$modal.msgSuccess('新增成功')
|
|
|
- this.$bus.emit('libraryTable', params)
|
|
|
- sessionStorage.removeItem('fw-form')
|
|
|
- }
|
|
|
- })
|
|
|
- }
|
|
|
- }
|
|
|
- },
|
|
|
-
|
|
|
- fangdouSaveClick() {
|
|
|
- this.$debounce(this.handleSave, 1000, {
|
|
|
- leading: true,
|
|
|
- trailing: false
|
|
|
- })()
|
|
|
- },
|
|
|
-
|
|
|
- handleSubmitSave() {
|
|
|
- this.handleSave('submit')
|
|
|
- },
|
|
|
-
|
|
|
- handleUpdateVisible(val) {
|
|
|
- this.visible = val;
|
|
|
- },
|
|
|
- beforeClose(done) {
|
|
|
- this.visible = false;
|
|
|
- this.$emit("before-close", done);
|
|
|
- },
|
|
|
- // 取消按钮处理方法
|
|
|
- handleCancel() {
|
|
|
- this.visible = false;
|
|
|
- this.$emit("cancel"); // 可以在父组件监听 'cancel' 事件
|
|
|
- },
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- // 确定按钮处理方法
|
|
|
- async handleConfirm() {
|
|
|
- if (this.title === "新增") {
|
|
|
- this.formData.code = this.createRandomId()
|
|
|
- }
|
|
|
- // this.$refs.myFormComponent.validateForm();
|
|
|
- await this.$refs.ruleFormRef.validate((valid, fields) => {
|
|
|
- if (valid) {
|
|
|
- // 校验通过,进行后续操作
|
|
|
- console.log("表单校验通过,进行后续操作");
|
|
|
- this.handleSave();
|
|
|
- } else {
|
|
|
- this.$message.error("请完整填写表单");
|
|
|
- console.log("表单校验失败");
|
|
|
- }
|
|
|
- })
|
|
|
-
|
|
|
- },
|
|
|
-
|
|
|
- handleSave() {
|
|
|
-
|
|
|
- let pForm = {}
|
|
|
- pForm = { ...this.formData }
|
|
|
- pForm.agenciesName = pForm.agenciesName ? pForm.agenciesName?.join(',') : ''
|
|
|
- if (this.title === "新增") {
|
|
|
- addResponsibility({ ...pForm }).then(res => {
|
|
|
- if (+res.code === 200) {
|
|
|
- this.$message.success(res.msg)
|
|
|
- this.$emit("confirm");
|
|
|
- this.handleCancel()
|
|
|
- }
|
|
|
- })
|
|
|
- } else {
|
|
|
- updateResponsibility({ id: this.itemView.id, ...pForm }).then(res => {
|
|
|
- if (+res.code === 200) {
|
|
|
- this.$message.success(res.msg)
|
|
|
- this.$emit("confirm");
|
|
|
- this.handleCancel()
|
|
|
- }
|
|
|
- })
|
|
|
- }
|
|
|
- },
|
|
|
- createRandomId() {
|
|
|
- let min = Math.pow(10, 14);
|
|
|
- let max = Math.pow(10, 15) - 1;
|
|
|
- return Math.floor(Math.random() * (max - min + 1)) + min;
|
|
|
- }
|
|
|
- },
|
|
|
-};
|
|
|
-</script>
|
|
|
-
|
|
|
-<style scoped lang="scss">
|
|
|
-.op-btn {
|
|
|
- text-align: center;
|
|
|
- margin-top: 15px;
|
|
|
-}
|
|
|
-
|
|
|
-.other-form {
|
|
|
- .el-form-item {
|
|
|
- width: 27%;
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-.two-form {
|
|
|
- .el-form-item {
|
|
|
- width: 43%;
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-.container {
|
|
|
- min-height: 60vh;
|
|
|
-}
|
|
|
-
|
|
|
-.rowForm {
|
|
|
- // justify-content: center;
|
|
|
-}
|
|
|
-
|
|
|
-.w100 {
|
|
|
- width: 100% !important;
|
|
|
-}
|
|
|
-
|
|
|
-.t-b {
|
|
|
- font-size: 18px;
|
|
|
- margin-bottom: 20px;
|
|
|
-}
|
|
|
-
|
|
|
-.box {
|
|
|
- margin-left: 50px;
|
|
|
-}
|
|
|
-
|
|
|
-.list {
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- margin-top: 20px;
|
|
|
-
|
|
|
- .table1 {
|
|
|
- width: 30%;
|
|
|
- margin: 20px;
|
|
|
- }
|
|
|
-
|
|
|
- table {
|
|
|
- width: 100%;
|
|
|
- border-collapse: collapse;
|
|
|
- font-size: 12px;
|
|
|
- color: #606266;
|
|
|
-
|
|
|
- td,
|
|
|
- thead {
|
|
|
- padding: 0 10px;
|
|
|
- width: 177px;
|
|
|
- height: 34px;
|
|
|
- line-height: 34px;
|
|
|
- border: 1px solid #e4e4e4;
|
|
|
- box-sizing: border-box;
|
|
|
- }
|
|
|
-
|
|
|
- thead {
|
|
|
- text-align: center;
|
|
|
- }
|
|
|
-
|
|
|
- .one-td {
|
|
|
- border-top: none;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .arrowList {
|
|
|
- td {
|
|
|
- border: 0 !important;
|
|
|
- text-align: center;
|
|
|
- }
|
|
|
-
|
|
|
- tbody {
|
|
|
- border: 0 !important;
|
|
|
- }
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-.flex-box {
|
|
|
- display: flex;
|
|
|
- width: 100%;
|
|
|
-
|
|
|
- .el-input {
|
|
|
- width: 100%;
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-.flex-box-btn {
|
|
|
- background-color: #3f8ffe !important;
|
|
|
- color: #fff !important;
|
|
|
- height: 38px !important;
|
|
|
-}
|
|
|
-
|
|
|
-.header-title {
|
|
|
- display: block;
|
|
|
- font-size: 16px;
|
|
|
- text-align: center;
|
|
|
- padding: 10px;
|
|
|
- border-bottom: 1px solid #ebeef5;
|
|
|
- margin-bottom: 10px;
|
|
|
-}
|
|
|
-
|
|
|
-.border-color {
|
|
|
- border: 1px solid #ebeef5;
|
|
|
-}
|
|
|
-
|
|
|
-.option-input {
|
|
|
- width: 100%;
|
|
|
- margin-bottom: 8px;
|
|
|
-}
|
|
|
-
|
|
|
-.select-txt {
|
|
|
- font-size: 30px !important;
|
|
|
-}
|
|
|
-</style>
|