#TRS-ZS-95 文件管理没有删除

This commit is contained in:
汤旺
2024-06-05 14:24:03 +08:00
parent de42d3f5ed
commit 5fa7459cfe
3 changed files with 0 additions and 97 deletions
@@ -1,95 +0,0 @@
@{
Layout = null;
}
<div class="modal" tabindex="-1" id="clientFileEditModal" data-backdrop="static">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">上传客户文件</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="form-group">
<label class="formlabel">文件:</label>
<input type="file" accept=".*" id="uploadfile" multiple="multiple">
</div>
<div class="form-group">
<label class="formlabel">文件类型:</label>
<select v-model="file.FileTypeName" name="FileTypeName">
<option v-for="item in viewData['文件类型']" v-bind:value="item.value" v-bind:disabled="item.text.startsWith('代签')&&client.ClientType!=='产品'">{{item.text}}</option>
</select>
<span style="color:red">*</span>
</div>
<div class="form-group">
<label class="formlabel">操作时间:</label>
<flat-pickr :config="dateTimePicker" class="form_datetime" v-model="file.OptDate" name="OptDate"></flat-pickr>
<span style="color:red">*</span>
</div>
<div class="form-group" v-show="showFileBookTime">
<label class="formlabel">双录时间:</label>
<vue-datepicker v-model="file.BookTime" name="BookTime" v-bind:holiday="true" class="text-box" autocomplete="off"></vue-datepicker>
<span style="color:red">*</span>
</div>
<div class="form-group" v-show="showFileSignDate">
<label class="formlabel">签署日期:</label>
<vue-datepicker v-model="file.SignDate" name="SignDate" v-bind:holiday="true" class="text-box" autocomplete="off"></vue-datepicker>
<span style="color:red">*</span>
</div>
<div class="form-group">
<label class="formlabel">文件说明:</label>
<input class="text-box" v-model="file.FileDesc" name="FileDesc" type="text" />
</div>
<div class="form-group" v-show="showParentMainProtocalNumber">
<label class="formlabel">母协议编号:</label>
<select v-model="file.ParentClientFileId" name="ParentClientFileId">
<option v-for="item in mainParentProtocolNumberItems" v-bind:value="item.id">{{item.ProtocolNumber}}</option>
</select>
<span style="color:red">*</span>
</div>
<div class="form-group" v-show="showFileProtocolNumber">
<label class="formlabel">协议编号:</label>
<input class="text-box" v-model="file.ProtocolNumber" name="ProtocolNumber" type="text" />
<span v-if="!pageData.is华西|| file.FileTypeName=='代签产品附件(PDF)'" style="color:red">*</span>
</div>
<div class="form-group" v-show="showFileMainProtocolNumber">
<label class="formlabel">主协议编号:</label>
<select v-model="file.MainProtocolNumber" name="MainProtocolNumber">
<option v-for="item in mainProtocolNumberItems" v-bind:value="item">{{item}}</option>
</select>
<span v-if="!pageData.is华西" style="color:red">*</span>
</div>
<div class="form-group" v-show="showFileSideProtocolNumber">
<label class="formlabel">补充协议编号:</label>
<select v-model="file.SideProtocolNumber" name="SideProtocolNumber">
<option v-for="item in sideProtocolNumberItems" v-bind:value="item">{{item}}</option>
</select>
<span v-if="!pageData.is华西" style="color:red">*</span>
</div>
<div class="form-group" v-show="showFileSignType">
<label class="formlabel">签署版本:</label>
<select v-model="file.SignType" name="SignType">
<option v-for="item in viewData['权益类签署版本']" v-bind:value="item.value">{{item.text}}</option>
</select>
<span style="color:red">*</span>
</div>
<div class="form-group" v-show="showFileReportorRole">
<label class="formlabel">填报方角色:</label>
<select v-model="file.ReportorRole" name="ReportorRole">
<option value="甲方">甲方</option>
<option value="乙方">乙方</option>
</select>
<span style="color:red">*</span>
</div>
<div style="margin: 20px; color: red;">协议文件变更,客户将重新审核</div>
</div>
<div class="modal-footer">
<div class="m-auto">
<button class="btn btn-primary" type="button" v-on:click="saveFile">上传</button>
</div>
</div>
</div>
</div>
</div>
@@ -135,7 +135,6 @@
@await Html.PartialAsync("_ClientBankcardEdit")
@await Html.PartialAsync("_ClientDutyEdit")
@await Html.PartialAsync("_ClientDutyDirectorEdit")
@await Html.PartialAsync("_ClientFileEdit")
@await Html.PartialAsync("_UploadProgress")
@await Html.PartialAsync("_ClientInvestorsEdit")
}
@@ -138,7 +138,6 @@
@await Html.PartialAsync("_ClientBankcardEdit")
@await Html.PartialAsync("_ClientDutyEdit")
@await Html.PartialAsync("_ClientDutyDirectorEdit")
@await Html.PartialAsync("_ClientFileEdit")
@await Html.PartialAsync("_UploadProgress")
}
@if (clientModel.ClientType == "产品")