|
@@ -221,7 +221,7 @@
|
|
|
</FormItem>
|
|
|
|
|
|
|
|
|
- <FormItem label="归档时间" v-if="others.contractStatus == '1' && others.contract_archive_status == '1'">
|
|
|
+ <FormItem required label="归档时间" v-if="others.contractStatus == '1' && others.contract_archive_status == '1'">
|
|
|
<date-sigle ref="sigleRef5" :dateType="'date'" :placeholderd="'请选择归档时间'" @startDate="guiDate"
|
|
|
:overTime="0"></date-sigle>
|
|
|
</FormItem>
|
|
@@ -1186,6 +1186,10 @@ export default {
|
|
|
this.$Notice.warning({ title: '请选择签约主体' })
|
|
|
return
|
|
|
}
|
|
|
+ if(this.others.contract_archive_status == '1' && !this.others.contract_archive_time){
|
|
|
+ this.$Notice.warning({ title: '请选择归档时间' })
|
|
|
+ return
|
|
|
+ }
|
|
|
if (this.others.contractMoney == 0) { // 合同金额为0 则计费模式置为免费
|
|
|
this.others.chargeMode = '0'
|
|
|
} else {
|