From 3376c3106bef417ca184947c1afc6ef2532929a7 Mon Sep 17 00:00:00 2001
From: qushaowei <qushaowei@163.com>
Date: 星期五, 22 三月 2024 10:01:43 +0800
Subject: [PATCH] 问题项修改

---
 src/views/eam/modules/daily3MaintenanceOrder/Maintenance3ReceiptModal.vue          |   35 +++
 src/views/eam/modules/daily3MaintenanceOrder/EquipmentPrecisionCheckOrderModal.vue |   39 ++++
 src/views/eam/modules/maintenancePlan/DailyMaintenanceStandardDetail.vue           |   74 ++++----
 src/views/eam/modules/maintenancePlan/EquipmentMaintenancePlanForm.vue             |    4 
 src/views/eam/modules/daily3MaintenanceOrder/MaintenanceOrder3Modal.vue            |    6 
 src/views/eam/Daily3MaintenanceOrderList.vue                                       |   12 
 src/views/eam/EquipmentMaintenancePlanDetailList.vue                               |  319 ++++++++++++++++++++--------------
 7 files changed, 301 insertions(+), 188 deletions(-)

diff --git a/src/views/eam/Daily3MaintenanceOrderList.vue b/src/views/eam/Daily3MaintenanceOrderList.vue
index fe515cf..2d5a16a 100644
--- a/src/views/eam/Daily3MaintenanceOrderList.vue
+++ b/src/views/eam/Daily3MaintenanceOrderList.vue
@@ -579,12 +579,12 @@
         //   align: "center",
         //   dataIndex: 'workingHourQuota'
         // },
-        // {
-        //   title: '璁″垝寮�濮嬫椂闂�',
-        //   align: "center",
-        //   dataIndex: 'planStartTime',
-        //   //width: '120px',
-        // },
+        {
+          title: '璁″垝寮�濮嬫椂闂�',
+          align: "center",
+          dataIndex: 'planStartTime',
+          //width: '120px',
+        },
         // {
         //   title: '璁″垝缁撴潫鏃堕棿',
         //   align: "center",
diff --git a/src/views/eam/EquipmentMaintenancePlanDetailList.vue b/src/views/eam/EquipmentMaintenancePlanDetailList.vue
index 4b92518..01051f5 100644
--- a/src/views/eam/EquipmentMaintenancePlanDetailList.vue
+++ b/src/views/eam/EquipmentMaintenancePlanDetailList.vue
@@ -1,8 +1,14 @@
 <template>
-  <a-card :bordered="false" :class="'cust-erp-sub-tab'">
+  <a-card
+    :bordered="false"
+    :class="'cust-erp-sub-tab'"
+  >
     <!-- 鏌ヨ鍖哄煙 -->
     <div class="table-page-search-wrapper">
-      <a-form layout="inline" @keyup.enter.native="searchQuery">
+      <a-form
+        layout="inline"
+        @keyup.enter.native="searchQuery"
+      >
         <a-row :gutter="24">
         </a-row>
       </a-form>
@@ -10,7 +16,10 @@
     <!-- 鏌ヨ鍖哄煙-END -->
 
     <!-- 鎿嶄綔鎸夐挳鍖哄煙 -->
-    <div class="table-operator" v-if="mainId">
+    <div
+      class="table-operator"
+      v-if="mainId"
+    >
       <!-- <a-button @click="handleAdd" type="primary" icon="plus">鏂板</a-button>
       <a-dropdown v-if="selectedRowKeys.length > 0">
         <a-menu slot="overlay">
@@ -22,9 +31,15 @@
 
     <!-- table鍖哄煙-begin -->
     <div>
-      <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
+      <div
+        class="ant-alert ant-alert-info"
+        style="margin-bottom: 16px;"
+      >
         <i class="anticon anticon-info-circle ant-alert-icon"></i> 宸查�夋嫨 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>椤�
-        <a style="margin-left: 24px" @click="onClearSelected">娓呯┖</a>
+        <a
+          style="margin-left: 24px"
+          @click="onClearSelected"
+        >娓呯┖</a>
       </div>
 
       <a-table
@@ -38,34 +53,64 @@
         :pagination="ipagination"
         :loading="loading"
         :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
-        @change="handleTableChange">
+        @change="handleTableChange"
+      >
 
