Compare commits
No commits in common. "de832afac848d5b3cc850e077c5038a76e1c232e" and "17c796bd53f8a3bedfd36a489d8275bf6e55378f" have entirely different histories.
de832afac8
...
17c796bd53
|
@ -15,22 +15,24 @@
|
||||||
<Notes ref="notes" class="mt5" />
|
<Notes ref="notes" class="mt5" />
|
||||||
</div>
|
</div>
|
||||||
<div class="d_footer">
|
<div class="d_footer">
|
||||||
<div class="d_func_row">
|
<!-- 保存 -->
|
||||||
<div
|
<el-button
|
||||||
v-if="state === 0 && userTypeEnumInt === 0"
|
v-if="state === 0 && userTypeEnumInt === 0 "
|
||||||
class="d_func"
|
type="primary"
|
||||||
|
size="large"
|
||||||
@click="handleSave"
|
@click="handleSave"
|
||||||
>
|
>
|
||||||
{{ $t('common:button:save') }}
|
{{ $t('common:button:save') }}
|
||||||
</div>
|
</el-button>
|
||||||
<div
|
<!-- 提交 -->
|
||||||
|
<el-button
|
||||||
v-if="(state === 0 && userTypeEnumInt === 0)"
|
v-if="(state === 0 && userTypeEnumInt === 0)"
|
||||||
class="d_func"
|
type="primary"
|
||||||
|
size="large"
|
||||||
@click="handleSubmit('submit')"
|
@click="handleSubmit('submit')"
|
||||||
>
|
>
|
||||||
{{ $t('trials:researchForm:button:submit') }}
|
{{ $t('trials:researchForm:button:submit') }}
|
||||||
</div>
|
</el-button>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -183,34 +185,6 @@ export default {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
}
|
}
|
||||||
.d_func_row{
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
justify-content: space-between;
|
|
||||||
}
|
|
||||||
.d_func{
|
|
||||||
flex: 1;
|
|
||||||
margin: 20px;
|
|
||||||
color: #fff;
|
|
||||||
background-color: #428bca;
|
|
||||||
border-color: #428bca;
|
|
||||||
padding: 12px 20px;
|
|
||||||
font-size: 14px;
|
|
||||||
border-radius: 4px;
|
|
||||||
transition: .1s;
|
|
||||||
font-weight: 500;
|
|
||||||
box-sizing: border-box;
|
|
||||||
outline: 0;
|
|
||||||
text-align: center;
|
|
||||||
line-height: 1;
|
|
||||||
white-space: nowrap;
|
|
||||||
cursor: pointer;
|
|
||||||
&:hover{
|
|
||||||
background: #68a2d5;
|
|
||||||
border-color: #68a2d5;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.mt5{
|
.mt5{
|
||||||
margin-top: 5px
|
margin-top: 5px
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue