|
@@ -7,7 +7,7 @@
|
|
|
</div>
|
|
|
<table border="1" cellspacing="0" class="table">
|
|
|
<tr id="two">
|
|
|
- <td colspan="4"><span style="color:red">*</span>活动名称</td>
|
|
|
+ <td colspan="4" class="bold"><span style="color:red">*</span>活动名称</td>
|
|
|
<td colspan="5">
|
|
|
<el-input
|
|
|
type="textarea"
|
|
@@ -17,12 +17,12 @@
|
|
|
v-model="wordData['activityName']">
|
|
|
</el-input>
|
|
|
</td>
|
|
|
- <td colspan="3">预算经费</td>
|
|
|
+ <td colspan="3" class="bold">预算经费</td>
|
|
|
<td @click="goto('#fund')" colspan="4" v-text="total">
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr id="three">
|
|
|
- <td colspan="4"><span style="color:red">*</span>项目负责人</td><td colspan="3">
|
|
|
+ <td colspan="4" class="bold"><span style="color:red">*</span>项目负责人</td><td colspan="3">
|
|
|
<el-input
|
|
|
type="textarea"
|
|
|
autosize
|
|
@@ -30,7 +30,7 @@
|
|
|
placeholder="请输入负责人"
|
|
|
v-model="wordData['pro_leader']">
|
|
|
</el-input>
|
|
|
- </td><td colspan="2"><span style="color:red">*</span>所在部门</td><td colspan="3">
|
|
|
+ </td><td colspan="2" class="bold"><span style="color:red">*</span>所在部门</td><td colspan="3">
|
|
|
<el-select v-model="wordData['college']" style="width: 100%;" placeholder="请选择所在学院">
|
|
|
<el-option
|
|
|
v-for="item in DepartmentData"
|
|
@@ -39,7 +39,7 @@
|
|
|
:value="item.id">
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
- </td><td colspan="2"><span style="color:red">*</span>联系电话</td><td colspan="3">
|
|
|
+ </td><td colspan="2" class="bold"><span style="color:red">*</span>联系电话</td><td colspan="3">
|
|
|
<el-input
|
|
|
type="textarea"
|
|
|
autosize
|
|
@@ -50,7 +50,7 @@
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr id="four">
|
|
|
- <td colspan="4"><span style="color:red">*</span>活动时间</td>
|
|
|
+ <td colspan="4" class="bold"><span style="color:red">*</span>活动时间</td>
|
|
|
<td colspan="5">
|
|
|
<el-date-picker
|
|
|
v-model="wordData['activityTime']"
|
|
@@ -62,7 +62,7 @@
|
|
|
end-placeholder="项目完成时间">
|
|
|
</el-date-picker>
|
|
|
</td>
|
|
|
- <td colspan="3">参与学生人数</td><td colspan="5">
|
|
|
+ <td colspan="3" class="bold">参与学生人数</td><td colspan="5">
|
|
|
<el-input
|
|
|
type="number"
|
|
|
autosize
|
|
@@ -408,48 +408,52 @@
|
|
|
|
|
|
tr{
|
|
|
position: relative;
|
|
|
- td{
|
|
|
- border: none;
|
|
|
- border-bottom: solid 1px black;
|
|
|
- border-right: solid 1px black;
|
|
|
- height: 50px;
|
|
|
- text-align: center;
|
|
|
- line-height: 30px;
|
|
|
- width: 80px;
|
|
|
- &:nth-child(1){
|
|
|
- border-left: solid 1px black;
|
|
|
- }
|
|
|
- p{
|
|
|
+ .bold{
|
|
|
font-weight: 600;
|
|
|
}
|
|
|
- :deep(.el-select .el-input .el-select__caret){
|
|
|
- display: none;
|
|
|
- font-family:Arial,"Microsoft Yahe","微软雅黑";
|
|
|
- }
|
|
|
- :deep(.el-textarea__inner){
|
|
|
- // padding: 0;
|
|
|
- border: none ;
|
|
|
- border-radius: 0px;
|
|
|
+ td{
|
|
|
+ border: none;
|
|
|
+ border-bottom: solid 1px black;
|
|
|
+ border-right: solid 1px black;
|
|
|
+ height: 50px;
|
|
|
text-align: center;
|
|
|
- font-size: 16px;
|
|
|
- font-family:Arial,"Microsoft Yahe","微软雅黑";
|
|
|
- }
|
|
|
- :deep(.el-input__inner){
|
|
|
- border: none ;
|
|
|
- font-family:Arial,"Microsoft Yahe","微软雅黑";
|
|
|
- &::-webkit-outer-spin-button,&::-webkit-inner-spin-button{
|
|
|
- -webkit-appearance: none !important;
|
|
|
+ line-height: 30px;
|
|
|
+ width: 80px;
|
|
|
+ &:nth-child(1){
|
|
|
+ border-left: solid 1px black;
|
|
|
}
|
|
|
- &[type='number'] {
|
|
|
- -moz-appearance: textfield;
|
|
|
+
|
|
|
+ p{
|
|
|
+ font-weight: 600;
|
|
|
+ }
|
|
|
+ :deep(.el-select .el-input .el-select__caret){
|
|
|
+ display: none;
|
|
|
+ font-family:Arial,"Microsoft Yahe","微软雅黑";
|
|
|
+ }
|
|
|
+ :deep(.el-textarea__inner){
|
|
|
+ // padding: 0;
|
|
|
+ border: none ;
|
|
|
+ border-radius: 0px;
|
|
|
+ text-align: center;
|
|
|
+ font-size: 16px;
|
|
|
+ font-family:Arial,"Microsoft Yahe","微软雅黑";
|
|
|
+ }
|
|
|
+ :deep(.el-input__inner){
|
|
|
+ border: none ;
|
|
|
+ font-family:Arial,"Microsoft Yahe","微软雅黑";
|
|
|
+ &::-webkit-outer-spin-button,&::-webkit-inner-spin-button{
|
|
|
+ -webkit-appearance: none !important;
|
|
|
+ }
|
|
|
+ &[type='number'] {
|
|
|
+ -moz-appearance: textfield;
|
|
|
+ }
|
|
|
+
|
|
|
+ border-radius: 0px;
|
|
|
+ text-align: center;
|
|
|
+ font-size: 16px;
|
|
|
}
|
|
|
-
|
|
|
- border-radius: 0px;
|
|
|
- text-align: center;
|
|
|
- font-size: 16px;
|
|
|
- }
|
|
|
|
|
|
- }
|
|
|
+ }
|
|
|
}
|
|
|
.textLeft{
|
|
|
:deep(.el-textarea__inner){
|