|
|
|
@ -58,7 +58,6 @@
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item prop="expireDate">
|
|
|
|
|
|
|
|
|
|
<el-date-picker
|
|
|
|
|
v-model="formData.expireDate"
|
|
|
|
|
type="date"
|
|
|
|
@ -67,9 +66,19 @@
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
placeholder="请选择失效期">
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="1">
|
|
|
|
|
<el-radio-group v-model="formData.expireDate">
|
|
|
|
|
<el-radio-button
|
|
|
|
|
v-model="formData.expireDate"
|
|
|
|
|
label="2999-01-01"
|
|
|
|
|
type="date"
|
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
|
:disabled="this.formData.expireDate != null || formData.auditStatus == 1"
|
|
|
|
|
>永久有效</el-radio-button>
|
|
|
|
|
</el-radio-group>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -85,7 +94,6 @@
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -250,7 +258,6 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
submitUpload(){
|
|
|
|
|
debugger
|
|
|
|
|
if(this.editTye == 1){
|
|
|
|
|
this.onConfirmSubmit();
|
|
|
|
|
}else{
|
|
|
|
@ -274,7 +281,6 @@ export default {
|
|
|
|
|
updateCert(){
|
|
|
|
|
updateCert(this.formData).then((res)=>{
|
|
|
|
|
if(res.code == 20000){
|
|
|
|
|
debugger
|
|
|
|
|
this.$message.success("修改成功!")
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
}else{
|
|
|
|
|