Browse Source

:package: 页面资源管理、获取新闻顶部资源接口

Twelve615 1 year ago
parent
commit
67f9b5cc5a

+ 30 - 25
jlsb-vue/src/views/aa/AaPosterList.vue

@@ -5,8 +5,8 @@
       <a-form layout="inline" @keyup.enter.native="searchQuery">
         <a-row :gutter="24">
           <a-col :xl="6" :lg="7" :md="8" :sm="24">
-            <a-form-item label="海报名称">
-              <a-input placeholder="请输入海报名称" v-model="queryParam.name"></a-input>
+            <a-form-item label="资源名称">
+              <a-input placeholder="请输入资源名称" v-model="queryParam.name"></a-input>
             </a-form-item>
           </a-col>
           <a-col :xl="10" :lg="11" :md="12" :sm="24">
@@ -34,26 +34,26 @@
     <!-- 操作按钮区域 -->
     <div class="table-operator">
       <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>
-      <a-button type="primary" icon="download" @click="handleExportXls('海报管理')">导出</a-button>
+<!--      <a-button type="primary" icon="download" @click="handleExportXls('海报管理')">导出</a-button>-->
 <!--      <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">-->
 <!--        <a-button type="primary" icon="import">导入</a-button>-->
 <!--      </a-upload>-->
       <!-- 高级查询区域 -->
-      <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>
-      <a-dropdown v-if="selectedRowKeys.length > 0">
-        <a-menu slot="overlay">
-          <a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
-        </a-menu>
-        <a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button>
-      </a-dropdown>
+<!--      <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>-->
+<!--      <a-dropdown v-if="selectedRowKeys.length > 0">-->
+<!--        <a-menu slot="overlay">-->
+<!--          <a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>-->
+<!--        </a-menu>-->
+<!--        <a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button>-->
+<!--      </a-dropdown>-->
     </div>
 
     <!-- table区域-begin -->
     <div>
-      <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
+<!--      <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
         <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>项
         <a style="margin-left: 24px" @click="onClearSelected">清空</a>
-      </div>
+      </div>-->
 
       <a-table
         ref="table"
@@ -65,10 +65,9 @@
         :dataSource="dataSource"
         :pagination="ipagination"
         :loading="loading"
-        :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
         class="j-table-force-nowrap"
         @change="handleTableChange">
-
+        <!--        :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"-->
         <template slot="htmlSlot" slot-scope="text">
           <div v-html="text"></div>
         </template>
@@ -99,7 +98,7 @@
               <a-menu-item>
                 <a @click="handleDetail(record)">详情</a>
               </a-menu-item>
-              <a-menu-item>
+              <a-menu-item v-if="staticId.indexOf(record.id)<0">
                 <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
                   <a>删除</a>
                 </a-popconfirm>
@@ -130,7 +129,8 @@
     },
     data () {
       return {
-        description: '海报管理管理页面',
+        staticId: ['1734144586119450625'],
+        description: '页面顶部资源管理页面',
         // 表头
         columns: [
           {
@@ -144,17 +144,22 @@
             }
           },
           {
-            title:'海报名称',
+            title:'资源名称',
             align:"center",
             dataIndex: 'name'
           },
           {
-            title:'海报图',
+            title:'资源名称英文',
             align:"center",
-            dataIndex: 'cover',
-            scopedSlots: {customRender: 'imgSlot'}
+            dataIndex: 'nameEnglish'
           },
           {
+            title:'资源连接',
+            align:"center",
+            dataIndex: 'cover',
+            scopedSlots: {customRender: 'fileSlot'}
+          },
+/*           {
             title:'链接',
             align:"center",
             dataIndex: 'link'
@@ -163,7 +168,7 @@
             title:'权重',
             align:"center",
             dataIndex: 'sort'
-          },
+          }, */
           {
             title:'创建时间',
             align:"center",
@@ -204,10 +209,10 @@
       },
       getSuperFieldList(){
         let fieldList=[];
-        fieldList.push({type:'string',value:'name',text:'海报名称',dictCode:''})
-        fieldList.push({type:'string',value:'cover',text:'海报图',dictCode:''})
-        fieldList.push({type:'string',value:'link',text:'链接',dictCode:''})
-        fieldList.push({type:'int',value:'sort',text:'权重',dictCode:''})
+        fieldList.push({type:'string',value:'name',text:'资源名称',dictCode:''})
+        fieldList.push({type:'string',value:'cover',text:'资源链接',dictCode:''})
+        // fieldList.push({type:'string',value:'link',text:'链接',dictCode:''})
+        // fieldList.push({type:'int',value:'sort',text:'权重',dictCode:''})
         fieldList.push({type:'date',value:'createTime',text:'创建时间'})
         this.superFieldList = fieldList
       }

+ 6 - 1
jlsb-vue/src/views/aa/modules/AaPosterForm.vue

@@ -5,7 +5,12 @@
         <a-row>
           <a-col :span="24">
             <a-form-model-item label="资源名称" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="name">
-              <a-input v-model="model.name" placeholder="请输入海报名称"  ></a-input>
+              <a-input v-model="model.name" placeholder="请输入资源名称"  ></a-input>
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="资源名称英文" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="name">
+              <a-input v-model="model.nameEnglish" placeholder="请输入资源名称"  ></a-input>
             </a-form-model-item>
           </a-col>
           <a-col :span="24">

+ 2 - 2
jlsb/jeecg-boot-module-system/src/main/java/org/jeecg/modules/aa/entity/AaNews.java

@@ -53,11 +53,11 @@ public class AaNews implements Serializable {
     private String titleGerman;
     /**新闻内容*/
     @Excel(name = "新闻摘要", width = 15)
-    @ApiModelProperty(value = "新闻内容")
+    @ApiModelProperty(value = "新闻摘要")
     private String des;
     /**新闻内容英语*/
     @Excel(name = "新闻摘要英语", width = 15)
-    @ApiModelProperty(value = "新闻内容英语")
+    @ApiModelProperty(value = "新闻摘要英语")
     private String desEnglish;
     ///**新闻内容德语*/
     //@Excel(name = "新闻内容德语", width = 15)

+ 6 - 2
jlsb/jeecg-boot-module-system/src/main/java/org/jeecg/modules/aa/entity/AaPoster.java

@@ -35,11 +35,15 @@ public class AaPoster implements Serializable {
 	@TableId(type = IdType.ASSIGN_ID)
     @ApiModelProperty(value = "id")
     private String id;
-	/**海报名称*/
+	/**资源名称*/
 	@Excel(name = "资源名称", width = 15)
     @ApiModelProperty(value = "资源名称")
     private String name;
-	/**海报图*/
+    /**资源名称英文*/
+	@Excel(name = "资源名称英文", width = 15)
+    @ApiModelProperty(value = "资源名称英文")
+    private String nameEnglish;
+	/**资源连接*/
 	@Excel(name = "资源连接", width = 15)
     @ApiModelProperty(value = "海报图")
     private String cover;