Compare commits

..

No commits in common. "ce565e00ff2bb1619669aec2733d6918872a0326" and "85463ad24017a074e3745298fc05a926b610afbb" have entirely different histories.

3 changed files with 6 additions and 5 deletions

View File

@ -28,10 +28,10 @@
<el-button size="mini" type="text" @click.stop="edit(scope.row)"> <el-button size="mini" type="text" @click.stop="edit(scope.row)">
{{ $t('common:button:edit') }} {{ $t('common:button:edit') }}
</el-button> </el-button>
<!-- <el-button size="mini" type="text" @click.stop="OffLine(scope.row, true)" <el-button size="mini" type="text" @click.stop="OffLine(scope.row, true)"
:disabled="scope.row.OffLine"> :disabled="scope.row.OffLine">
{{ $t('dictionary:signature:attachmentList:OffLine') }} {{ $t('dictionary:signature:attachmentList:OffLine') }}
</el-button> --> </el-button>
<el-button size="mini" type="text" @click.stop="del(scope.row)"> <el-button size="mini" type="text" @click.stop="del(scope.row)">
{{ $t('common:button:delete') }} {{ $t('common:button:delete') }}
</el-button> </el-button>

View File

@ -20,7 +20,8 @@
<el-form :inline="true" size="small"> <el-form :inline="true" size="small">
<el-form-item :label="$t('dictionary:signature:search:FileTypeId')"> <el-form-item :label="$t('dictionary:signature:search:FileTypeId')">
<el-select v-model="searchData.FileTypeId" style="width: 150px" clearable> <el-select v-model="searchData.FileTypeId" style="width: 150px" clearable>
<el-option v-for="item of $d.Sys_Document" :key="item.id" :label="item.label" :value="item.id" /> <el-option v-for="item of dict.type.Sys_Document" :key="item.value" :label="item.label"
:value="item.value" />
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item :label="$t('dictionary:signature:search:Name')"> <el-form-item :label="$t('dictionary:signature:search:Name')">
@ -141,7 +142,7 @@
<TemplateForm :data="currentRow" @closeDialog="closeDialog" @getList="getList" /> <TemplateForm :data="currentRow" @closeDialog="closeDialog" @getList="getList" />
</el-dialog> </el-dialog>
<!--附件列表--> <!--附件列表-->
<attachmentList v-if="config.visible" :config="config" :SystemDocumentId="SystemDocumentId" @getList="getList" /> <attachmentList v-if="config.visible" :config="config" :SystemDocumentId="SystemDocumentId" @getLit="getList" />
<!-- 预览文件 --> <!-- 预览文件 -->
<el-dialog v-if="previewVisible" :visible.sync="previewVisible" :title="$t('common:button:preview')" <el-dialog v-if="previewVisible" :visible.sync="previewVisible" :title="$t('common:button:preview')"
:fullscreen="true" append-to-body custom-class="base-dialog-wrapper"> :fullscreen="true" append-to-body custom-class="base-dialog-wrapper">

View File

@ -41,7 +41,7 @@
<!-- 签署人 --> <!-- 签署人 -->
<el-form-item :label="$t('trials:signRecords:table:user')" v-if="!isDoc"> <el-form-item :label="$t('trials:signRecords:table:user')" v-if="!isDoc">
<el-select v-model="searchData.UserId" clearable filterable style="width: 140px"> <el-select v-model="searchData.UserId" clearable filterable style="width: 140px">
<el-option v-for="item of userOptions" :key="item.ConfirmUserId" :label="item.FullName" :value="item.ConfirmUserId"> <el-option v-for="item of userOptions" :key="item.UserId" :label="item.RealName" :value="item.UserId">
<span style="float: left">{{ item.RealName || item.FullName }}</span> <span style="float: left">{{ item.RealName || item.FullName }}</span>
<span style=" <span style="
float: right; float: right;