lyh
2025-06-06 0a04525d58093de7581950ae9a07129f55f2813f
修改文件名称展示、批次
已修改4个文件
41 ■■■■ 文件已修改
src/views/dnc/base/modules/ProductStructure/Document/NcDocumentAssignModal.vue 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/dnc/base/modules/ProductStructure/GuideCardBatch/GuideCardBatchList.vue 23 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/flowable/workflow/FlowTodo.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/flowable/workflow/assignFileStream/AssignFileStreamHandle.vue 10 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/dnc/base/modules/ProductStructure/Document/NcDocumentAssignModal.vue
@@ -34,6 +34,10 @@
                     @change="handleTableChange"
                     :scroll="{y:456}" :size="size" rowKey="docId">
              <!-- 字符串超长截取省略号显示-->
              <span slot="docName" slot-scope="text">
                <j-ellipsis :value="text"/>
              </span>
            </a-table>
          </a-tab-pane>
        </a-tabs>
@@ -121,6 +125,7 @@
          dataIndex: 'docName',
          key: 'docName',
          align: 'center',
          scopedSlots: { customRender: 'docName' },
          width: 300,
          sorter: true
        },
src/views/dnc/base/modules/ProductStructure/GuideCardBatch/GuideCardBatchList.vue
@@ -200,9 +200,15 @@
    methods: {
      initDictConfig(){
      },
      searchQuery() {
        this.queryParam.docId = this.guideCardBatchInfo.docId;
        this.loadData(1);
      },
      /**
      * 获取加工确认表列表
      */
      getGuideCardBatchList(){
        console.log('currentDocumentInfo', this.guideCardBatchInfo)
        let params
        let params= {};
        params.docId=this.guideCardBatchInfo.docId;
        params.serialNumber=this.queryParam.serialNumber;
        params.fixtureInformation=this.guideCardBatchInfo.fixtureInformation;
@@ -224,6 +230,19 @@
          this.loading = false
        })
      },
      searchReset() {
        // 保留必要字段的浅拷贝方式
        this.queryParam = {
          docId: this.guideCardBatchInfo.docId
        };
        this.loadData(1);
      },
      loadData(pageNum) {
        if (this.ipagination) {
          this.ipagination.current = pageNum;
        }
        this.getGuideCardBatchList();
      },
      getSuperFieldList(){
        let fieldList=[];
        fieldList.push({type:'string',value:'serialNumber',text:'流水号',dictCode:''})
src/views/flowable/workflow/FlowTodo.vue
@@ -345,7 +345,8 @@
        {
          title: '流程分类',
          align: 'center',
          dataIndex: 'category_dictText'
          dataIndex: 'category_dictText',
          width: 100
        },
        {
          title: '流程名称',
src/views/flowable/workflow/assignFileStream/AssignFileStreamHandle.vue
@@ -141,11 +141,11 @@
                <a-input :disabled='coldisabled' v-model='tableRowRecord.applyTime'></a-input>
              </a-form-model-item >
            </a-col>
            <a-col :span="24">
              <a-form-item label="密级为" :labelCol="labelCol" :wrapperCol="wrapperCol">
                <j-dict-select-tag  type='list' v-model='assignFileStream.secretLevel' dictCode='dnc_secret_level' placeholder="请选择密级"  />
              </a-form-item>
            </a-col>
<!--            <a-col :span="24">-->
<!--              <a-form-item label="密级为" :labelCol="labelCol" :wrapperCol="wrapperCol">-->
<!--                <j-dict-select-tag  type='list' v-model='assignFileStream.secretLevel' dictCode='dnc_secret_level' placeholder="请选择密级"  />-->
<!--              </a-form-item>-->
<!--            </a-col>-->
            <a-col :span="24" class="btxx">
              <a-form-item label="审批状态" :labelCol="labelCol" :wrapperCol="wrapperCol">
                <j-dict-select-tag  type='list' v-model='assignFileStream.status' dictCode='dnc_assign_stream_status' placeholder="请选择审批状态"  />