From ce70bd97c7f2577f0978b39b9da1ccdd8d5b768f Mon Sep 17 00:00:00 2001
From: yangys <y_ys79@sina.com>
Date: 星期五, 19 九月 2025 22:50:14 +0800
Subject: [PATCH] 机床增加设备编号

---
 src/views/tasks/machinereturnfileop.vue |   88 ++++++++++++++++++++++++++++---------------
 1 files changed, 57 insertions(+), 31 deletions(-)

diff --git a/src/views/tasks/machinereturnfileop.vue b/src/views/tasks/machinereturnfileop.vue
index 4b23d70..3af182e 100644
--- a/src/views/tasks/machinereturnfileop.vue
+++ b/src/views/tasks/machinereturnfileop.vue
@@ -6,16 +6,16 @@
 -->
 <template>
     <basic-container>
-        <avue-crud :option="option" :table-loading="loading" :data="data" v-model:page="page" v-model="form" ref="crud"
+        <avue-crud :option="option" :search="query" :table-loading="loading" :data="data" v-model:page="page" v-model="form" ref="crud"
             @search-change="searchChange" @search-reset="searchReset" @current-change="currentChange"
             @size-change="sizeChange" @refresh-change="refreshChange" @on-load="onLoad" @selection-change="selectionChange">
             <template #menu-left>
-                <el-button type="primary" plain @click="exportWebSite">瀵煎嚭鍥炰紶娑夊瘑缃�</el-button>
+                <el-button type="primary" :disabled="this.selectedList.length==0" plain @click="exportWebSite">瀵煎嚭鍥炰紶娑夊瘑缃�</el-button>
                 <!--<el-button type="primary" plain @click="reassign">鎸傝浇杞﹀簥绋嬪簭搴�</el-button>-->
-                <el-button type="primary" plain @click="exportExcel">瀵煎嚭鍒癊XCEL</el-button>
+                <el-button type="primary" :disabled="this.selectedList.length==0" plain @click="exportExcel">瀵煎嚭鍒癊XCEL</el-button>
             </template>
             <template #menu="scope">
-                <el-button type="primary" text size="default" v-if="permission.flow_model_update"
+                <el-button type="primary" text size="default"
                     @click.stop="handleAction(scope.row, scope.index)">瀹℃壒
                 </el-button>
             </template>
@@ -40,7 +40,7 @@
                 total: 0,
             },
             form: {},
-            query: {},
+            query: {status:1},
             loading: true,
             data: [],
             option: {
@@ -65,31 +65,60 @@
                     
 					{
                         label: '鏂囦欢鍚嶇О',
-                        prop: 'name'
+                        prop: 'name',
+                        search:true,
+                    },
+                    {
+                        label: '瀵煎嚭鐘舵��',
+                        prop: 'status',
+                        search:true,
+                        type:'select',
+                        dicData:[
+                            {
+                                label: '鏈鍑�',
+                                value:1
+                            },
+                            {
+                                label: '宸插鍑�',
+                                value:2
+                            }
+                        ]
                     },
                     {
                         label: '鍥炰紶鏈哄簥',
                         prop: 'machineCode',
                     },
-
-                    
                     {
-                        label: '鏂囦欢鍥哄寲鐘舵��',
-                        prop: 'isCured',
-                        formatter: (val, value, label) => {
-                            return `${val==0?'鏈浐鍖�':"宸插浐鍖�"}`;
-                        },
+                        label: '绋嬪簭鐘舵��',
+                        prop: 'programStatus',
+                        render: ({ row,value }) => {
+                            var txt = '鏈煡';
+                            switch(row.programStatus){
+                                case 1:
+                                txt = '璇曞垏';
+                                break;
+                                case 2:
+                                txt = '鍥哄寲';
+                                break;
+                                case 3:
+                                txt = '鍋忕';
+                                break;
+                                default:
+                                txt = '鏈煡';
+                            }
+                            return txt;
+                        }
                     },
                     {
                         label: '鏂囦欢鍒拌揪鏃堕棿',
-                        prop: 'arrivedTime',
+                        prop: 'fileCreateTime',
                         type: 'datetime',
                         format: 'YYYY-MM-DD HH:mm:ss',
                         valueFormat: 'YYYY-MM-DD HH:mm:ss',
                     },
 					{
                         label: '纭鏃堕棿',
-                        prop: 'determineTime',
+                        prop: 'createTime',
                         type: 'datetime',
                         format: 'YYYY-MM-DD HH:mm:ss',
                         valueFormat: 'YYYY-MM-DD HH:mm:ss',
@@ -97,17 +126,17 @@
                         searchRange: true,
                         searchSpan: 8,
                         hide: false,
-                    }/*,
-                    {
-                        label: '鎺ユ敹x鏃堕棿',
-                        prop: 'determineTime',
+                    },
+					{
+                        label: '瀵煎嚭鏃堕棿',
+                        prop: 'exportTime',
                         type: 'datetime',
                         format: 'YYYY-MM-DD HH:mm:ss',
                         valueFormat: 'YYYY-MM-DD HH:mm:ss',
-                    }*/
+                    }
                 ],
-                selectedList: [],
-            }
+            },
+            selectedList: [],
         }
     },
     methods: {
@@ -126,12 +155,13 @@
             }).then(() => {
                 NProgress.start();
                 exportBlob(
-                    `/blade-mdm/machineback/filehandle/export-to-inner`,
+                    `/blade-mdm/machinefile/filehandle/export-to-inner`,
                     {
                         ids: this.selectedList.map(item => item.id).join(','),
                     }
                 ).then(res => {
                     downloadXls(res.data, `宸ユ帶缃戝洖浼犵▼搴�${this.$dayjs().format('YYYY-MM-DD HH:mm:ss')}.zip`);
+                    this.onLoad(this.page, {});
                     NProgress.done();
                 });
             });
@@ -148,7 +178,7 @@
             }).then(() => {
                 NProgress.start();
                 exportBlob(
-                    `/blade-mdm/machineback/filehandle/export-excel?${this.website.tokenHeader}=${getToken()}`
+                    `/blade-mdm/machinefile/filehandle/export-excel?${this.website.tokenHeader}=${getToken()}`
                 ).then(res => {
                     downloadXls(res.data, `鏈哄簥鍥炰紶绋嬪簭鍒楄〃${this.$dayjs().format('YYYY-MM-DD HH:mm:ss')}.xlsx`);
                     NProgress.done();
@@ -162,15 +192,12 @@
             console.log('searchChange', params);
             params.confirmTimeBegin = params?.determineTime?.[0] || '';
             params.confirmTimeEnd = params?.determineTime?.[1] || '';
-            console.log(params);
-            // data = {
-            //     createTimeBegin: dayjs(params.createTimeBegin).isValid() ? dayjs(params.createTimeBegin).format('YYYY-MM-DD') : '',
-            //     createTimeEnd: dayjs(params.createTimeEnd).isValid() ? dayjs(params.createTimeEnd).format('YYYY-MM-DD') : '',
-            //     keyword: params.keyword || ''
-            // }
+           
             data = {
                 confirmTimeBegin: params.confirmTimeBegin,
                 confirmTimeEnd: params.confirmTimeEnd,
+                name: params.name,
+                status: this.query.status,
             }
             this.query = data
             this.onLoad(this.page, data);
@@ -204,7 +231,6 @@
             console.log('onLoad', page, params);
             const query = {
                 ...this.query,
-                // category: params.category ? flowCategory(params.category) : null,
                 mode: this.mode,
             };
             try {

--
Gitblit v1.9.3