Browse Source

1、论文信息二补充副标题

master
Aug 4 weeks ago
parent
commit
e16dae6884
4 changed files with 19 additions and 0 deletions
  1. +4
    -0
      jeecg-boot-base/jeecg-boot-base-core/src/main/java/org/jeecg/modules/educationThesisTwo/entity/EducationThesisTwo.java
  2. +4
    -0
      jeecg-boot-base/jeecg-boot-base-core/src/main/java/org/jeecg/modules/educationThesisTwo/vo/EducationThesisTwoPage.java
  3. +6
    -0
      jeecg-boot-base/jeecg-boot-base-core/src/main/java/org/jeecg/modules/educationThesisTwo/vue/EducationThesisTwoList.vue
  4. +5
    -0
      jeecg-boot-base/jeecg-boot-base-core/src/main/java/org/jeecg/modules/educationThesisTwo/vue/modules/EducationThesisTwoForm.vue

+ 4
- 0
jeecg-boot-base/jeecg-boot-base-core/src/main/java/org/jeecg/modules/educationThesisTwo/entity/EducationThesisTwo.java View File

@ -57,6 +57,10 @@ public class EducationThesisTwo implements Serializable {
@Excel(name = "标题", width = 15)
@ApiModelProperty(value = "标题")
private java.lang.String title;
/**副标题*/
@Excel(name = "副标题", width = 15)
@ApiModelProperty(value = "副标题")
private java.lang.String shortTitle;
/**封面/海报图片*/
@Excel(name = "封面/海报图片", width = 15)
@ApiModelProperty(value = "封面/海报图片")


+ 4
- 0
jeecg-boot-base/jeecg-boot-base-core/src/main/java/org/jeecg/modules/educationThesisTwo/vo/EducationThesisTwoPage.java View File

@ -53,6 +53,10 @@ public class EducationThesisTwoPage {
@Excel(name = "标题", width = 15)
@ApiModelProperty(value = "标题")
private java.lang.String title;
/**副标题*/
@Excel(name = "副标题", width = 15)
@ApiModelProperty(value = "副标题")
private java.lang.String shortTitle;
/**封面/海报图片*/
@Excel(name = "封面/海报图片", width = 15)
@ApiModelProperty(value = "封面/海报图片")


+ 6
- 0
jeecg-boot-base/jeecg-boot-base-core/src/main/java/org/jeecg/modules/educationThesisTwo/vue/EducationThesisTwoList.vue View File

@ -135,6 +135,11 @@
align:"center",
dataIndex: 'title'
},
{
title:'副标题',
align:"center",
dataIndex: 'shortTitle'
},
{
title:'封面/海报图片',
align:"center",
@ -271,6 +276,7 @@
fieldList.push({type:'string',value:'categoryOne',text:'一级分类'})
fieldList.push({type:'string',value:'categoryTwo',text:'二级分类',dictCode:''})
fieldList.push({type:'Text',value:'title',text:'标题',dictCode:''})
fieldList.push({type:'Text',value:'shortTitle',text:'副标题',dictCode:''})
fieldList.push({type:'Text',value:'paperImage',text:'封面/海报图片',dictCode:''})
fieldList.push({type:'Text',value:'image',text:'详情页图片',dictCode:''})
fieldList.push({type:'Text',value:'titleModuleOne',text:'模块标题一',dictCode:''})


+ 5
- 0
jeecg-boot-base/jeecg-boot-base-core/src/main/java/org/jeecg/modules/educationThesisTwo/vue/modules/EducationThesisTwoForm.vue View File

@ -19,6 +19,11 @@
<a-input v-model="model.title" placeholder="请输入标题" ></a-input>
</a-form-model-item>
</a-col>
<a-col :span="24" >
<a-form-model-item label="副标题" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="shortTitle">
<a-input v-model="model.shortTitle" placeholder="请输入副标题" ></a-input>
</a-form-model-item>
</a-col>
<a-col :span="24" >
<a-form-model-item label="封面/海报图片" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="paperImage">
<j-image-upload isMultiple v-model="model.paperImage" ></j-image-upload>


Loading…
Cancel
Save