From 41c12150fa634663d712cb03748800ec2c8067a8 Mon Sep 17 00:00:00 2001
From: linwenling <3256558519@qq.com>
Date: 星期三, 09 八月 2023 20:34:44 +0800
Subject: [PATCH] 修改 行锯齿bug
---
ruoyi-ui/src/views/bignote/index.vue | 19 ++++++++++---------
1 files changed, 10 insertions(+), 9 deletions(-)
diff --git a/ruoyi-ui/src/views/bignote/index.vue b/ruoyi-ui/src/views/bignote/index.vue
index e4f5f59..9aca0c0 100644
--- a/ruoyi-ui/src/views/bignote/index.vue
+++ b/ruoyi-ui/src/views/bignote/index.vue
@@ -148,19 +148,19 @@
<el-table-column type="selection" :reserve-selection="true" width="55" align="center" />
<el-table-column label="搴忓彿" sortable type="index" :index="(queryParams.pageNum-1)*queryParams.pageSize+1" width="120"/>
- <el-table-column label="鍙戠敓鏃堕棿" prop="happenTime" sortable width="100" align="center">
+ <el-table-column label="鍙戠敓鏃堕棿" prop="happenTime" sortable width="130" align="center">
<template slot-scope="scope">{{scope.row.happenTime? scope.row.happenTime: '鈥斺�斺�斺��'}}</template>
</el-table-column>
- <el-table-column label="浜虹墿" prop="people" sortable width="100" />
- <el-table-column label="鍦扮偣" prop="address" sortable width="100" />
+ <el-table-column label="浜虹墿" prop="people" sortable width="120" />
+ <el-table-column label="鍦扮偣" prop="address" sortable width="120" />
<el-table-column label="澶т簨鏍囬" prop="title" sortable :show-overflow-tooltip="true" width="150" />
- <el-table-column label="澶囨敞" prop="remark" sortable width="100" >
+ <el-table-column label="澶囨敞" prop="remark" sortable width="120" >
<template slot-scope="scope">{{scope.row.remark? scope.row.remark: '鈥斺�斺�斺��'}}</template>
</el-table-column>
<!-- <el-table-column label="瀹跺涵鍙�" prop="familyId" sortable width="100" /> -->
- <el-table-column label="鐢靛瓙鏂囦欢" prop="url" width="180" align="center">
+ <el-table-column label="鐢靛瓙鏂囦欢" prop="url" width="150" align="center">
<template slot-scope="scope" >
<div @click="handleCheck(scope.row)">
@@ -170,15 +170,16 @@
alt=""
style="width: 35px; height: 35px;"
fit="cover"
- v-if="scope.row.url !== null "
+ v-if="!(scope.row.url === '' || scope.row.url === ',' || scope.row.url === null)"
>
<img
+ v-else
class="el-upload-list__item-thumbnail"
src="../../assets/images/deviceA.png"
alt=""
style="width: 35px; height: 35px;"
fit="cover"
- v-if="scope.row.url === null"
+
></div>
</template>
</el-table-column>
@@ -234,11 +235,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>
<el-form-item label="澶囨敞" prop="remark">
<el-input v-model="formDat.remark" placeholder="璇疯緭鍏ュ娉�" clearable :style="{width: '100%'}" ></el-input>
--
Gitblit v1.9.1