licp
2024-04-23 6c647afb80fb17c75218ff3e328d38df92b8d21d
完成印章管理功能
已修改2个文件
57 ■■■■■ 文件已修改
src/components/view/a5-laboratory-management.vue 19 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/view/notice-detail.vue 38 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/view/a5-laboratory-management.vue
@@ -211,10 +211,19 @@
                    showSelect: false,
                    select: false,
                    do: [],
                    tagField: {},
                    selectField: {},
                    tagField: {
            type:{
              select:[]
            }
          },
                    selectField: {
            type:{
              select:[]
            }
          },
                    requiredAdd: [],
                    requiredUp: []
                    requiredUp: [],
          addUpload:['address'],
                },
                entityCopy: {},
                upIndex: 0,
@@ -274,6 +283,8 @@
            return m
          })
          this.options[0].children = arr;
          this.fileComponentData.tagField.type.select = arr;
          this.fileComponentData.selectField.type.select = arr;
        })
      },
            refresh() {
@@ -356,7 +367,7 @@
                    if (power[i].menuMethod == 'addParameter') {
                        add = true
                    }
          if (power[i].menuMethod == 'selectSeal') {
          if (power[i].menuMethod == 'addSeal') {
                        file = true
                    }
                }
src/components/view/notice-detail.vue
@@ -2,30 +2,29 @@
  <div class="notice-detail-page">
    <div class="notice-detail-head">
      <el-row :gutter="20">
        <el-col :xs="12" :sm="8" :md="6" :lg="4" :xl="4" style="margin-bottom: 16px;"></el-col>
        <el-col :xs="24" :sm="12" :md="8" :lg="6" :xl="6" style="margin-bottom: 16px;">
          <label>主题:</label>
          <p></p>
        </el-col>
        <el-col :xs="24" :sm="12" :md="8" :lg="6" :xl="6" style="margin-bottom: 16px;">
          <label>发件时间:</label>
          <p></p>
        </el-col>
        <el-col :xs="24" :sm="12" :md="8" :lg="6" :xl="6" style="margin-bottom: 16px;">
          <label>发送人:</label>
          <p></p>
        </el-col>
        <el-col :xs="24" :sm="12" :md="8" :lg="6" :xl="6" style="margin-bottom: 16px;">
          <label>收件人:</label>
          <p></p>
        </el-col>
      </el-row>
      <div class="head-item">
        <label>主题:</label>
        <p></p>
      </div>
      <div class="head-item">
        <label>内容:</label>
        <p></p>
      </div>
      <div class="head-item">
        <label>发件时间:</label>
        <p></p>
      </div>
      <div class="head-item">
        <label>发送人:</label>
        <p></p>
      </div>
      <div class="head-item">
        <label>收件人:</label>
        <p></p>
      </div>
    </div>
    <component class="notice-content" :is="noticeInfo.u">
    <component class="notice-content" :is="noticeInfo.u" style="height: calc(100% - 120px);">
        </component>
  </div>
</template>
@@ -64,8 +63,5 @@
  padding: 16px;
}
.notice-detail-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
</style>