From 065372592235ab12c259df1a5c0d341a489fbd03 Mon Sep 17 00:00:00 2001 From: Tcsm <1377977403@qq.com> Date: 星期六, 05 八月 2023 00:07:42 +0800 Subject: [PATCH] 完善详情页对于时间的修改问题 --- ruoyi-ui/src/views/device/index.vue | 34 +++++++++++++++++++++++++++------- 1 files changed, 27 insertions(+), 7 deletions(-) diff --git a/ruoyi-ui/src/views/device/index.vue b/ruoyi-ui/src/views/device/index.vue index 439e44c..ee7bd1c 100644 --- a/ruoyi-ui/src/views/device/index.vue +++ b/ruoyi-ui/src/views/device/index.vue @@ -128,10 +128,10 @@ <el-table-column fixed label="搴忓彿" sortable type="index" :index="(queryParams.pageNum-1)*queryParams.pageSize+1" width="120"/> <el-table-column label="璁惧鍚嶇О" prop="name" sortable width="120" /> - <el-table-column label="鏃堕棿" align="happenTime" sortable prop="happenTime" width="180"> + <el-table-column label="鏃堕棿" align="happenTime" sortable prop="happenTime" width="150"> <template slot-scope="scope">{{scope.row.happenTime? scope.row.happenTime: '鈥斺�斺�斺��'}}</template> </el-table-column> - <el-table-column label="鏄惁娉ㄩ攢" align="center" sortable prop="status" width="180"> + <el-table-column label="鏄惁娉ㄩ攢" align="center" sortable prop="status" width="120"> <template slot-scope="scope"> {{ getSrc1(scope.row.status) }} </template> @@ -145,7 +145,7 @@ </el-table-column> - <el-table-column label="鐢靛瓙鏂囦欢" prop="url" width="180" align="center"> + <el-table-column label="鐢靛瓙鏂囦欢" prop="url" width="120" align="center"> <template slot-scope="scope" > <div @click="handleCheck(scope.row)"> @@ -210,11 +210,11 @@ </el-form-item> <el-form-item label="鍙戠敓鏃堕棿" prop="happenTime"> - <el-date-picker + <el-input v-model='formDat.happenTime' type='date' placeholder='閫夋嫨鏃ユ湡' - ></el-date-picker> + ></el-input> </el-form-item> @@ -285,7 +285,7 @@ class="upload-demo" multiple - :on-remove="handleRemove" + :on-remove="handleRemoveFile" :http-request="requestUpload" :show-file-list="true" > @@ -403,7 +403,7 @@ trigger: 'blur' }], status: [{ - required: true, + // required: true, message: '鏄惁娉ㄩ攢', trigger: 'change' }], @@ -583,6 +583,20 @@ this.dialogImageUrl = file.url; this.dialogVisible = true; }, + handleRemove(file) { + for(let i = 0; i < this.fileList.length; i++) + { + if(this.fileList[i].url==file.url) + this.$delete(this.fileList,i); + } + }, + handleRemoveFile(file) { + for(let i = 0; i < this.fileListOther.length; i++) + { + if(this.fileListOther[i].url==file.url) + this.$delete(this.fileListOther,i); + } + }, /** 鎻愪氦鎸夐挳锛堟暟鎹潈闄愶級 */ submitDataScope: function() { @@ -603,6 +617,12 @@ }); } }); + // 娓呯┖formDat瀵硅薄鐨勬暟鎹� + Object.keys(this.formDat).forEach(key => { + this.formDat[key] = ''; + }); + this.handleRemove(this.fileList[0]); + this.handleRemoveFile(this.fileListOther[0]); }, requestUpload(params) { -- Gitblit v1.9.1