1102提交
This commit is contained in:
@@ -10,7 +10,8 @@
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item label="仲裁方式">{{ timeData.arbitratMethodName }}</el-descriptions-item>
|
||||
<el-descriptions-item label="开庭时间">
|
||||
<el-date-picker v-model="loanStartDate" type="datetime" placeholder="开庭时间">
|
||||
<el-date-picker v-model="loanStartDate" :picker-options="pickerOptions" type="datetime"
|
||||
placeholder="开庭时间">
|
||||
</el-date-picker>
|
||||
</el-descriptions-item>
|
||||
|
||||
@@ -31,7 +32,12 @@ export default {
|
||||
props: ["timeVisable", "timeData"],
|
||||
data() {
|
||||
return {
|
||||
loanStartDate: ""
|
||||
loanStartDate: "",
|
||||
pickerOptions: {
|
||||
disabledDate(time) {
|
||||
return time.getTime() < Date.now() - 8.64e7;
|
||||
}
|
||||
}
|
||||
};
|
||||
},
|
||||
watch: {
|
||||
|
||||
Reference in New Issue
Block a user