ysy před 1 rokem
rodič
revize
7cb99f2761
31 změnil soubory, kde provedl 32 přidání a 15 odebrání
  1. 1 0
      src/components/EquipmentDailog/equipment-dailog.vue
  2. 1 0
      src/components/EquipmentDailog/report-equipment.vue
  3. 1 0
      src/components/WorkshopDailog/workshop-dailog.vue
  4. 1 1
      src/components/print/OrderPrint.vue
  5. 1 0
      src/components/select/SelectUser/index.vue
  6. 1 0
      src/components/select/organization/components/org-edit.vue
  7. 1 0
      src/components/select/organization/components/org-user-edit.vue
  8. 1 0
      src/layout/components/password-modal.vue
  9. 1 0
      src/views/beEntrusted/components/create.vue
  10. 1 1
      src/views/beEntrusted/index.vue
  11. 1 0
      src/views/entrust/components/create.vue
  12. 1 0
      src/views/entrust/index.vue
  13. 1 1
      src/views/exceptionManagement/components/create.vue
  14. 1 0
      src/views/exceptionManagement/components/dispose.vue
  15. 1 1
      src/views/exceptionManagement/exceptionList/index.vue
  16. 1 1
      src/views/outsourcing/components/release.vue
  17. 1 0
      src/views/produceOrder/components/apsPlanOrder.vue
  18. 1 0
      src/views/produceOrder/components/carDialog.vue
  19. 2 0
      src/views/produceOrder/components/catogaryDialog.vue
  20. 1 0
      src/views/produceOrder/components/materialDialog.vue
  21. 1 0
      src/views/produceOrder/components/order-dailog.vue
  22. 1 1
      src/views/produceOrder/components/pickingDialog.vue
  23. 1 1
      src/views/produceOrder/components/print.vue
  24. 1 1
      src/views/produceOrder/components/printSr.vue
  25. 1 1
      src/views/produceOrder/components/printTg.vue
  26. 1 1
      src/views/produceOrder/components/report/components/handleDialog.vue
  27. 1 1
      src/views/produceOrder/components/unpackDialog.vue
  28. 1 1
      src/views/unacceptedProduct/components/create.vue
  29. 1 1
      src/views/unacceptedProduct/components/edit.vue
  30. 1 1
      src/views/warehousing/components/tgDetails.vue
  31. 1 1
      src/views/warehousing/storageComponents/storage.vue

+ 1 - 0
src/components/EquipmentDailog/equipment-dailog.vue

@@ -4,6 +4,7 @@
     title="选择设备"
     width="65vw"
     append-to-body
+    :maxable="true"
   >
     <div class="search-box">
       设备名称

+ 1 - 0
src/components/EquipmentDailog/report-equipment.vue

@@ -4,6 +4,7 @@
     title="添加工单-选择设备"
     width="65vw"
     append-to-body
+    :maxable="true"
   >
     <div class="search-box">
       设备名称

+ 1 - 0
src/components/WorkshopDailog/workshop-dailog.vue

@@ -5,6 +5,7 @@
     title="选择干燥区域"
     width="65vw"
     append-to-body
+    :maxable="true"
   >
     <div class="search-box">
       工位编码:

+ 1 - 1
src/components/print/OrderPrint.vue

@@ -1,5 +1,5 @@
 <template>
-  <ele-modal :visible.sync="visible" type="工单打印" width="1200px" :close-on-click-modal="false">
+  <ele-modal :visible.sync="visible" type="工单打印" width="1200px" :close-on-click-modal="false"  :maxable="true">
     <div class="print-container" ref="pagesRef">
       <el-row class="main-data">
         <el-col :span="6">

+ 1 - 0
src/components/select/SelectUser/index.vue

@@ -10,6 +10,7 @@
     title="选择用户"
     :append-to-body="appendToBody"
     @update:visible="updateVisible"
+    :maxable="true"
   >
     <div class="el-dialog-body-custom-height">
       <el-row :gutter="5">

+ 1 - 0
src/components/select/organization/components/org-edit.vue

@@ -7,6 +7,7 @@
     custom-class="ele-dialog-form"
     :title="isUpdate ? '修改机构' : '添加机构'"
     @update:visible="updateVisible"
+    :maxable="true"
   >
     <el-form ref="form" :model="form" :rules="rules" label-width="82px">
       <el-row :gutter="15">

+ 1 - 0
src/components/select/organization/components/org-user-edit.vue

@@ -7,6 +7,7 @@
     custom-class="ele-dialog-form"
     :title="isUpdate ? '修改用户' : '添加用户'"
     @update:visible="updateVisible"
