| | |
| | | <el-table v-loading="loading" :data="familyList" :row-key="getRowId" ref="multipleTable" @selection-change="handleSelectionChange" :row-class-name="tableRowClassName"> |
| | | <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="130" align="center"> |
| | | <el-table-column label="序号" sortable type="index" :index="(queryParams.pageNum-1)*queryParams.pageSize+1" width="80px"/> |
| | | <el-table-column label="发生时间" prop="happenTime" sortable width="200px" align="center"> |
| | | <template slot-scope="scope">{{scope.row.happenTime? scope.row.happenTime: '————'}}</template> |
| | | </el-table-column> |
| | | <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="people" sortable width="150px" /> |
| | | <el-table-column label="地点" prop="address" sortable width="150px" /> |
| | | <el-table-column label="大事标题" prop="title" sortable :show-overflow-tooltip="true" width="150px" /> |
| | | |
| | | <el-table-column label="备注" prop="remark" sortable width="120" > |
| | | <el-table-column label="备注" prop="remark" sortable width="150px" > |
| | | <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="150" align="center"> |
| | | <el-table-column label="电子文件" prop="url" width="150px" align="center"> |
| | | |
| | | <template slot-scope="scope" > |
| | | <div @click="handleCheck(scope.row)"> |
| | |
| | | :http-request="requestUpload" |
| | | :file-list="fileList" |
| | | > |
| | | <div v-if="uploading" class="upload-status">正在上传...</div> |
| | | <i v-if="!uploading" slot="default" class="el-icon-plus"></i> |
| | | |
| | | <i slot="default" class="el-icon-plus"></i> |
| | | <div slot="file" slot-scope="{file}"> |
| | | <img |
| | | class="el-upload-list__item-thumbnail" |
| | |
| | | :http-request="requestUpload" |
| | | :show-file-list="true" |
| | | > |
| | | |
| | | <el-button type="primary">点击上传</el-button> |
| | | <div v-if="uploading" class="upload-status">正在上传...</div> |
| | | <template #tip> |
| | | <div class="el-upload__tip"> |
| | | </div> |