田源
2023-08-29 7a1b2b8e10466b586dbc9cb899d04d49ad940af6
编码规则发布bug
已修改3个文件
5496 ■■■■ 文件已修改
Source/UBCS-WEB/src/views/code/code.vue 5441 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS-WEB/src/views/docking/info.vue 37 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS-WEB/src/views/docking/infoForm.vue 18 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS-WEB/src/views/code/code.vue
ÎļþÌ«´ó
Source/UBCS-WEB/src/views/docking/info.vue
@@ -121,6 +121,12 @@
          sortable: true,
          width: 150
        },{
          label: '分类选择',
          prop: 'classifyName',
          align:'center',
          // sortable: true,
          width: 150
        },{
          label: '编码类型',
          prop: 'isGroupCodeFlag',
          sortable: true,
@@ -155,23 +161,6 @@
          hide:true,
          sortable: true,
          width: 150
        }, {
          label: '接口函数',
          prop: 'interfaceFunction',
          sortable: true,
          align:'center',
          width: 150
        }, {
          label: '命名空间',
          prop: 'nameSpace',
          sortable: true,
          width: 150
        },{
          label: '分类选择',
          prop: 'classifyName',
          align:'center',
          // sortable: true,
          width: 150
        },{
          label: '接口方式',
          prop: 'interfaceType',
@@ -203,6 +192,12 @@
          prop: 'requestUrl',
          sortable: true,
          width: 150
        },  {
          label: '接口函数',
          prop: 'interfaceFunction',
          sortable: true,
          align:'center',
          width: 150
        }, {
            label: '参数名称',
            prop: 'targName',
@@ -225,6 +220,11 @@
            return this.returnTypeList[d.returnType]
          }
        }, {
          label: '命名空间',
          prop: 'nameSpace',
          sortable: true,
          width: 150
        },{
          label: '系统描述',
          prop: 'description',
          width: 150
@@ -255,7 +255,6 @@
    //单元格样式
    cellStyle(row,column,rowIndex,columnIndex){
      if(row.columnIndex==2) {
        console.log(row)
        if(row.row.usedFlag == 'false'){
          return {
            color: 'red',
@@ -319,6 +318,8 @@
      this.editAttribute.sysIntHeaderVOs = row.sysIntHeaderVOs || [];
      this.$refs.infoForm.formData = this.editAttribute;
      this.$refs.infoForm.showSubmitDialog = true;
      console.log('row',row.dataFlowTypeText)
      console.log('editAttribute',this.editAttribute.dataFlowTypeText)
    },
    deleteSave(row, index) {
      this.$confirm("删除数据将无法被恢复, æ˜¯å¦ç»§ç»­?", "提示", {
Source/UBCS-WEB/src/views/docking/infoForm.vue
@@ -85,8 +85,6 @@
            ></vciWebRefer>
          </el-form-item>
        </div>
        <el-form-item label="接口方式" prop="interfaceType">
          <el-select v-model="formData.interfaceType" clearable placeholder="请选择">
            <el-option v-for="item in interfaceTypeList" :key="item.value" :label="item.label" :value="item.value">
@@ -375,6 +373,13 @@
      }
    }
  },
  watch:{
    formData:{
      handler(newval,oldval){
        console.log('newval',newval.dataFlowTypeText)
      }
    }
  },
  created() {
    //this.geDictData('interfaceType', this.interfaceTypeList)
  },
@@ -418,10 +423,11 @@
      this.showSubmitDialog = false;
    },
    resetForm() {
      this.formData = {
        sysIntParamVOs: [],
        sysIntHeaderVOs: []
      };
      this.formData={}
      // this.formData = {
      //   sysIntParamVOs: [],
      //   sysIntHeaderVOs: []
      // };
      this.$refs.form.resetFields();
    },
    setReferValue(data) {