+    :maxable="true"
   >
     <el-form ref="form" :model="form" :rules="rules" label-width="82px">
       <el-row :gutter="15">

+ 1 - 0
src/layout/components/password-modal.vue

@@ -8,6 +8,7 @@
     :close-on-click-modal="false"
     @update:visible="updateVisible"
     @closed="onClose"
+    :maxable="true"
   >
     <el-form
       ref="form"

+ 1 - 0
src/views/beEntrusted/components/create.vue

@@ -5,6 +5,7 @@
     width="45vw"
     append-to-body
     @close="cancel"
+    :maxable="true"
   >
     <!-- <div class="switch" v-if="type == 'detail'">
       <div class="switch_left">

+ 1 - 1
src/views/beEntrusted/index.vue

@@ -60,7 +60,7 @@
     </el-card>
     <Create ref="create" @refresh="reload" />
     <SalesToProduction ref="salesToProductionRef" @success="reload" />
-    <ele-modal :visible.sync="visible" width="20vw" append-to-body>
+    <ele-modal :visible.sync="visible" width="20vw" append-to-body :maxable="true">
       <el-form label-width="100px">
         <el-form-item label="入库仓库:" prop="warehouseId">
           <el-select v-model="warehouseId">

+ 1 - 0
src/views/entrust/components/create.vue

@@ -5,6 +5,7 @@
     width="45vw"
     append-to-body
     @close="cancel"
+    :maxable="true"
   >
     <div class="switch" v-if="type == 'detail'">
       <div class="switch_left">

+ 1 - 0
src/views/entrust/index.vue

@@ -107,6 +107,7 @@
       :visible.sync="visible"
       width="20vw"
       append-to-body
+      :maxable="true"
     >
       <el-form label-width="100px">
         <el-form-item label="入库仓库:" prop="warehouseId">

+ 1 - 1
src/views/exceptionManagement/components/create.vue

@@ -1,6 +1,6 @@
 <template>
   <ele-modal :visible.sync="visible" :title="title" width="45vw" append-to-body @close="cancel">
-    <div class="switch" v-if="type=='detail'">
+    <div class="switch" v-if="type=='detail'" :maxable="true">
       <div class="switch_left">
         <ul>
           <li

+ 1 - 0
src/views/exceptionManagement/components/dispose.vue

@@ -6,6 +6,7 @@
       :rules="rules"
       label-width="100px"
       class="create-form"
+      :maxable="true"
     >
       <headerTitle title="基本信息" style="margin-top: 15px"></headerTitle>
       <el-row :gutter="15">

+ 1 - 1
src/views/exceptionManagement/exceptionList/index.vue

@@ -148,7 +148,7 @@
     <Create ref="create" @refresh="reload" />
     <dispose ref="dispose" @refresh="reload" />
     
-    <ele-modal :visible.sync="visible" width="20vw" append-to-body>
+    <ele-modal :visible.sync="visible" width="20vw" append-to-body :maxable="true">
       <el-form ref="form" label-width="100px" class="create-form">
         <el-form-item
           label="审核人"

+ 1 - 1
src/views/outsourcing/components/release.vue

@@ -1,5 +1,5 @@
 <template>
-    <ele-modal :visible.sync="visible" v-if="visible" title="发布" width="800px" append-to-body :close-on-click-modal="false">
+    <ele-modal :visible.sync="visible" v-if="visible" title="发布" width="800px" append-to-body :close-on-click-modal="false" :maxable="true">
 
         <el-form ref="form" :model="form" :rules="rules" label-width="80px">
             <el-row>

+ 1 - 0
src/views/produceOrder/components/apsPlanOrder.vue

@@ -4,6 +4,7 @@
     title="创建工单"
     width="65vw"
     append-to-body
+    :maxable="true"
   >
     <div class="search-box">
       计划编号

+ 1 - 0
src/views/produceOrder/components/carDialog.vue

@@ -4,6 +4,7 @@
     title="选择周转车"
     width="65vw"
     append-to-body
+    :maxable="true"
   >
     <div class="search-box">
       编码/名称

+ 2 - 0
src/views/produceOrder/components/catogaryDialog.vue

@@ -4,7 +4,9 @@
     :title="categoryLevelId == 5 ? '选择模具' : '选择舟皿'"
     width="65vw"
     append-to-body
+    :maxable="true"
   >
+
     <div class="search-box">
       编码/名称
       <el-input placeholder="请输入" v-model="searchKey"></el-input>

+ 1 - 0
src/views/produceOrder/components/materialDialog.vue

@@ -4,6 +4,7 @@
     title="选择原料"
     width="65vw"
     append-to-body
+    :maxable="true"
   >
     <div class="search-box">
       编码/名称