-        <template slot="htmlSlot" slot-scope="text">
+        <template
+          slot="htmlSlot"
+          slot-scope="text"
+        >
           <div v-html="text"></div>
         </template>
-        <template slot="imgSlot" slot-scope="text,record">
-          <span v-if="!text" style="font-size: 12px;font-style: italic;">鏃犲浘鐗�</span>
-          <img v-else :src="getImgView(text)" :preview="record.id" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;"/>
+        <template
+          slot="imgSlot"
+          slot-scope="text,record"
+        >
+          <span
+            v-if="!text"
+            style="font-size: 12px;font-style: italic;"
+          >鏃犲浘鐗�</span>
+          <img
+            v-else
+            :src="getImgView(text)"
+            :preview="record.id"
+            height="25px"
+            alt=""
+            style="max-width:80px;font-size: 12px;font-style: italic;"
+          />
         </template>
-        <template slot="fileSlot" slot-scope="text">
-          <span v-if="!text" style="font-size: 12px;font-style: italic;">鏃犳枃浠�</span>
+        <template
+          slot="fileSlot"
+          slot-scope="text"
+        >
+          <span
+            v-if="!text"
+            style="font-size: 12px;font-style: italic;"
+          >鏃犳枃浠�</span>
           <a-button
             v-else
             :ghost="true"
             type="primary"
             icon="download"
             size="small"
-            @click="downloadFile(text)">
+            @click="downloadFile(text)"
+          >
             涓嬭浇
           </a-button>
         </template>
 
-        <span slot="action" slot-scope="text, record">
+        <span
+          slot="action"
+          slot-scope="text, record"
+        >
           <!-- <a-divider type="vertical" />
           <a-popconfirm title="纭畾鍒犻櫎鍚�?" @confirm="() => handleDelete(record.id)">
             <a>鍒犻櫎</a>
           </a-popconfirm>  -->
-          <a @click="handleEdit(record)" :disabled="mainStatus!=='distributed'">璁″垝鍙樻洿</a>
+          <a
+            @click="handleEdit(record)"
+            :disabled="mainStatus!=='distributed'"
+          >璁″垝鍙樻洿</a>
         </span>
         <span
           slot="num"
@@ -78,139 +123,145 @@
         </span>
       </a-table>
     </div>
-    <standard-detail-model :mainId="standardId" ref="standardDetail"></standard-detail-model>
-    <maintenance-plan-change-model ref="modalForm" @ok="modalFormOk"></maintenance-plan-change-model>
+    <standard-detail-model
+      :mainId="standardId"
+      ref="standardDetail"
+    ></standard-detail-model>
+    <maintenance-plan-change-model
+      ref="modalForm"
+      @ok="modalFormOk"
+    ></maintenance-plan-change-model>
   </a-card>
 </template>
 
 <script>
 
