zouyu
2023-12-13 d4d9bdca6e4bd7e01b9e392da9567828ca4a1dc7
	modified:   src/api/plan/operationtask.js
modified: src/views/common/document.vue
modified: src/views/common/documentDetail.vue
modified: src/views/plan/operationtask/operationtask-form.vue
modified: src/views/technology/document/teststandard.vue
已修改5个文件
13 ■■■■ 文件已修改
src/api/plan/operationtask.js 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/common/document.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/common/documentDetail.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/plan/operationtask/operationtask-form.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/technology/document/teststandard.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/api/plan/operationtask.js
@@ -294,3 +294,9 @@
    params: query
  })
}
export function getTechnologyRouting(id) {
  return request({
    url: '/mes/operationTask/getTechnologyRouting/'+id,
    method: 'get',
  })
}
src/views/common/document.vue
@@ -61,7 +61,7 @@
      <el-button @click="innerVisible = false">取 消</el-button>
      <el-button type="primary" @click="saveSelectRow">确 定</el-button>
    </div>
    <DocumentDetail :currshowlist.sync="showDocument" :docId="documentId">
    <DocumentDetail :currshowlist.sync="showDocument" :docId="Number(documentId)">
    </DocumentDetail>
  </el-dialog>
</template>
src/views/common/documentDetail.vue
@@ -166,7 +166,7 @@
            >
              <TeststandardDialog
                :editable="editable"
                :documentId="Number(dataForm.id)"
                :documentId="Number(docId)"
              >
              </TeststandardDialog>
            </el-tab-pane>
src/views/plan/operationtask/operationtask-form.vue
@@ -778,6 +778,7 @@
            //              this.dataForm.partName = this.routingList.partName
            //              this.dataForm.partId = this.routingList.partId
            // 制造订单form创建的,自动带出工序
            console.log(this.routingOptions);
            if (param.selectedRoutingOperationId && this.routingOptions) {
              const option = this.routingOptions.find(
                (e) => e.id === param.selectedRoutingOperationId
src/views/technology/document/teststandard.vue
@@ -59,7 +59,7 @@
  deleteTestStandard,
  getTestStand,
  saveTestStandard
} from '../../../api/technology/document'
} from '@/api/technology/document'
import qualityStandardDialog from '@/views/common/teststandardradio.vue'
export default {