|
@@ -3,16 +3,16 @@
|
|
|
<el-card class="box-card">
|
|
|
<div slot="header" class="header">
|
|
|
<div class="type-box">
|
|
|
- <span class="act" v-permission="permissionBtn.classifyBtn.classifyList_cnClassify">中文分类</span>
|
|
|
- <span @click="$emit('typeChange','2')" v-permission="permissionBtn.enClassifyBtn.classifyList_enClassify">英文分类</span>
|
|
|
+ <span class="act" v-permission="permissionBtn.classifyBtn.classifyList_cnClassify">{{this.$t('ReportManage.CategoryList.chinese_tabs')}}</span>
|
|
|
+ <span @click="$emit('typeChange','2')" v-permission="permissionBtn.enClassifyBtn.classifyList_enClassify">{{this.$t('ReportManage.CategoryList.english_tabs')}}</span>
|
|
|
</div>
|
|
|
<el-form :inline="true" :model="searchform" @submit.native.prevent>
|
|
|
<el-form-item label="">
|
|
|
<el-button v-permission="permissionBtn.classifyBtn.classifyList_cnClassify_classifyAdd"
|
|
|
- type="primary" size="small" @click="aeDialogTrue">添加分类</el-button>
|
|
|
+ type="primary" size="small" @click="aeDialogTrue">{{$t('ReportManage.CategoryList.add_category_btn')}}</el-button>
|
|
|
</el-form-item>
|
|
|
<el-form-item>
|
|
|
- <el-input placeholder="分类名称" @change="search" v-model="searchform.key_word" clearable size="small">
|
|
|
+ <el-input :placeholder="$t('ReportManage.CategoryList.category_name_ipt')" @change="search" v-model="searchform.key_word" clearable size="small">
|
|
|
<i class="el-icon-search" slot="prefix" @click="search"></i>
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
@@ -20,39 +20,39 @@
|
|
|
</div>
|
|
|
<template>
|
|
|
<el-table v-if="isTableShow"
|
|
|
- style="border:1px solid #eaeaea;" :data="tableData" v-loading="listLoading" :row-class-name="tableRowClassName" element-loading-text="数据加载中..." :default-expand-all='isexpand' row-key="Id" :tree-props="{children:'children',hasChildren:'hasChildren'}">
|
|
|
+ style="border:1px solid #eaeaea;" :data="tableData" v-loading="listLoading" :row-class-name="tableRowClassName" :element-loading-text="$t('Table.data_loading')" :default-expand-all='isexpand' row-key="Id" :tree-props="{children:'children',hasChildren:'hasChildren'}">
|
|
|
<!-- <el-table-column prop="id" label="序号" width="100px" align="left">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{scope.row.ischild?'':scope.row.id}}</span>
|
|
|
</template>
|
|
|
</el-table-column> -->
|
|
|
- <el-table-column prop="classify_name" label="一级分类">
|
|
|
+ <el-table-column prop="classify_name" :label="$t('ReportManage.CategoryList.one_category_table')">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{scope.row.ischild?'':scope.row.ClassifyName}}</span>
|
|
|
<img style="width:16px;position: relative;top:3px" src="../../assets/img/icons/ppt-icon.png" alt="" v-if="!scope.row.ischild&&scope.row.HasTeleconference">
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="classify_name" label="二级分类">
|
|
|
+ <el-table-column prop="classify_name" :label="$t('ReportManage.CategoryList.two_category_table')">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{scope.row.ischild?scope.row.ClassifyName:''}}</span>
|
|
|
<img style="width:16px;position: relative;top:3px" src="../../assets/img/icons/ppt-icon.png" alt="" v-if="scope.row.ischild&&scope.row.HasTeleconference">
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="操作" align="center">
|
|
|
+ <el-table-column :label="$t('Table.column_operations')" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<div style="color:#4099ef; font-size:24px;">
|
|
|
<span class="editsty" v-permission="permissionBtn.classifyBtn.classifyList_cnClassify_chapterSetting"
|
|
|
- v-if="scope.row.ClassifyName=='晨报' || scope.row.ClassifyName=='周报'" @click="chapterSetting(scope.row)">章节设置</span>
|
|
|
+ v-if="scope.row.ClassifyName=='晨报' || scope.row.ClassifyName=='周报'" @click="chapterSetting(scope.row)">{{$t('ReportManage.CategoryList.settings_chapter_btn')}}</span>
|
|
|
<span class="editsty" v-permission="permissionBtn.classifyBtn.classifyList_cnClassify_authSetting"
|
|
|
- :class="{'editedsty' : editedItems.includes(scope.row.Id)}" v-if="scope.row.ischild" @click="configitem(scope.row)">权限配置</span>
|
|
|
+ :class="{'editedsty' : editedItems.includes(scope.row.Id)}" v-if="scope.row.ischild" @click="configitem(scope.row)">{{$t('ReportManage.CategoryList.configuration_btn')}}</span>
|
|
|
|
|
|
<!-- <i class="el-icon-edit-outline" @click="edititem(scope.row)"></i> -->
|
|
|
<span class="editsty" v-permission="permissionBtn.classifyBtn.classifyList_cnClassify_classifyAdd"
|
|
|
- @click="edititem(scope.row)">编辑</span>
|
|
|
+ @click="edititem(scope.row)">{{$t('Table.edit_btn')}}</span>
|
|
|
|
|
|
<!-- <i class="el-icon-delete" @click="checkdeleteitem(scope.row)"></i> -->
|
|
|
<span v-permission="permissionBtn.classifyBtn.classifyList_cnClassify_classifyDel"
|
|
|
- class="deletesty" @click="checkdeleteitem(scope.row)">删除</span>
|
|
|
+ class="deletesty" @click="checkdeleteitem(scope.row)">{{$t('Table.delete_btn')}}</span>
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -63,17 +63,17 @@
|
|
|
</el-col>
|
|
|
</el-card>
|
|
|
<!-- 添加分类弹框 -->
|
|
|
- <el-dialog :modal-append-to-body='false' :title="isadd?'添加分类':'编辑分类'" :visible.sync="aeDialog" :close-on-click-modal="false" :center="true" v-dialogDrag custom-class="dialogclassLog" width="700px">
|
|
|
+ <el-dialog :modal-append-to-body='false' :title="isadd? $t('ReportManage.CategoryList.add_category_btn') : $t('ReportManage.CategoryList.edit_category_btn') " :visible.sync="aeDialog" :close-on-click-modal="false" :center="true" v-dialogDrag custom-class="dialogclassLog" width="700px">
|
|
|
<div slot="title" style="display:flex;alignItems:center;">
|
|
|
<img :src="isadd?$icons.add:$icons.edit" style="color:#fff;width:16px;height:16px;marginRight:5px;">
|
|
|
- <span style="fontSize:16px;">{{isadd?'添加分类':'编辑分类'}}</span>
|
|
|
+ <span style="fontSize:16px;">{{isadd? $t('ReportManage.CategoryList.add_category_btn'): $t('ReportManage.CategoryList.edit_category_btn')}}</span>
|
|
|
</div>
|
|
|
<el-form :model="aeForm" :rules="aerules" ref="aeForm" label-position="right" label-width="140px" class="aeForm" @submit.native.prevent>
|
|
|
- <el-form-item prop="classify_name" label="分类名称">
|
|
|
- <el-input type="text" v-model="aeForm.classify_name" placeholder="请输入" size="small" style="width:400px;"></el-input>
|
|
|
+ <el-form-item prop="classify_name" :label="$t('ReportManage.CategoryList.category_name_ipt')">
|
|
|
+ <el-input type="text" v-model="aeForm.classify_name" :placeholder="$t('ReportManage.CategoryList.please_input')" size="small" style="width:400px;"></el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item prop="parent_id" label="上级分类">
|
|
|
- <el-select v-model="aeForm.parent_id" placeholder="请选择" size="small" style="width:400px;" @change="parentSelectChange(aeForm.parent_id)">
|
|
|
+ <el-form-item prop="parent_id" :label="$t('ReportManage.CategoryList.parent_category_label')">
|
|
|
+ <el-select v-model="aeForm.parent_id" :placeholder="$t('ReportManage.CategoryList.please_input')" size="small" style="width:400px;" @change="parentSelectChange(aeForm.parent_id)">
|
|
|
<el-option label="无" :value="0"></el-option>
|
|
|
<el-option v-for="(item,index) in classifyparentArr" :key="index" :label="item.ClassifyName" :value="item.Id"></el-option>
|
|
|
</el-select>
|
|
@@ -81,7 +81,7 @@
|
|
|
<!-- 下面的表单项除了后台排序,都合成一个buttoncode判断:classifyList_cnClassify_childMenu -->
|
|
|
<template v-if="permissionBtn.checkPermissionBtn(permissionBtn.classifyBtn.classifyList_cnClassify_childMenu)">
|
|
|
<!-- 一级目录子目录 -->
|
|
|
- <el-form-item label="子目录"
|
|
|
+ <el-form-item :label="$t('ReportManage.CategoryList.subdirectory_label')"
|
|
|
v-if="aeForm.parent_id==0&&aeForm.showType==1">
|
|
|
<draggable v-model="ClassifyMenuList" animation="300">
|
|
|
<div style="display:inline-block;margin-right:5px" v-for="(item,index) in ClassifyMenuList" :key="item">
|
|
@@ -116,14 +116,14 @@
|
|
|
style="width: 90px;"
|
|
|
>
|
|
|
</el-input>
|
|
|
- <el-button v-else size="small" @click="showInput(-1)">+ 点击新增</el-button>
|
|
|
+ <el-button v-else size="small" @click="showInput(-1)">+ {{$t('ReportManage.CategoryList.click_to_add_btn')}}</el-button>
|
|
|
</div>
|
|
|
|
|
|
</el-form-item>
|
|
|
<!-- 二级目录子目录 -->
|
|
|
- <el-form-item label="子目录"
|
|
|
+ <el-form-item :label="$t('ReportManage.CategoryList.subdirectory_label')"
|
|
|
v-if="aeForm.parent_id!=0">
|
|
|
- <el-select v-model="aeForm.ClassifyMenuId" clearable placeholder="请选择" style="width:400px;">
|
|
|
+ <el-select v-model="aeForm.ClassifyMenuId" clearable :placeholder="$t('ReportManage.CategoryList.please_select')" style="width:400px;">
|
|
|
<el-option
|
|
|
:label="item.MenuName"
|
|
|
:value="item.MenuId"
|
|
@@ -134,143 +134,143 @@
|
|
|
</el-form-item>
|
|
|
</template>
|
|
|
<template v-if="permissionBtn.checkPermissionBtn(permissionBtn.classifyBtn.classifyList_cnClassify_childMenu)">
|
|
|
- <el-form-item prop="label" label="分类标签" v-if="aeForm.parent_id!=0">
|
|
|
- <el-input type="textarea" autosize v-model="aeForm.label" placeholder="请输入" size="small" style="width:400px;font-size:14px;"></el-input>
|
|
|
+ <el-form-item prop="label" :label="$t('ReportManage.CategoryList.category_tag_label')" v-if="aeForm.parent_id!=0">
|
|
|
+ <el-input type="textarea" autosize v-model="aeForm.label" :placeholder="$t('ReportManage.CategoryList.please_select')" size="small" style="width:400px;font-size:14px;"></el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="展示形式"
|
|
|
+ <el-form-item :label="$t('ReportManage.CategoryList.display_form_label')"
|
|
|
prop="showType" v-if="aeForm.parent_id==0">
|
|
|
- <el-select v-model="aeForm.showType" placeholder="请选择" style="width:400px;">
|
|
|
- <el-option label="列表" :value="1"></el-option>
|
|
|
- <el-option label="专栏" :value="2"></el-option>
|
|
|
- <el-option label="品种" :value="3"></el-option>
|
|
|
+ <el-select v-model="aeForm.showType" :placeholder="$t('ReportManage.CategoryList.please_select')" style="width:400px;">
|
|
|
+ <el-option :label="$t('ReportManage.CategoryList.form_list_option')" :value="1"></el-option>
|
|
|
+ <el-option :label="$t('ReportManage.CategoryList.form_column_option')" :value="2"></el-option>
|
|
|
+ <el-option :label="$t('ReportManage.CategoryList.form_product_option')" :value="3"></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</template>
|
|
|
- <el-form-item label="后台排序"
|
|
|
+ <el-form-item :label="$t('ReportManage.CategoryList.backend_sorting_label')"
|
|
|
prop="Sort" v-if="aeForm.parent_id==0&&permissionBtn.checkPermissionBtn(permissionBtn.classifyBtn.classifyList_cnClassify_backSort)">
|
|
|
- <el-input-number v-model="aeForm.Sort" placeholder="请输入数字"></el-input-number>
|
|
|
+ <el-input-number v-model="aeForm.Sort" :placeholder="$t('ReportManage.CategoryList.please_number_input')"></el-input-number>
|
|
|
</el-form-item>
|
|
|
<template v-if="permissionBtn.checkPermissionBtn(permissionBtn.classifyBtn.classifyList_cnClassify_childMenu)">
|
|
|
- <el-form-item label="FICC页排序"
|
|
|
+ <el-form-item :label="$t('ReportManage.CategoryList.page_sorting_label')"
|
|
|
prop="YbFiccSort" v-if="aeForm.parent_id==0">
|
|
|
- <el-input-number v-model="aeForm.YbFiccSort" placeholder="请输入数字"></el-input-number>
|
|
|
+ <el-input-number v-model="aeForm.YbFiccSort" :placeholder="$t('ReportManage.CategoryList.please_number_input')"></el-input-number>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="FICC页icon"
|
|
|
+ <el-form-item :label="$t('ReportManage.CategoryList.page_icon_label')"
|
|
|
v-if="aeForm.parent_id==0" prop="YbFiccIcon">
|
|
|
<input type="file" size="small" name="file" @change="fileSelected(6)" id="file6" class="true-file" style="display:none;">
|
|
|
<el-input readonly type="text" v-model="aeForm.YbFiccIcon" placeholder="上传FICC页icon" size="medium" style="width:400px;">
|
|
|
- <el-button slot="append" type="primary" size="mini" @click.native="clickinput(6)">选择图片</el-button>
|
|
|
+ <el-button slot="append" type="primary" size="mini" @click.native="clickinput(6)">{{$t('ReportManage.CategoryList.select_img_btn')}}</el-button>
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="报告合集配图"
|
|
|
+ <el-form-item :label="$t('ReportManage.CategoryList.collection_report_label')"
|
|
|
v-if="aeForm.parent_id==0&&aeForm.showType!==2" prop="YbRightBanner">
|
|
|
<input type="file" size="small" name="file" @change="fileSelected(11)" id="file11" class="true-file" style="display:none;">
|
|
|
- <el-input readonly type="text" v-model="aeForm.YbRightBanner" placeholder="上传报告合集配图" size="medium" style="width:400px;">
|
|
|
- <el-button slot="append" type="primary" size="mini" @click.native="clickinput(11)">选择图片</el-button>
|
|
|
+ <el-input readonly type="text" v-model="aeForm.YbRightBanner" :placeholder="$t('ReportManage.CategoryList.up_collection_report_lable')" size="medium" style="width:400px;">
|
|
|
+ <el-button slot="append" type="primary" size="mini" @click.native="clickinput(11)">{{$t('ReportManage.CategoryList.select_img_btn')}}</el-button>
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="分享链接配图"
|
|
|
+ <el-form-item :label="$t('ReportManage.CategoryList.share_link_label')"
|
|
|
prop="YbShareBgImg" v-if="aeForm.parent_id==0">
|
|
|
<input type="file" size="small" name="file" @change="fileSelected(10)" id="file10" class="true-file" style="display:none;">
|
|
|
- <el-input readonly type="text" v-model="aeForm.YbShareBgImg" placeholder="上传分享链接配图" size="medium" style="width:400px;">
|
|
|
- <el-button slot="append" type="primary" size="mini" @click.native="clickinput(10)">选择图片</el-button>
|
|
|
+ <el-input readonly type="text" v-model="aeForm.YbShareBgImg" :placeholder="$t('ReportManage.CategoryList.up_share_link_label')" size="medium" style="width:400px;">
|
|
|
+ <el-button slot="append" type="primary" size="mini" @click.native="clickinput(10)">{{$t('ReportManage.CategoryList.select_img_btn')}}</el-button>
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="PC端背景颜色"
|
|
|
+ <el-form-item :label="$t('ReportManage.CategoryList.pc_bg_label')"
|
|
|
prop="YbFiccPcIcon" v-if="aeForm.parent_id==0">
|
|
|
- <el-select v-model="aeForm.YbFiccPcIcon" placeholder="选择背景颜色" style="width:400px;">
|
|
|
+ <el-select v-model="aeForm.YbFiccPcIcon" :placeholder="$t('ReportManage.CategoryList.select_bg_label')" style="width:400px;">
|
|
|
<el-option :label="item.label" :value="item.val" v-for="item in YbFiccPcIconList" :key="item.label"></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="小程序端隐藏"
|
|
|
+ <el-form-item :label="$t('ReportManage.CategoryList.mini_hidden_label')"
|
|
|
prop="IsShow" v-if="aeForm.parent_id==0">
|
|
|
<el-switch v-model="aeForm.IsShow" inactive-color="#ededed"></el-switch>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="PPT转报告" prop="hasTel" v-if="aeForm.parent_id!=0">
|
|
|
- <el-select v-model="aeForm.hasTel" placeholder="请选择" style="width:400px;">
|
|
|
+ <el-select v-model="aeForm.hasTel" :placeholder="$t('ReportManage.CategoryList.please_select')" style="width:400px;">
|
|
|
<el-option label="无" :value="0"></el-option>
|
|
|
<el-option label="有" :value="1"></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="关联设置"
|
|
|
+ <el-form-item :label="$t('ReportManage.CategoryList.related_settings_label')"
|
|
|
prop="relate" v-if="!['晨报','周报'].includes(aeForm.classify_name)">
|
|
|
- <el-select v-model="aeForm.relate" multiple placeholder="请选择" style="width:400px;">
|
|
|
- <el-option label="报告电话会" :value="1"></el-option>
|
|
|
- <el-option label="视频关联报告" :value="2"></el-option>
|
|
|
+ <el-select v-model="aeForm.relate" multiple :placeholder="$t('ReportManage.CategoryList.please_select')" style="width:400px;">
|
|
|
+ <el-option :label="$t('ReportManage.CategoryList.teleconference_label')" :value="1"></el-option>
|
|
|
+ <el-option :label="$t('ReportManage.CategoryList.relate_videp_label')" :value="2"></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</template>
|
|
|
<!-- 这里开始是二级目录选项 -->
|
|
|
<template v-if="permissionBtn.checkPermissionBtn(permissionBtn.classifyBtn.classifyList_cnClassify_childMenu)">
|
|
|
- <el-form-item label="分享描述" v-if="aeForm.parent_id!=0">
|
|
|
- <el-input type="textarea" autosize v-model="aeForm.descript" placeholder="请输入" size="small" style="width:400px;font-size:14px;"></el-input>
|
|
|
+ <el-form-item :label="$t('ReportManage.CategoryList.share_desctription_label')" v-if="aeForm.parent_id!=0">
|
|
|
+ <el-input type="textarea" autosize v-model="aeForm.descript" :placeholder="$t('ReportManage.CategoryList.please_input')" size="small" style="width:400px;font-size:14px;"></el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="栏目作者" v-if="aeForm.parent_id!=0&&!parentIsList&&!parentIsVariety" prop="author">
|
|
|
- <el-input type="text" v-model="aeForm.author" placeholder="请输入" size="small" style="width:400px;"></el-input>
|
|
|
+ <el-form-item :label="$t('ReportManage.CategoryList.section_author_label')" v-if="aeForm.parent_id!=0&&!parentIsList&&!parentIsVariety" prop="author">
|
|
|
+ <el-input type="text" v-model="aeForm.author" :placeholder="$t('ReportManage.CategoryList.please_input')" size="small" style="width:400px;"></el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="作者简介" v-if="aeForm.parent_id!=0&&!parentIsList&&!parentIsVariety" prop="authorDsec">
|
|
|
- <el-input type="text" v-model="aeForm.authorDsec" placeholder="请输入" size="small" style="width:400px;"></el-input>
|
|
|
+ <el-form-item :label="$t('ReportManage.CategoryList.author_introduction_label')" v-if="aeForm.parent_id!=0&&!parentIsList&&!parentIsVariety" prop="authorDsec">
|
|
|
+ <el-input type="text" v-model="aeForm.authorDsec" :placeholder="$t('ReportManage.CategoryList.please_input')" size="small" style="width:400px;"></el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="作者头衔" v-if="aeForm.parent_id!=0&&!parentIsList&&!parentIsVariety" prop="authorTag">
|
|
|
- <el-input type="text" v-model="aeForm.authorTag" placeholder="请输入" size="small" style="width:400px;"></el-input>
|
|
|
+ <el-form-item :label="$t('ReportManage.CategoryList.author_title_label')" v-if="aeForm.parent_id!=0&&!parentIsList&&!parentIsVariety" prop="authorTag">
|
|
|
+ <el-input type="text" v-model="aeForm.authorTag" :placeholder="$t('ReportManage.CategoryList.please_input')" size="small" style="width:400px;"></el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="栏目简介" v-if="aeForm.parent_id!=0&&!parentIsList&&!parentIsVariety" prop="classifyDsec">
|
|
|
- <el-input type="textarea" v-model="aeForm.classifyDsec" placeholder="请输入" size="small" style="width:400px;font-size:14px;" autosize></el-input>
|
|
|
+ <el-form-item :label="$t('ReportManage.CategoryList.section_author_label')" v-if="aeForm.parent_id!=0&&!parentIsList&&!parentIsVariety" prop="classifyDsec">
|
|
|
+ <el-input type="textarea" v-model="aeForm.classifyDsec" :placeholder="$t('ReportManage.CategoryList.please_input')" size="small" style="width:400px;font-size:14px;" autosize></el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="分享链接配图" v-if="aeForm.parent_id!=0&&!parentIsList&&!parentIsVariety" prop="YbShareBgImg">
|
|
|
+ <el-form-item :label="$t('ReportManage.CategoryList.share_link_label')" v-if="aeForm.parent_id!=0&&!parentIsList&&!parentIsVariety" prop="YbShareBgImg">
|
|
|
<input type="file" size="small" name="file" @change="fileSelected(10)" id="file10" class="true-file" style="display:none;">
|
|
|
- <el-input readonly type="text" v-model="aeForm.YbShareBgImg" placeholder="上传分享链接配图" size="medium" style="width:400px;">
|
|
|
- <el-button slot="append" type="primary" size="mini" @click.native="clickinput(10)">选择图片</el-button>
|
|
|
+ <el-input readonly type="text" v-model="aeForm.YbShareBgImg" :placeholder="$t('ReportManage.CategoryList.up_share_link_label')" size="medium" style="width:400px;">
|
|
|
+ <el-button slot="append" type="primary" size="mini" @click.native="clickinput(10)">{{$t('ReportManage.CategoryList.select_img_btn')}}</el-button>
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="首页配图" v-if="aeForm.parent_id!=0&&!parentIsList&&!parentIsVariety" prop="classifyImg">
|
|
|
+ <el-form-item :label="$t('ReportManage.CategoryList.homepage_illustrations_label')" v-if="aeForm.parent_id!=0&&!parentIsList&&!parentIsVariety" prop="classifyImg">
|
|
|
<input type="file" size="small" name="file" @change="fileSelected(1)" id="file1" class="true-file" style="display:none;">
|
|
|
- <el-input type="text" v-model="aeForm.classifyImg" placeholder="上传首页配图" size="medium" style="width:400px;">
|
|
|
- <el-button slot="append" type="primary" size="mini" @click.native="clickinput(1)">选择图片</el-button>
|
|
|
+ <el-input type="text" v-model="aeForm.classifyImg" :placeholder="$t('ReportManage.CategoryList.up_homepage_illustrations')" size="medium" style="width:400px;">
|
|
|
+ <el-button slot="append" type="primary" size="mini" @click.native="clickinput(1)">{{$t('ReportManage.CategoryList.select_img_btn')}}</el-button>
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="研报配图" v-if="aeForm.parent_id!=0&&!parentIsList&&!parentIsVariety" prop="reportImg">
|
|
|
+ <el-form-item :label="$t('ReportManage.CategoryList.report_illustrations_label')" v-if="aeForm.parent_id!=0&&!parentIsList&&!parentIsVariety" prop="reportImg">
|
|
|
<input type="file" size="small" name="file" @change="fileSelected(5)" id="file5" class="true-file" style="display:none;">
|
|
|
- <el-input type="text" v-model="aeForm.reportImg" placeholder="上传研报配图" size="medium" style="width:400px;">
|
|
|
- <el-button slot="append" type="primary" size="mini" @click.native="clickinput(5)">选择图片</el-button>
|
|
|
+ <el-input type="text" v-model="aeForm.reportImg" :placeholder="$t('ReportManage.CategoryList.up_report_illustrations')" size="medium" style="width:400px;">
|
|
|
+ <el-button slot="append" type="primary" size="mini" @click.native="clickinput(5)">{{$t('ReportManage.CategoryList.select_img_btn')}}</el-button>
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="专栏配图" v-if="aeForm.parent_id!=0&&!parentIsList&&!parentIsVariety" prop="columImg">
|
|
|
+ <el-form-item :label="$t('ReportManage.CategoryList.column_illustration_label')" v-if="aeForm.parent_id!=0&&!parentIsList&&!parentIsVariety" prop="columImg">
|
|
|
<input type="file" size="small" name="file" @change="fileSelected(4)" id="file4" class="true-file" style="display:none;">
|
|
|
- <el-input type="text" v-model="aeForm.columImg" placeholder="上传专栏配图" size="medium" style="width:400px;">
|
|
|
- <el-button slot="append" type="primary" size="mini" @click.native="clickinput(4)">选择图片</el-button>
|
|
|
+ <el-input type="text" v-model="aeForm.columImg" :placeholder="$t('ReportManage.CategoryList.up_scolumn_illustration')" size="medium" style="width:400px;">
|
|
|
+ <el-button slot="append" type="primary" size="mini" @click.native="clickinput(4)">{{$t('ReportManage.CategoryList.select_img_btn')}}</el-button>
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="头部banner" v-if="aeForm.parent_id!=0&&!parentIsList&&!parentIsVariety" prop="bannerImg">
|
|
|
+ <el-form-item :label="$t('ReportManage.CategoryList.banner_head_label')" v-if="aeForm.parent_id!=0&&!parentIsList&&!parentIsVariety" prop="bannerImg">
|
|
|
<input type="file" size="small" name="file" @change="fileSelected(2)" id="file2" class="true-file" style="display:none;">
|
|
|
- <el-input type="text" v-model="aeForm.bannerImg" placeholder="上传头部banner" size="medium" style="width:400px;">
|
|
|
- <el-button slot="append" type="primary" size="mini" @click.native="clickinput(2)">选择图片</el-button>
|
|
|
+ <el-input type="text" v-model="aeForm.bannerImg" :placeholder="$t('ReportManage.CategoryList.up_banner_head')" size="medium" style="width:400px;">
|
|
|
+ <el-button slot="append" type="primary" size="mini" @click.native="clickinput(2)">{{$t('ReportManage.CategoryList.select_img_btn')}}</el-button>
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="头像" v-if="aeForm.parent_id!=0&&!parentIsList&&!parentIsVariety" prop="avatar">
|
|
|
+ <el-form-item :label="$t('ReportManage.CategoryList.img_author_label')" v-if="aeForm.parent_id!=0&&!parentIsList&&!parentIsVariety" prop="avatar">
|
|
|
<input type="file" size="small" name="file" @change="fileSelected(3)" id="file3" class="true-file" style="display:none;">
|
|
|
- <el-input type="text" v-model="aeForm.avatar" placeholder="上传头像" size="medium" style="width:400px;">
|
|
|
- <el-button slot="append" type="primary" size="mini" @click.native="clickinput(3)">选择图片</el-button>
|
|
|
+ <el-input type="text" v-model="aeForm.avatar" :placeholder="$t('ReportManage.CategoryList.up_img_author')" size="medium" style="width:400px;">
|
|
|
+ <el-button slot="append" type="primary" size="mini" @click.native="clickinput(3)">{{$t('ReportManage.CategoryList.select_img_btn')}}</el-button>
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="列表背景图" v-if="aeForm.parent_id!=0&&(parentIsList||parentIsVariety)" prop="YbListImg">
|
|
|
+ <el-form-item :label="$t('ReportManage.CategoryList.list_background_image_label')" v-if="aeForm.parent_id!=0&&(parentIsList||parentIsVariety)" prop="YbListImg">
|
|
|
<input type="file" size="small" name="file" @change="fileSelected(9)" id="file9" class="true-file" style="display:none;">
|
|
|
- <el-input readonly type="text" v-model="aeForm.YbListImg" placeholder="上传列表背景图" size="medium" style="width:400px;">
|
|
|
- <el-button slot="append" type="primary" size="mini" @click.native="clickinput(9)">选择图片</el-button>
|
|
|
+ <el-input readonly type="text" v-model="aeForm.YbListImg" :placeholder="$t('ReportManage.CategoryList.up_list_background_image')" size="medium" style="width:400px;">
|
|
|
+ <el-button slot="append" type="primary" size="mini" @click.native="clickinput(9)">{{$t('ReportManage.CategoryList.select_img_btn')}}</el-button>
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
<!-- 列表、品种的二级分类 展示分享链接配图 但是不是必填的 -->
|
|
|
- <el-form-item label="分享链接配图" prop="YbShareBgImg_" v-if="aeForm.parent_id!=0&&(parentIsList||parentIsVariety)">
|
|
|
+ <el-form-item :label="$t('ReportManage.CategoryList.share_link_label')" prop="YbShareBgImg_" v-if="aeForm.parent_id!=0&&(parentIsList||parentIsVariety)">
|
|
|
<input type="file" size="small" name="file" @change="fileSelected(12)" id="file12" class="true-file" style="display:none;">
|
|
|
- <el-input readonly type="text" v-model="aeForm.YbShareBgImg_" placeholder="上传分享链接配图" size="medium" style="width:400px;">
|
|
|
- <el-button slot="append" type="primary" size="mini" @click.native="clickinput(12)">选择图片</el-button>
|
|
|
+ <el-input readonly type="text" v-model="aeForm.YbShareBgImg_" :placeholder="$t('ReportManage.CategoryList.xxxxx')" size="medium" style="width:400px;">
|
|
|
+ <el-button slot="append" type="primary" size="mini" @click.native="clickinput(12)">{{$t('ReportManage.CategoryList.up_share_link_label')}}</el-button>
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
</template>
|
|
|
</el-form>
|
|
|
<div slot="footer" class="dialog-footer" style="text-align:right;">
|
|
|
- <el-button type="primary" plain size="small" @click.native="aeDialog=false">取 消</el-button>
|
|
|
- <el-button type="primary" size="small" @click.native="saveDialog">保 存</el-button>
|
|
|
+ <el-button type="primary" plain size="small" @click.native="aeDialog=false">{{$t('Dialog.cancel_btn')}}</el-button>
|
|
|
+ <el-button type="primary" size="small" @click.native="saveDialog">{{$t('Dialog.confirm_save_btn')}}</el-button>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
<!-- 权限配置弹窗 -->
|
|
@@ -330,187 +330,190 @@ export default{
|
|
|
this.permissionBtn.classifyBtn.classifyList_cnClassify
|
|
|
)
|
|
|
},
|
|
|
- },
|
|
|
- data(){
|
|
|
- return {
|
|
|
- PageIndex:0,
|
|
|
- total:0,
|
|
|
- pageSize:15,
|
|
|
- ispage:true,
|
|
|
- listLoading:false,
|
|
|
- tableData:[],
|
|
|
- searchform:{
|
|
|
- key_word:'',
|
|
|
- },
|
|
|
- aeDialog:false,
|
|
|
- aeForm:{
|
|
|
- classify_name:'',
|
|
|
- parent_id:0,
|
|
|
- abstract:'',
|
|
|
- descript:'',
|
|
|
- author:'',
|
|
|
- authorDsec:'',
|
|
|
- classifyDsec:'',
|
|
|
- authorTag:'',
|
|
|
- classifyImg:'',
|
|
|
- reportImg:'',
|
|
|
- columImg:'',
|
|
|
- bannerImg:'',
|
|
|
- avatar:'',
|
|
|
- label:"",
|
|
|
- hasTel:0,//是否有电话会:0-否 1-是
|
|
|
- showType:1,//展示形式 1-列表 2-专栏 3-品种
|
|
|
- Sort:'',
|
|
|
- YbFiccSort:'',
|
|
|
- YbFiccIcon:'',
|
|
|
- YbIconUrl:'',
|
|
|
- YbBgUrl:'',
|
|
|
- YbFiccPcIcon:'',
|
|
|
- IsShow:false,//是否在小程序端展示:0-隐藏 1-显示
|
|
|
- YbListImg:'',//小程序研报列表封面图
|
|
|
- YbShareBgImg:'',
|
|
|
- ClassifyMenuId:'',
|
|
|
- YbRightBanner:'',//报告合集配图
|
|
|
- relate:[],
|
|
|
- },
|
|
|
- aerules:{
|
|
|
+ aerules(){
|
|
|
+ return {
|
|
|
classify_name:[{
|
|
|
required:true,
|
|
|
- message:'请输入分类名称',
|
|
|
+ message:this.$t('ReportManage.CategoryList.please_input_name'),
|
|
|
trigger:'blur'
|
|
|
}],
|
|
|
parent_id:[{
|
|
|
required:true,
|
|
|
- message:'请选择父级分类',
|
|
|
+ message:this.$t('ReportManage.CategoryList.please_select_category'),
|
|
|
trigger:'change'
|
|
|
}],
|
|
|
abstract:[{
|
|
|
required:true,
|
|
|
- message:'请输入分类简介',
|
|
|
+ message:this.$t('ReportManage.CategoryList.please_input_introduction'),
|
|
|
trigger:'blur'
|
|
|
}],
|
|
|
descript:[{
|
|
|
required:true,
|
|
|
- message:'请输入分类描述',
|
|
|
+ message:this.$t('ReportManage.CategoryList.please_input_description'),
|
|
|
trigger:'blur'
|
|
|
}],
|
|
|
author:[{
|
|
|
required:true,
|
|
|
- message:'请输入栏目作者',
|
|
|
+ message:this.$t('ReportManage.CategoryList.please_author_ipt'),
|
|
|
trigger:'blur'
|
|
|
}],
|
|
|
authorDsec:[{
|
|
|
required:true,
|
|
|
- message:'请输入作者简介',
|
|
|
+ message:this.$t('ReportManage.CategoryList.please_author_introduction_ipt'),
|
|
|
trigger:'blur'
|
|
|
}],
|
|
|
classifyDsec:[{
|
|
|
required:true,
|
|
|
- message:'请输入栏目简介',
|
|
|
+ message:this.$t('ReportManage.CategoryList.please_input_column_introduction'),
|
|
|
trigger:'blur'
|
|
|
}],
|
|
|
classifyImg:[{
|
|
|
required:true,
|
|
|
- message:'请上传首页配图',
|
|
|
+ message:this.$t('ReportManage.CategoryList.up_homepage_illustrations'),
|
|
|
trigger:'blur'
|
|
|
}],
|
|
|
reportImg:[{
|
|
|
required:true,
|
|
|
- message:'请上传研报配图',
|
|
|
+ message:this.$t('ReportManage.CategoryList.up_report_illustrations'),
|
|
|
trigger:'blur'
|
|
|
}],
|
|
|
bannerImg:[{
|
|
|
required:true,
|
|
|
- message:'请上传头部banner',
|
|
|
+ message:this.$t('ReportManage.CategoryList.up_banner_head'),
|
|
|
trigger:'blur'
|
|
|
}],
|
|
|
avatar:[{
|
|
|
required:true,
|
|
|
- message:'请上传作者头像',
|
|
|
+ message:this.$t('ReportManage.CategoryList.up_img_author'),
|
|
|
trigger:'blur'
|
|
|
}],
|
|
|
columImg:[{
|
|
|
required:true,
|
|
|
- message:'请上传专栏配图',
|
|
|
+ message:this.$t('ReportManage.CategoryList.up_scolumn_illustration'),
|
|
|
trigger:'blur'
|
|
|
}],
|
|
|
label:[{
|
|
|
required:true,
|
|
|
- message:'请输入分类标签',
|
|
|
+ message:this.$t('ReportManage.CategoryList.please_classification_label'),
|
|
|
trigger:'blur'
|
|
|
}],
|
|
|
hasTel:[{
|
|
|
required:true,
|
|
|
- message:'请选择',
|
|
|
+ message:this.$t('ReportManage.CategoryList.please_select'),
|
|
|
trigger:'change'
|
|
|
}],
|
|
|
showType:[{
|
|
|
required:true,
|
|
|
- message:'请选择展示形式',
|
|
|
+ message:this.$t('ReportManage.CategoryList.please_display_format'),
|
|
|
trigger:'change'
|
|
|
}],
|
|
|
Sort:[{
|
|
|
required:true,
|
|
|
- message:'请输入数字',
|
|
|
+ message:this.$t('ReportManage.CategoryList.please_number_input'),
|
|
|
trigger:'blur'
|
|
|
}],
|
|
|
YbFiccSort:[{
|
|
|
required:true,
|
|
|
- message:'请输入数字',
|
|
|
+ message:this.$t('ReportManage.CategoryList.please_number_input'),
|
|
|
trigger:'blur'
|
|
|
}],
|
|
|
YbFiccIcon:[{
|
|
|
required:true,
|
|
|
- message:'上传FICC页icon',
|
|
|
+ message:this.$t('ReportManage.CategoryList.up_page_icon_label'),
|
|
|
trigger:'change'
|
|
|
}],
|
|
|
- YbRightBanner:[{
|
|
|
- required:true,
|
|
|
- message:'上传报告合集配图',
|
|
|
- trigger:'change'
|
|
|
- }],
|
|
|
+ YbRightBanner:[{
|
|
|
+ required:true,
|
|
|
+ message:this.$t('ReportManage.CategoryList.up_collection_report_lable'),
|
|
|
+ trigger:'change'
|
|
|
+ }],
|
|
|
YbFiccPcIcon:[{
|
|
|
required:true,
|
|
|
- message:'选择背景颜色',
|
|
|
+ message:this.$t('ReportManage.CategoryList.select_bg_label'),
|
|
|
trigger:'change'
|
|
|
}],
|
|
|
IsShow:[{
|
|
|
required:true,
|
|
|
- message:'小程序端隐藏',
|
|
|
+ message:this.$t('ReportManage.CategoryList.mini_hidden_label'),
|
|
|
trigger:'change'
|
|
|
}],
|
|
|
YbListImg:[{
|
|
|
required:true,
|
|
|
- message:'上传列表背景图',
|
|
|
+ message:this.$t('ReportManage.CategoryList.please_upload_label'),
|
|
|
trigger:'change'
|
|
|
}],
|
|
|
YbShareBgImg:[{
|
|
|
required:true,
|
|
|
- message:'上传列表背景图',
|
|
|
+ message:this.$t('ReportManage.CategoryList.please_upload_label'),
|
|
|
trigger:'change'
|
|
|
}],
|
|
|
- },
|
|
|
- isadd:true,
|
|
|
- classifyparentArr:[],
|
|
|
- isexpand:false,
|
|
|
- isShowPermissionDia: false, //是否显示权限管理弹窗
|
|
|
- classifyPermissionId: 0, //进行权限管理的分类id
|
|
|
- editedItems:[], //修改过权限的分类
|
|
|
-
|
|
|
- YbFiccPcIconList:[
|
|
|
+ }
|
|
|
+ },
|
|
|
+ YbFiccPcIconList(){
|
|
|
+ return [
|
|
|
{
|
|
|
- label:'蓝色',
|
|
|
+ label:this.$t('ReportManage.CategoryList.blue_color'),
|
|
|
val:'https://hzstatic.hzinsights.com/static/yb_wx/ficc_classify_bg_blue.png'
|
|
|
},
|
|
|
{
|
|
|
- label:'绿色',
|
|
|
+ label:this.$t('ReportManage.CategoryList.green_color'),
|
|
|
val:'https://hzstatic.hzinsights.com/static/yb_wx/ficc_classify_bg_green.png'
|
|
|
},
|
|
|
{
|
|
|
- label:'红色',
|
|
|
+ label:this.$t('ReportManage.CategoryList.red_color'),
|
|
|
val:'https://hzstatic.hzinsights.com/static/yb_wx/ficc_classify_bg_orange.png'
|
|
|
},
|
|
|
- ],
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ },
|
|
|
+ data(){
|
|
|
+ return {
|
|
|
+ PageIndex:0,
|
|
|
+ total:0,
|
|
|
+ pageSize:15,
|
|
|
+ ispage:true,
|
|
|
+ listLoading:false,
|
|
|
+ tableData:[],
|
|
|
+ searchform:{
|
|
|
+ key_word:'',
|
|
|
+ },
|
|
|
+ aeDialog:false,
|
|
|
+ aeForm:{
|
|
|
+ classify_name:'',
|
|
|
+ parent_id:0,
|
|
|
+ abstract:'',
|
|
|
+ descript:'',
|
|
|
+ author:'',
|
|
|
+ authorDsec:'',
|
|
|
+ classifyDsec:'',
|
|
|
+ authorTag:'',
|
|
|
+ classifyImg:'',
|
|
|
+ reportImg:'',
|
|
|
+ columImg:'',
|
|
|
+ bannerImg:'',
|
|
|
+ avatar:'',
|
|
|
+ label:"",
|
|
|
+ hasTel:0,//是否有电话会:0-否 1-是
|
|
|
+ showType:1,//展示形式 1-列表 2-专栏 3-品种
|
|
|
+ Sort:'',
|
|
|
+ YbFiccSort:'',
|
|
|
+ YbFiccIcon:'',
|
|
|
+ YbIconUrl:'',
|
|
|
+ YbBgUrl:'',
|
|
|
+ YbFiccPcIcon:'',
|
|
|
+ IsShow:false,//是否在小程序端展示:0-隐藏 1-显示
|
|
|
+ YbListImg:'',//小程序研报列表封面图
|
|
|
+ YbShareBgImg:'',
|
|
|
+ ClassifyMenuId:'',
|
|
|
+ YbRightBanner:'',//报告合集配图
|
|
|
+ relate:[],
|
|
|
+ },
|
|
|
+ isadd:true,
|
|
|
+ classifyparentArr:[],
|
|
|
+ isexpand:false,
|
|
|
+ isShowPermissionDia: false, //是否显示权限管理弹窗
|
|
|
+ classifyPermissionId: 0, //进行权限管理的分类id
|
|
|
+ editedItems:[], //修改过权限的分类
|
|
|
|
|
|
inputVisible:false,
|
|
|
inputValue:'',
|
|
@@ -645,7 +648,7 @@ export default{
|
|
|
});
|
|
|
},
|
|
|
deleteitem(item){
|
|
|
- this.$confirm('确认删除吗?','提示',{type:'warning'}).then(() => {
|
|
|
+ this.$confirm(this.$t('ReportManage.CommodityConfiguration.delete_info_msg'),this.$t('Confirm.prompt_slogan'),{type:'warning'}).then(() => {
|
|
|
classifydelete({ClassifyId:parseInt(item.Id)}).then(res =>{
|
|
|
if( res.Ret==200 ){
|
|
|
this.$message.success( res.Msg );
|