田源
2023-12-15 46b2cac34ac5f520e4d538ef108b6353d176779f
Source/UBCS-WEB/src/views/docking/infoForm.vue
@@ -31,6 +31,7 @@
        <div v-if="formData.dataFlowType=='push'">
          <el-form-item  label="分类选择" prop="classifyName">
            <vciWebRefer
              key="classifyName" data-key="classifyName"
              :referConfig="{
                  title: '分类选择',
                  showField: 'classifyName',
@@ -48,6 +49,7 @@
          </el-form-item>
          <el-form-item label="集成系统" prop="targetSystemName">
            <vciWebRefer
              key="targetSystemName" data-key="targetSystemName"
              :referConfig="{
                  title: '集成系统',
                  showField: 'targetSystemName',
@@ -69,6 +71,7 @@
<!--          </el-form-item>-->
          <el-form-item  label="分类选择" prop="classifyName" v-if="formData.pushType !='5' && formData.pushType !='6'">
            <vciWebRefer
              key="classifyName" data-key="classifyName"
              :referConfig="{
                  title: '分类选择',
                  showField: 'classifyName',
@@ -86,6 +89,7 @@
          </el-form-item>
          <el-form-item label="集成系统" prop="sourceSystemName">
            <vciWebRefer
              key="sourceSystemName" data-key="sourceSystemName"
              :referConfig="{
                  title: '集成系统',
                  showField: 'sourceSystemName',
@@ -203,7 +207,6 @@
      </el-form>
      <div slot="footer" class="dialog-footer">
        <el-button type="primary" @click="submitAttribute">确定</el-button>
        <el-button @click="cancelSubmit">取消</el-button>
      </div>
    </el-dialog>
@@ -230,6 +233,7 @@
  components: { vciWebRefer },
  data() {
    return {
      referUrl:'/api/ubcs-code/dockingManagement/gridDockingSystem',
      showSubmitDialog: false,
      //接口类型下拉
      interfaceTypeList: [{
@@ -394,7 +398,7 @@
  watch:{
    formData: {
      handler(newval, oldval) {
        console.log(newval)
        // console.log(newval)
        if (newval && newval.type === 'edit') {
          if (this.formData.dataFlowType == 'accept') {
            this.pushTypeList = [
@@ -545,7 +549,7 @@
      })
      this.$nextTick(function (){
        if(pass){
          that.formData.sysIntParamDTOs=this.formData.sysIntParamVOs.map(item=>{
          that.formData.sysIntParamDTOS=this.formData.sysIntParamVOs.map(item=>{
            return {
              ...item,
              ordernNo:item.$index
@@ -559,7 +563,7 @@
          })
          const apiCall = that.formData.type == 'edit' ? edit : add;
          const Message = that.formData.type == 'edit' ? "修改成功" : "保存成功";
          console.log( that.formData)
          // console.log( that.formData)
          apiCall(that.formData).then(res => {
            that.$message.success(Message);
            that.showSubmitDialog = false;