+ 1 - 0
src/views/produceOrder/components/order-dailog.vue

@@ -4,6 +4,7 @@
     title="添加工单"
     width="75vw"
     append-to-body
+    :maxable="true"
   >
     <div class="search-box">
       生产工单号:

+ 1 - 1
src/views/produceOrder/components/pickingDialog.vue

@@ -1,5 +1,5 @@
 <template>
-  <ele-modal title="选择工序" :visible.sync="visible" width="580px">
+  <ele-modal title="选择工序" :visible.sync="visible" width="580px" :maxable="true">
     <ul class="picking">
       <li
         v-for="item in list"

+ 1 - 1
src/views/produceOrder/components/print.vue

@@ -1,5 +1,5 @@
 <template>
-    <ele-modal title="二维码" :visible.sync="QRvisible" v-if="QRvisible" width="800px">
+    <ele-modal title="二维码" :visible.sync="QRvisible" v-if="QRvisible" width="800px" :maxable="true">
 
         <div id="printSection">
 

+ 1 - 1
src/views/produceOrder/components/printSr.vue

@@ -1,5 +1,5 @@
 <template>
-    <ele-modal title="二维码" :visible.sync="QRvisible" v-if="QRvisible" width="800px">
+    <ele-modal title="二维码" :visible.sync="QRvisible" v-if="QRvisible" width="800px" :maxable="true">
 
         <div id="printSection">
 

+ 1 - 1
src/views/produceOrder/components/printTg.vue

@@ -1,5 +1,5 @@
 <template>
-    <ele-modal title="二维码" :visible.sync="QRvisible" v-if="QRvisible" width="800px">
+    <ele-modal title="二维码" :visible.sync="QRvisible" v-if="QRvisible" width="800px" :maxable="true">
 
         <div id="printSection">
 

+ 1 - 1
src/views/produceOrder/components/report/components/handleDialog.vue

@@ -1,5 +1,5 @@
 <template>
-  <ele-modal :visible.sync="visible" title="处置" width="400px" :close-on-click-modal="false">
+  <ele-modal :visible.sync="visible" title="处置" width="400px" :close-on-click-modal="false" :maxable="true">
     <el-form :model="formData" :rules="rules" ref="formRef">
       <el-form-item label="处置方式" props="a">
         <el-input value="改型" readonly></el-input>

+ 1 - 1
src/views/produceOrder/components/unpackDialog.vue

@@ -1,6 +1,6 @@
 <template>
   <ele-modal width="60vw" :visible.sync="visible" :close-on-click-modal="false" custom-class="ele-dialog-form"
-    :title="'拆分工单'">
+    :title="'拆分工单'" :maxable="true">
     <div class="form-wrapper">
       <el-form :model="requestData" label-width="0" :show-message="false">
         <el-descriptions title="" :column="2" border>

+ 1 - 1
src/views/unacceptedProduct/components/create.vue

@@ -1,5 +1,5 @@
 <template>
-  <ele-modal :visible.sync="visible" :title="title" width="80vw" append-to-body @close="cancel"> 
+  <ele-modal :visible.sync="visible" :title="title" width="80vw" append-to-body @close="cancel" :maxable="true"> 
     <el-form
       ref="form"
       :model="form"

+ 1 - 1
src/views/unacceptedProduct/components/edit.vue

@@ -1,5 +1,5 @@
 <template>
-  <ele-modal :visible.sync="visible" :title="title" width="40vw" append-to-body>
+  <ele-modal :visible.sync="visible" :title="title" width="40vw" append-to-body :maxable="true">
     <div class="title">{{ title == '返工返修' ? '原' : '' }}产品信息</div>
     <el-table :data="poList" border>
       <el-table-column label="产品名称" align="center" prop="productName">

+ 1 - 1
src/views/warehousing/components/tgDetails.vue

@@ -1,5 +1,5 @@
 <template>
-  <ele-modal :visible.sync="visible" title="入库详情" width="1200px">
+  <ele-modal :visible.sync="visible" title="入库详情" width="1200px" :maxable="true">
     <ele-pro-table v-if="clientEnvironmentId == 3" :columns="columns" :datasource="tableList" cache-key="tgDetails" height="calc(100vh - 350px)"
       :need-page="false">
 

+ 1 - 1
src/views/warehousing/storageComponents/storage.vue

@@ -1,5 +1,5 @@
 <template>
-  <ele-modal :visible.sync="visible" title="生产入库" width="80%">
+  <ele-modal :visible.sync="visible" title="生产入库" width="80%" :maxable="true">
     <div class="productionWarehousing">
       <el-card shadow="never">
         <header-title title="基本信息"></header-title>