linwenling
2023-08-01 c62776b21679c54f8e65baeb805b891e962c3eef
部分行列间隔修改
6个文件已修改
75 ■■■■■ 已修改文件
ruoyi-ui/src/views/bignote/index.vue 10 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/contacts/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/device/index.vue 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/healthy/healthyInfo.vue 43 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/note/index.vue 12 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/wish/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
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)">
ruoyi-ui/src/views/contacts/index.vue
@@ -144,7 +144,7 @@
      <el-table-column type="selection" :reserve-selection="true" width="25"  align="center" />
      <el-table-column fixed label="序号" sortable type="index" :index="(queryParams.pageNum-1)*queryParams.pageSize+1" width="80"/>
      <el-table-column label="家人姓名" prop="myName" sortable width="160" >
      <el-table-column label="家人姓名" prop="myName" sortable width="130" >
        <template slot-scope="scope">
          <div>
            <a href="javascript:;" @click="handleCheck(scope.row)">{{scope.row.myName}}</a>
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)">
ruoyi-ui/src/views/healthy/healthyInfo.vue
@@ -1,7 +1,7 @@
<template>
  <div class="app-container">
    <div class="form-header mt">
      <h4 class="dt h4">隐私详细信息 </h4>
      <h4 class="dt h4">健康详细信息 </h4>
    </div>
@@ -164,52 +164,33 @@
      btn:false,
      isShow:true,
      formData: {
        checkTime: undefined,
        hospital: undefined,
        type: undefined,
        happenTime: undefined,
        accNo:undefined,
        validityDate:undefined,
        password:undefined,
        validityDate:undefined,
        isFinger:undefined,
        isFace:undefined,
        isPrivate:undefined,
        location:undefined,
        title:undefined,
        notice:undefined,
        remark: undefined,
        url: undefined,
      },
      dialogImageUrl: '',
      dialogVisible: false,
      disabled: false,
      rules: {
        password: [{
        title: [{
          required: true,
          message: '请输入密码',
          message: '请输入标题',
          trigger: 'blur'
        }],
        accNo: [{
        hospital: [{
          required: true,
          message: '请输入账号',
          message: '请输入医院',
          trigger: 'blur'
        }],
        type: [{
          required: true,
          message: '请选择基金/台账',
          trigger: 'change'
        }],
        isFinger: [{
          required: true,
          message: '请选择是否',
          trigger: 'change'
        }],
        isFace: [{
          required: true,
          message: '请选择是否',
          trigger: 'change'
        }],
        isPrivate: [{
          required: true,
          message: '请选择是否',
          trigger: 'change'
        }],
@@ -218,9 +199,9 @@
          message: '请选择有效期',
          trigger: 'change'
        }],
        happenTime: [{
        checkTime: [{
          required: true,
          message: '请选择有效期',
          message: '请选择就诊时间',
          trigger: 'change'
        }],
ruoyi-ui/src/views/note/index.vue
@@ -135,17 +135,17 @@
      <el-table-column label="类型" prop="type" sortable :show-overflow-tooltip="true" width="150" />
      <el-table-column label="标题" prop="title" sortable :show-overflow-tooltip="true" width="150" />
      <el-table-column label="存储地址" prop="location" sortable width="100" />
      <el-table-column label="持有人" prop="holder" sortable width="100" />
      <el-table-column label="具体位置" prop="address" sortable width="100" />
      <el-table-column label="备注" prop="remark" sortable width="100" >
      <el-table-column label="存储地址" prop="location" sortable width="120" />
      <el-table-column label="持有人" prop="holder" sortable width="120" />
      <el-table-column label="具体位置" prop="address" sortable width="120" />
      <el-table-column label="备注" prop="remark" sortable width="130" >
        <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="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="url" width="160" >
      <el-table-column label="电子文件" prop="url" width="130" >
        <template slot-scope="scope" >
          <div  @click="handleCheck(scope.row)">
          <img
ruoyi-ui/src/views/wish/index.vue
@@ -188,7 +188,7 @@
      <el-table-column label="时间" prop="happenTime" sortable width="100" align="center">
        <template slot-scope="scope">{{scope.row.happenTime? scope.row.happenTime: '————'}}</template>
      </el-table-column>
      <el-table-column label="理想标题/百年心愿" prop="title" sortable width="150" align="center">
      <el-table-column label="理想标题/百年心愿" prop="title" sortable width="160" align="center">
        <template slot-scope="scope">{{scope.row.title? scope.row.title: '————'}}</template>
      </el-table-column>
      <el-table-column label="始于何因" prop="cause" sortable :show-overflow-tooltip="true" width="120" align="center" >