38 lines
645 B
Plaintext
38 lines
645 B
Plaintext
<template>
|
|
<div></div>
|
|
</template>
|
|
<script>
|
|
const searchDataDefault = () => {
|
|
return {
|
|
TrialSiteCode: '',
|
|
SubjectCode: '',
|
|
ModuleType: null,
|
|
ReadingStatus: null,
|
|
Name: '',
|
|
PageIndex: 1,
|
|
PageSize: 20
|
|
}
|
|
}
|
|
const MinPlanCount = 10
|
|
export default {
|
|
name: 'TrialsNotice',
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
>>>.hidden-row{
|
|
display: none;
|
|
}
|
|
>>>.el-dialog__body {
|
|
padding: 0px 20px;
|
|
}
|
|
>>>.el-dialog__header {
|
|
padding: 10px 20px;
|
|
}
|
|
|
|
>>>.el-tag--danger.el-tag--dark {
|
|
// background-color: #f56c6c!important;
|
|
border-color: none!important;
|
|
// color: #fff!important;
|
|
}
|
|
</style>
|