-  import { JeecgListMixin } from '@/mixins/JeecgListMixin'
-  import StandardDetailModel from './modules/maintenancePlan/StandardDetailModel'
-  import MaintenancePlanChangeModel from './modules/maintenancePlan/MaintenancePlanChangeModel.vue'
-  export default {
-    name: "EquipmentMaintenancePlanDetailList",
-    mixins:[JeecgListMixin],
-    components: {StandardDetailModel, MaintenancePlanChangeModel},
-    props:{
-      mainId:{
-        type:String,
-        default:'',
-        required:false
-      },
-      mainStatus:{
-        type:String,
-        default:'',
-        required:false
-      }
+import { JeecgListMixin } from '@/mixins/JeecgListMixin'
+import StandardDetailModel from './modules/maintenancePlan/StandardDetailModel'
+import MaintenancePlanChangeModel from './modules/maintenancePlan/MaintenancePlanChangeModel.vue'
+export default {
+  name: "EquipmentMaintenancePlanDetailList",
+  mixins: [JeecgListMixin],
+  components: { StandardDetailModel, MaintenancePlanChangeModel },
+  props: {
+    mainId: {
+      type: String,
+      default: '',
+      required: false
     },
-    watch:{
-      mainId:{
-        immediate: true,
-        handler(val) {
-          if(!this.mainId){
-            this.clearList()
-          }else{
-            this.queryParam['planId'] = val
-            this.loadData(1);
-          }
+    mainStatus: {
+      type: String,
+      default: '',
+      required: false
+    }
+  },
+  watch: {
+    mainId: {
+      immediate: true,
+      handler(val) {
+        if (!this.mainId) {
+          this.clearList()
+        } else {
+          this.queryParam['planId'] = val
+          this.loadData(1);
         }
       }
-    },
-    data () {
-      return {
-        description: '淇濆吇璁″垝绠$悊椤甸潰',
-        disableMixinCreated:true,
-        // 琛ㄥご
-        columns: [
-          {
-            title: '#',
-            dataIndex: '',
-            key:'rowIndex',
-            width:45,
-            align:"center",
-            customRender:function (t,r,index) {
-              return parseInt(index)+1;
-            }
-          },
-          {
-            title:'淇濆吇鏍囧噯',
-            align:"center",
-            dataIndex: 'standardNum',
-            width:250,
-            scopedSlots: { customRender: 'num' }
-          },
-          {
-            title:'璁惧缁熶竴缂栫爜',
-            align:"center",
-            dataIndex: 'equipmentNum',
-            width:250,
-          },
-          {
-            title:'璁惧鍚嶇О',
-            align:"center",
-            dataIndex: 'equipmentName',
-            width:250,
-          },
-          {
-            title:'璁惧鍨嬪彿',
-            align:"center",
-            dataIndex: 'model',
-            width:250,
-          },
-          {
-            title:'璁″垝寮�濮嬫椂闂�',
-            align:"center",
-            dataIndex: 'planStartTime',
-            width:280,
-          },
-          {
-            title:'璁″垝缁撴潫鏃堕棿',
-            align:"center",
-            dataIndex: 'planEndTime',
-            width:280,
-          },
-          {
-            title: '鎿嶄綔',
-            dataIndex: 'action',
-            align:"center",
-            fixed:"right",
-            width:200,
-            scopedSlots: { customRender: 'action' },
+    }
+  },
+  data() {
+    return {
+      description: '淇濆吇璁″垝绠$悊椤甸潰',
+      disableMixinCreated: true,
+      // 琛ㄥご
+      columns: [
+        {
+          title: '#',
+          dataIndex: '',
+          key: 'rowIndex',
+          width: 45,
+          align: "center",
+          customRender: function (t, r, index) {
+            return parseInt(index) + 1;
           }
-        ],
-        url: {
-          list: "/eam/equipmentMaintenancePlan/listEquipmentMaintenancePlanDetailByMainId",
-          delete: "/eam/equipmentMaintenancePlan/deleteEquipmentMaintenancePlanDetail",
-          deleteBatch: "/eam/equipmentMaintenancePlan/deleteBatchEquipmentMaintenancePlanDetail",
-          exportXlsUrl: "/eam/equipmentMaintenancePlan/exportEquipmentMaintenancePlanDetail",
-          importUrl: "/eam/equipmentMaintenancePlan/importEquipmentMaintenancePlanDetail",
         },
-        dictOptions:{
+        {
+          title: '淇濆吇鏍囧噯',
+          align: "center",
+          dataIndex: 'standardNum',
+          width: 250,
         },
-        standardId:''
-      }
-    },
-    created() {
-    },
-    computed: {
-      importExcelUrl(){
-        return `${window._CONFIG['domianURL']}/${this.url.importUrl}/${this.mainId}`;
-      }
-    },
-    methods: {
-      clearList(){
-        this.dataSource=[]
-        this.selectedRowKeys=[]
-        this.ipagination.current = 1
+        // scopedSlots: { customRender: 'num' }
+        {
+          title: '璁惧缁熶竴缂栫爜',
+          align: "center",
+          dataIndex: 'equipmentNum',
+          width: 250,
+        },
+        {
+          title: '璁惧鍚嶇О',
+          align: "center",
+          dataIndex: 'equipmentName',
+          width: 250,
+        },
+        {
+          title: '璁惧鍨嬪彿',
+          align: "center",
+          dataIndex: 'model',
+          width: 250,
+        },
+        {
+          title: '璁″垝寮�濮嬫椂闂�',
+          align: "center",
+          dataIndex: 'planStartTime',
+          width: 280,
+        },
+        {
+          title: '璁″垝缁撴潫鏃堕棿',
+          align: "center",
+          dataIndex: 'planEndTime',
+          width: 280,
+        },
+        {
+          title: '鎿嶄綔',
+          dataIndex: 'action',
+          align: "center",
+          fixed: "right",
+          width: 200,
+          scopedSlots: { customRender: 'action' },
+        }
+      ],
+      url: {
+        list: "/eam/equipmentMaintenancePlan/listEquipmentMaintenancePlanDetailByMainId",
+        delete: "/eam/equipmentMaintenancePlan/deleteEquipmentMaintenancePlanDetail",
+        deleteBatch: "/eam/equipmentMaintenancePlan/deleteBatchEquipmentMaintenancePlanDetail",
+        exportXlsUrl: "/eam/equipmentMaintenancePlan/exportEquipmentMaintenancePlanDetail",
+        importUrl: "/eam/equipmentMaintenancePlan/importEquipmentMaintenancePlanDetail",
       },
-      handleShowDetail(record){
-        this.standardId = record.standardId
-        this.$refs.standardDetail.visible = true;
-      }
+      dictOptions: {
+      },
+      standardId: ''
+    }
+  },
+  created() {
+  },
+  computed: {
+    importExcelUrl() {
+      return `${window._CONFIG['domianURL']}/${this.url.importUrl}/${this.mainId}`;
+    }
+  },
+  methods: {
+    clearList() {
+      this.dataSource = []
+      this.selectedRowKeys = []
+      this.ipagination.current = 1
+    },
+    handleShowDetail(record) {
+      this.standardId = record.standardId
+      this.$refs.standardDetail.visible = true;
     }
   }
+}
 </script>
 <style scoped>
-  @import '~@assets/less/common.less'
+@import '~@assets/less/common.less';
 </style>
diff --git a/src/views/eam/modules/daily3MaintenanceOrder/EquipmentPrecisionCheckOrderModal.vue b/src/views/eam/modules/daily3MaintenanceOrder/EquipmentPrecisionCheckOrderModal.vue
index 627783b..fe0f077 100644
--- a/src/views/eam/modules/daily3MaintenanceOrder/EquipmentPrecisionCheckOrderModal.vue
+++ b/src/views/eam/modules/daily3MaintenanceOrder/EquipmentPrecisionCheckOrderModal.vue
@@ -197,8 +197,7 @@
             <a-input v-model="model.sparePart" />
           </a-form-item>
         </a-col>
-      </a-row>
-      <a-row :gutter="24">
+
         <a-col :span="12">
           <a-form-item
             :labelCol="{ span: 8 }"
@@ -213,7 +212,10 @@
             />
           </a-form-item>
         </a-col>
-        <a-col :span="12">
+      </a-row>
+      <a-row :gutter="24">
+
+        <!-- <a-col :span="12">
           <a-form-item
             :labelCol="{ span: 8 }"
             :wrapperCol="{ span: 4 }"
@@ -225,6 +227,35 @@
               @change="handle5Switch(model.meetProcessRequire)"
               :checked="model.meetProcessRequire == '1'"
             />
+          </a-form-item>
+        </a-col> -->
+        <a-col :span="12">
+          <a-form-item
+            style="font-size: large;font-style: normal;font-size: 15px;"
+            :labelCol="{ span: 8 }"
+            :wrapperCol="{ span: 12 }"
+            label="鑳藉惁婊¤冻鍔犲伐宸ヨ壓瑕佹眰"
+          >
+            <j-dict-select-tag
+              style="font-size: large;font-style: normal;font-size: 15px;width: 100%"
+              allow-clear
+              :triggerChange="true"
+              dictCode="meet_process_require"
+              v-model="model.meetProcessRequire"
+            />
+
+          </a-form-item>
+        </a-col>
+        <a-col
+          v-if="model.meetProcessRequire =='3'"
+          :span="12"
+        >
+          <a-form-item
+            :labelCol="{ span: 8 }"
+            :wrapperCol="{ span: 12 }"
+            label="鑷畾涔夎鏄庯細"
+          >
+            <a-input v-model="model.meetProcessRequireRemark" />
           </a-form-item>
         </a-col>
       </a-row>
@@ -377,6 +408,7 @@
       dataSource: [],
       model: {},
       departs: [],
+
       labelCol: {
         xs: { span: 24 },
         sm: { span: 6 },
@@ -488,6 +520,7 @@
         if (res.success) {
           this.dataSource = res.result[0].precisionInspectionDetails
           this.model = Object.assign(this.model, res.result[0]);
+          this.model = Object.assign({}, this.model);
         }
       })
     },
diff --git a/src/views/eam/modules/daily3MaintenanceOrder/Maintenance3ReceiptModal.vue b/src/views/eam/modules/daily3MaintenanceOrder/Maintenance3ReceiptModal.vue
index a9d7d6a..64de24a 100644
--- a/src/views/eam/modules/daily3MaintenanceOrder/Maintenance3ReceiptModal.vue
+++ b/src/views/eam/modules/daily3MaintenanceOrder/Maintenance3ReceiptModal.vue
@@ -104,8 +104,9 @@
                 <a-select-option value="2">鏈�氳繃</a-select-option>
               </a-select>
               <a-input
-                v-if="col.dataIndex == 'firstInspect'"
-                @change="(e)=>handleChange(e, record.key, col, index)"
+                v-if="col.dataIndex == 'firstInspect' && record.firstInspect == '2'"
+                :value="record.firstNotPass"
+                @change="(e)=>handleChange2(e, record.key, col, index)"
                 :disabled="false"
                 placeholder="璇峰~鍐欓獙鏀舵湭閫氳繃鍘熷洜"
               />
@@ -118,7 +119,13 @@
                 <a-select-option value="1">閫氳繃</a-select-option>
                 <a-select-option value="2">鏈�氳繃</a-select-option>
               </a-select>
-
+              <!-- <a-input
+                v-if="col.dataIndex == 'secondInspect' && record.secondInspect == '2'"
+                :value="record.secondNotPass"
+                @change="(e)=>handleChange2(e, record.key, col, index)"
+                :disabled="false"
+                placeholder="璇峰~鍐欓獙鏀舵湭閫氳繃鍘熷洜"
+              /> -->
             </div>
           </template>
         </a-table>
@@ -383,6 +390,7 @@
     },
 
     handleChange(value, key, column, index) {
+      debugger
       let that = this;
       const temp = [...that.dataSource];
       const target = temp.filter(item => key === item.key)[index];
@@ -397,7 +405,8 @@
           target['standard'] = value.target.value;
         }
         if (column.dataIndex == 'firstInspect') {
-          target[column.dataIndex] = value;
+          debugger
+          target["firstInspect"] = value;
         }
         if (column.dataIndex == 'secondInspect') {
           target[column.dataIndex] = value;
@@ -407,6 +416,24 @@
       }
     },
 
+    handleChange2(value, key, column, index, record) {
+      let that = this;
+      const temp = [...that.dataSource];
+      const target = temp.filter(item => key === item.key)[index];
+      if (target) {
+        // target[column.dataIndex] = value;
+        if ('firstInspect' == column.dataIndex) {
+          target['firstNotPass'] = value.target.value;
+        }
+        // if ('secondInspect' == column.dataIndex) {
+        //   target['secondNotPass'] = value.target.value;
+        // }
+
+        //鏄剧ず甯﹁繃鏉ョ殑鏁版嵁
+        that.dataSource = temp;
+      }
+    },
+
     getSysFileName() {
       getAction(this.url.getSysFileName, { name: '19' }).then((res) => {
         if (res.success) {
diff --git a/src/views/eam/modules/daily3MaintenanceOrder/MaintenanceOrder3Modal.vue b/src/views/eam/modules/daily3MaintenanceOrder/MaintenanceOrder3Modal.vue
index 2b4b448..e7eb44d 100644
--- a/src/views/eam/modules/daily3MaintenanceOrder/MaintenanceOrder3Modal.vue
+++ b/src/views/eam/modules/daily3MaintenanceOrder/MaintenanceOrder3Modal.vue
@@ -531,7 +531,8 @@
         add: "/eam/dailyMaintenanceOrder/add",
         edit: "/eam/dailyMaintenanceOrder/edit",
         getCycleByStandardId: "/eam/dailyMaintenanceOrder/getMaintenanceCycleByStandardId",
-        getMaintenanceProjectList: "/eam/dailyMaintenanceOrder/getMaintenanceProjectId",
+        // getMaintenanceProjectList: "/eam/dailyMaintenanceOrder/getMaintenanceProjectId",
+        getMaintenanceProjectList: "/eam/calibrationOrder/getTwoMaintenancePlanList",
         getSysDeparts: "/eam/dailyMaintenanceOrder/getSysDeparts",
         list: "/eam/dailyMaintenanceOrder/getMaintenanceCycleByStandardId",
         getNum: '/eam/sysIdentity/getNumNew'
@@ -682,7 +683,8 @@
 
     handle3Change(val) {
       let data = this.form.getFieldsValue(['maintenanceStandardId']);
-      getAction(this.url.getMaintenanceProjectList, { maintenanceStandardId: data.maintenanceStandardId, maintenanceCycleId: val }).then((res) => {
+      // getAction(this.url.getMaintenanceProjectList, { maintenanceStandardId: data.maintenanceStandardId, maintenanceCycleId: val }).then((res) => {
+      getAction(this.url.getMaintenanceProjectList).then((res) => {
         if (res.success) {
           this.dataSource = res.result;
           if (res.result.length == 0) {
diff --git a/src/views/eam/modules/maintenancePlan/DailyMaintenanceStandardDetail.vue b/src/views/eam/modules/maintenancePlan/DailyMaintenanceStandardDetail.vue
index 04431af..df50131 100644
--- a/src/views/eam/modules/maintenancePlan/DailyMaintenanceStandardDetail.vue
+++ b/src/views/eam/modules/maintenancePlan/DailyMaintenanceStandardDetail.vue
@@ -129,19 +129,19 @@
             return parseInt(index) + 1;
           }
         },
-        {
-          title: '閮ㄤ綅',
-          align: "center",
-          dataIndex: 'location',
-          width: 150,
-        },
-        {
-          title: '绀烘剰鍥�',
-          align: "center",
-          dataIndex: 'photo',
-          scopedSlots: { customRender: 'photo' },
-          width: 150,
-        },
+        // {
+        //   title: '閮ㄤ綅',
+        //   align: "center",
+        //   dataIndex: 'location',
+        //   width: 150,
+        // },
+        // {
+        //   title: '绀烘剰鍥�',
+        //   align: "center",
+        //   dataIndex: 'photo',
+        //   scopedSlots: { customRender: 'photo' },
+        //   width: 150,
+        // },
         {
           title: '淇濆吇椤圭洰',
           align: "center",
@@ -155,31 +155,31 @@
           dataIndex: 'standard',
           width: 150,
         },
-        {
-          title: '鏂规硶',
-          align: "center",
-          dataIndex: 'maintenanceMethodName',
-          width: 150,
+        // {
+        //   title: '鏂规硶',
+        //   align: "center",
+        //   dataIndex: 'maintenanceMethodName',
+        //   width: 150,
 
-        },
-        {
-          title: '宸ュ叿',
-          align: "center",
-          dataIndex: 'maintenanceTool',
-          width: 150,
-        },
-        {
-          title: '瀹夊叏瑕佹眰',
-          align: "center",
-          dataIndex: 'maintenanceRequire',
-          width: 150,
-        },
-        {
-          title: '宸ユ椂瀹氶',
-          align: "center",
-          dataIndex: 'workingHourQuota',
-          width: 150,
-        },
+        // },
+        // {
+        //   title: '宸ュ叿',
+        //   align: "center",
+        //   dataIndex: 'maintenanceTool',
+        //   width: 150,
+        // },
+        // {
+        //   title: '瀹夊叏瑕佹眰',
+        //   align: "center",
+        //   dataIndex: 'maintenanceRequire',
+        //   width: 150,
+        // },
+        // {
+        //   title: '宸ユ椂瀹氶',
+        //   align: "center",
+        //   dataIndex: 'workingHourQuota',
+        //   width: 150,
+        // },
         {
           title: '淇濆吇鍛ㄦ湡',
           align: "center",
diff --git a/src/views/eam/modules/maintenancePlan/EquipmentMaintenancePlanForm.vue b/src/views/eam/modules/maintenancePlan/EquipmentMaintenancePlanForm.vue
index bff6447..4dbe70c 100644
--- a/src/views/eam/modules/maintenancePlan/EquipmentMaintenancePlanForm.vue
+++ b/src/views/eam/modules/maintenancePlan/EquipmentMaintenancePlanForm.vue
@@ -67,14 +67,14 @@
               :wrapperCol="wrapperCol"
               prop="ranges"
             >
-            <a-range-picker
+              <a-range-picker
                 v-model="model.ranges"
                 style="width:100%"
                 format="YYYY-MM-DD HH:mm:ss"
                 showTime
                 :placeholder="[ '璁″垝寮�濮嬫椂闂�', '璁″垝缁撴潫鏃堕棿']"
                 @change="changeDate"
-            />
+              />
             </a-form-model-item>
           </a-col>
         </a-row>

--
Gitblit v1.9.3