|
@@ -32,36 +32,59 @@
|
|
|
<el-breadcrumb-item>全部{{nameTypeCn}}</el-breadcrumb-item>
|
|
|
</el-breadcrumb>
|
|
|
<h2>筛选:</h2>
|
|
|
- <div class="filt-item">
|
|
|
- <label>年份</label>
|
|
|
- <ul>
|
|
|
- <li :class="[itemy.value===form.yearValue?'active':'']" v-for="(itemy,indexy) in yearList" :key="indexy" @click="handleClick('yearValue',itemy.value)">
|
|
|
- <i v-if="itemy.value===form.yearValue" class="el-icon-success"></i>
|
|
|
- {{itemy.label}}
|
|
|
- </li>
|
|
|
- </ul>
|
|
|
- </div>
|
|
|
- <div class="filt-item">
|
|
|
- <label>学段</label>
|
|
|
- <ul>
|
|
|
- <li :class="[items.value===form.studyValue?'active':'']" v-for="(items,indexs) in studyList" :key="indexs" @click="handleClick('studyValue',items.value)">
|
|
|
- <i v-if="items.value===form.studyValue" class="el-icon-success"></i>
|
|
|
- {{items.label}}
|
|
|
- </li>
|
|
|
- </ul>
|
|
|
- </div>
|
|
|
- <div class="filt-item">
|
|
|
- <label>类型</label>
|
|
|
- <ul>
|
|
|
- <li :class="[itemt.value===form.typeValue?'active':'']" v-for="(itemt,indext) in typeList" :key="indext" @click="handleClick('typeValue',itemt.value)">
|
|
|
- <i v-if="itemt.value===form.typeValue" class="el-icon-success"></i>
|
|
|
- {{itemt.label}}
|
|
|
- </li>
|
|
|
- </ul>
|
|
|
- </div>
|
|
|
+ <template v-if="itemType==='kecheng'">
|
|
|
+ <div class="filt-item">
|
|
|
+ <label>学段</label>
|
|
|
+ <ul>
|
|
|
+ <li :class="[items.study_phase===courseForm.studyValue?'active':'',courseForm.categoryValue==='ZB'?'not-allow':'']" v-for="(items,indexs) in studyList" :key="indexs" @click="handleClick('courseForm','studyValue',items.study_phase)">
|
|
|
+ <i v-if="items.study_phase===courseForm.studyValue" class="el-icon-success"></i>
|
|
|
+ {{items.study_phase_name}}
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ <div class="filt-item">
|
|
|
+ <label>类别</label>
|
|
|
+ <ul>
|
|
|
+ <li :class="[itemt.value===courseForm.categoryValue?'active':'']" v-for="(itemt,indext) in categoryList" :key="indext" @click="handleClick('courseForm','categoryValue',itemt.value)">
|
|
|
+ <i v-if="itemt.value===courseForm.categoryValue" class="el-icon-success"></i>
|
|
|
+ {{itemt.label}}
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <template v-else-if="itemType==='baozhi'">
|
|
|
+ <div class="filt-item">
|
|
|
+ <label>年份</label>
|
|
|
+ <ul>
|
|
|
+ <li :class="[itemy.value===baozhiForm.yearValue?'active':'']" v-for="(itemy,indexy) in yearList" :key="indexy" @click="handleClick('baozhiForm','yearValue',itemy.value)">
|
|
|
+ <i v-if="itemy.value===baozhiForm.yearValue" class="el-icon-success"></i>
|
|
|
+ {{itemy.label}}
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ <div class="filt-item">
|
|
|
+ <label>学段</label>
|
|
|
+ <ul>
|
|
|
+ <li :class="[items.study_phase===baozhiForm.studyValue?'active':'']" v-for="(items,indexs) in baozhiStudyList" :key="indexs" @click="handleClick('baozhiForm','studyValue',items.study_phase,items.study_phase_name)">
|
|
|
+ <i v-if="items.study_phase===baozhiForm.studyValue" class="el-icon-success"></i>
|
|
|
+ {{items.study_phase_name}}
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ <div class="filt-item">
|
|
|
+ <label>类型</label>
|
|
|
+ <ul>
|
|
|
+ <li :class="[itemt.value===baozhiForm.typeValue?'active':'']" v-for="(itemt,indext) in typeList" :key="indext" @click="handleClick('baozhiForm','typeValue',itemt.value)">
|
|
|
+ <i v-if="itemt.value===baozhiForm.typeValue" class="el-icon-success"></i>
|
|
|
+ {{itemt.label}}
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+
|
|
|
<div class="filt-item">
|
|
|
<label>搜索</label>
|
|
|
- <el-input placeholder="搜索" v-model="form.searchValue">
|
|
|
+ <el-input placeholder="搜索" v-model="searchValue">
|
|
|
<el-button slot="append" icon="el-icon-search" @click="handleData"></el-button>
|
|
|
</el-input>
|
|
|
</div>
|
|
@@ -71,22 +94,22 @@
|
|
|
<BookListModule
|
|
|
:Bookinfo="Bookinfo"
|
|
|
:showAll="false"
|
|
|
- :showPage="form.studyValue==Bookinfo.study"
|
|
|
- v-if="!form.studyValue||form.studyValue==Bookinfo.study"
|
|
|
@changeStudy="changeStudy"
|
|
|
:headerBg="'#1F1F1F'"
|
|
|
:headerBorder="'#5C5C5C'"
|
|
|
:userBg="'rgba(0, 0, 0, 0.24)'"
|
|
|
:LoginNavIndex="0"
|
|
|
/>
|
|
|
- <BookListModule
|
|
|
- :Bookinfo="Bookinfo2"
|
|
|
- :showAll="false"
|
|
|
- v-if="false"
|
|
|
- :headerBg="'#1F1F1F'"
|
|
|
- :headerBorder="'#5C5C5C'"
|
|
|
- :userBg="'rgba(0, 0, 0, 0.24)'"
|
|
|
- :LoginNavIndex="0"
|
|
|
+ <el-pagination
|
|
|
+ background
|
|
|
+ :current-page="currentPage"
|
|
|
+ :page-size="10"
|
|
|
+ :page-sizes="[1, 10, 20, 30, 40, 50]"
|
|
|
+ :total="Bookinfo.number"
|
|
|
+ layout="total, prev, pager, next, sizes, jumper"
|
|
|
+ @current-change="handleCurrentChange"
|
|
|
+ @size-change="handleSizeChange"
|
|
|
+ v-if="Bookinfo.number>0"
|
|
|
/>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -97,6 +120,7 @@
|
|
|
//例如:import 《组件名称》from ‘《组件路径》';
|
|
|
import Header from "../../components/Header.vue";
|
|
|
import BookListModule from "@/components/common/BookAllListModule.vue"
|
|
|
+import { getLogin } from "@/api/ajax";
|
|
|
|
|
|
export default {
|
|
|
//import引入的组件需要注入到对象中才能使用
|
|
@@ -106,243 +130,59 @@ export default {
|
|
|
//这里存放数据
|
|
|
return {
|
|
|
Bookinfo:{
|
|
|
- BookList: [{
|
|
|
- src: require('../../assets/baozhi2.png'),
|
|
|
- name: "第96期",
|
|
|
- price: "23.00",
|
|
|
- oldprice: "33.00",
|
|
|
- author: "TEENS",
|
|
|
- score: 3,
|
|
|
- progress: "90%"
|
|
|
- },
|
|
|
- {
|
|
|
- src: require('../../assets/baozhi1.png'),
|
|
|
- name: "第87期",
|
|
|
- price: "27.00",
|
|
|
- oldprice: "43.00",
|
|
|
- author: "2022-04-15",
|
|
|
- score: 3,
|
|
|
- },
|
|
|
- {
|
|
|
- src: require('../../assets/baozhi1.png'),
|
|
|
- name: "第86期 ",
|
|
|
- price: "19.00",
|
|
|
- oldprice: "27.00",
|
|
|
- author: "TEENS",
|
|
|
- score: 3,
|
|
|
- },
|
|
|
- {
|
|
|
- src: require('../../assets/baozhi1.png'),
|
|
|
- name: "第85期",
|
|
|
- price: "28.90",
|
|
|
- oldprice: "39.00",
|
|
|
- author: "TEENS",
|
|
|
- score: 3,
|
|
|
- },
|
|
|
- {
|
|
|
- src: require('../../assets/baozhi2.png'),
|
|
|
- name: "第84期",
|
|
|
- price: "23.00",
|
|
|
- oldprice: "30.00",
|
|
|
- author: "TEENS",
|
|
|
- score: 3,
|
|
|
- },
|
|
|
- {
|
|
|
- src: require('../../assets/baozhi2.png'),
|
|
|
- name: "第96期",
|
|
|
- price: "23.00",
|
|
|
- oldprice: "33.00",
|
|
|
- author: "TEENS",
|
|
|
- score: 3,
|
|
|
- progress: "90%"
|
|
|
- },
|
|
|
- {
|
|
|
- src: require('../../assets/baozhi1.png'),
|
|
|
- name: "第87期",
|
|
|
- price: "27.00",
|
|
|
- oldprice: "43.00",
|
|
|
- author: "2022-04-15",
|
|
|
- score: 3,
|
|
|
- },
|
|
|
- {
|
|
|
- src: require('../../assets/baozhi2.png'),
|
|
|
- name: "第86期 ",
|
|
|
- price: "19.00",
|
|
|
- oldprice: "27.00",
|
|
|
- author: "TEENS",
|
|
|
- score: 3,
|
|
|
- },
|
|
|
- {
|
|
|
- src: require('../../assets/baozhi2.png'),
|
|
|
- name: "第85期",
|
|
|
- price: "28.90",
|
|
|
- oldprice: "39.00",
|
|
|
- author: "TEENS",
|
|
|
- score: 3,
|
|
|
- },
|
|
|
- {
|
|
|
- src: require('../../assets/baozhi1.png'),
|
|
|
- name: "第84期",
|
|
|
- price: "23.00",
|
|
|
- oldprice: "30.00",
|
|
|
- author: "TEENS",
|
|
|
- score: 3,
|
|
|
- }
|
|
|
- ],
|
|
|
- name: '报纸',
|
|
|
- number: 96,
|
|
|
- numberstr: '共96期',
|
|
|
- study: 'value1'
|
|
|
- },
|
|
|
- Bookinfo2:{
|
|
|
- BookList: [{
|
|
|
- src: require('../../assets/bookcard-image.png'),
|
|
|
- name: "名称名称名称名称名称名称名称名称名称名称名称名称",
|
|
|
- price: "3.00",
|
|
|
- oldprice: "3.00",
|
|
|
- author: "作者",
|
|
|
- score: 3,
|
|
|
- progress: "90%",
|
|
|
- time:'2023/4/16 19:00'
|
|
|
- },
|
|
|
- {
|
|
|
- src: require('../../assets/bookcard-image.png'),
|
|
|
- name: "名称名称名称名称名称名称名称名称名称名称名称名称",
|
|
|
- price: "3.00",
|
|
|
- oldprice: "3.00",
|
|
|
- author: "作者",
|
|
|
- score: 3,
|
|
|
- time:'2023/4/16 19:00'
|
|
|
- },
|
|
|
- {
|
|
|
- src: require('../../assets/bookcard-image.png'),
|
|
|
- name: "名称名称名称名称名称名称名称名称名称名称名称名称",
|
|
|
- price: "3.00",
|
|
|
- oldprice: "3.00",
|
|
|
- author: "作者",
|
|
|
- score: 3,
|
|
|
- time:'2023/4/16 19:00'
|
|
|
- },
|
|
|
- {
|
|
|
- src: require('../../assets/bookcard-image.png'),
|
|
|
- name: "名称名称名称名称名称名称名称名称名称名称名称名称",
|
|
|
- price: "3.00",
|
|
|
- oldprice: "3.00",
|
|
|
- author: "作者",
|
|
|
- score: 3,
|
|
|
- time:'2023/4/16 19:00'
|
|
|
- },
|
|
|
- {
|
|
|
- src: require('../../assets/bookcard-image.png'),
|
|
|
- name: "名称名称名称名称名称名称名称名称名称名称名称名称",
|
|
|
- price: "3.00",
|
|
|
- oldprice: "3.00",
|
|
|
- author: "作者",
|
|
|
- score: 3,
|
|
|
- time:'2023/4/16 19:00'
|
|
|
- }
|
|
|
- ],
|
|
|
- name: '初一',
|
|
|
- number: 805,
|
|
|
- numberstr: '共805个',
|
|
|
- study: 'value2'
|
|
|
+ BookList: [],
|
|
|
+ name: '',
|
|
|
+ number: 0,
|
|
|
+ numberstr: '',
|
|
|
},
|
|
|
nameTypeCn: this.$route.query.name?decodeURIComponent(this.$route.query.name):'画刊',
|
|
|
- nameTypeList: ['画刊','报纸','练习册','课程'],
|
|
|
+ itemType:this.$route.query.type?this.$route.query.type:'huakan',
|
|
|
yearList:[
|
|
|
{
|
|
|
- value: '',
|
|
|
+ value: -1,
|
|
|
label: '全部'
|
|
|
- },{
|
|
|
- value: '2023',
|
|
|
- label: '2023'
|
|
|
- },{
|
|
|
- value: '2022',
|
|
|
- label: '2022'
|
|
|
- },{
|
|
|
- value: '2021',
|
|
|
- label: '2021'
|
|
|
- },{
|
|
|
- value: '2020',
|
|
|
- label: '2020'
|
|
|
- },{
|
|
|
- value: '2019',
|
|
|
- label: '2019'
|
|
|
- },{
|
|
|
- value: '2018',
|
|
|
- label: '2018'
|
|
|
- },{
|
|
|
- value: '2017',
|
|
|
- label: '2017'
|
|
|
- },{
|
|
|
- value: '2016',
|
|
|
- label: '2016'
|
|
|
- },{
|
|
|
- value: '2015',
|
|
|
- label: '2015'
|
|
|
- },{
|
|
|
- value: '2014',
|
|
|
- label: '2014'
|
|
|
- },{
|
|
|
- value: '2013',
|
|
|
- label: '2013'
|
|
|
- },{
|
|
|
- value: '2012',
|
|
|
- label: '2012'
|
|
|
- },{
|
|
|
- value: '2011',
|
|
|
- label: '2011'
|
|
|
- },{
|
|
|
- value: '2010',
|
|
|
- label: '2010'
|
|
|
- },{
|
|
|
- value: '2009',
|
|
|
- label: '2009'
|
|
|
- },{
|
|
|
- value: '2008',
|
|
|
- label: '2008'
|
|
|
- },
|
|
|
+ }
|
|
|
],
|
|
|
studyList:[
|
|
|
{
|
|
|
- value: '',
|
|
|
- label: '全部'
|
|
|
- },{
|
|
|
- value: 'value1',
|
|
|
- label: '小学'
|
|
|
- },{
|
|
|
- value: 'value2',
|
|
|
- label: '初一'
|
|
|
- },{
|
|
|
- value: 'value3',
|
|
|
- label: '初二'
|
|
|
- },{
|
|
|
- value: 'value4',
|
|
|
- label: '初三'
|
|
|
- },{
|
|
|
- value: 'value5',
|
|
|
- label: '高一'
|
|
|
- },{
|
|
|
- value: 'value6',
|
|
|
- label: '高二'
|
|
|
+ study_phase: -1,
|
|
|
+ study_phase_name: '全部'
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ baozhiStudyList:[],
|
|
|
+ categoryList:[
|
|
|
+ {
|
|
|
+ value: 'LB',
|
|
|
+ label: '录播'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: 'ZB',
|
|
|
+ label: '直播'
|
|
|
},
|
|
|
],
|
|
|
typeList:[
|
|
|
{
|
|
|
- value: 'value1',
|
|
|
+ value: 0,
|
|
|
label: '单本'
|
|
|
},
|
|
|
{
|
|
|
- value: 'value2',
|
|
|
- label: '合刊'
|
|
|
+ value: 1,
|
|
|
+ label: '专辑'
|
|
|
},
|
|
|
],
|
|
|
- form:{
|
|
|
- yearValue: '',
|
|
|
- studyValue: '',
|
|
|
- typeValue: 'value1',
|
|
|
- searchValue: ''
|
|
|
- }
|
|
|
+ courseForm:{
|
|
|
+ studyValue: window.localStorage.getItem("courseFormstudyValue")?window.localStorage.getItem("courseFormstudyValue")*1:-1,
|
|
|
+ categoryValue: window.localStorage.getItem("courseFormcategoryValue")?window.localStorage.getItem("courseFormcategoryValue"):'LB'
|
|
|
+ },
|
|
|
+ baozhiForm:{
|
|
|
+ yearValue: window.localStorage.getItem("baozhiFormyearValue")?window.localStorage.getItem("baozhiFormyearValue")*1:-1,
|
|
|
+ studyValue: window.localStorage.getItem("baozhiFormstudyValue")?window.localStorage.getItem("baozhiFormstudyValue")*1:-1,
|
|
|
+ typeValue: window.localStorage.getItem("baozhiFormtypeValue")?window.localStorage.getItem("baozhiFormtypeValue")*1:0,
|
|
|
+ },
|
|
|
+ currentPage: 1, // 当前页码
|
|
|
+ page_capacity: 10, // 每页条数
|
|
|
+ searchValue: '',
|
|
|
+ titleName:''
|
|
|
}
|
|
|
},
|
|
|
//计算属性 类似于data概念
|
|
@@ -351,19 +191,128 @@ export default {
|
|
|
watch: {},
|
|
|
//方法集合
|
|
|
methods: {
|
|
|
- handleClick(file,value){
|
|
|
- this.form[file] = value
|
|
|
+ handleClick(form,file,value,name){
|
|
|
+ window.localStorage.setItem(form+file,value)
|
|
|
+ if(form==='courseForm'&&file==='categoryValue'&&value==='ZB'){
|
|
|
+ this.courseForm.studyValue = -1
|
|
|
+ }else if(form==='courseForm'&&file==='categoryValue'&&value==='LB'){
|
|
|
+ this.courseForm.studyValue = window.localStorage.getItem("courseFormstudyValue")?window.localStorage.getItem("courseFormstudyValue")*1:-1
|
|
|
+ }
|
|
|
+ if(form==='courseForm'&&file==='studyValue'&&this.courseForm.categoryValue==='ZB'){
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ if(name){
|
|
|
+ this.titleName = name
|
|
|
+ window.localStorage.setItem('baozhiFormstudyValueName',name)
|
|
|
+ }
|
|
|
+ this[form][file] = value
|
|
|
+ this.currentPage = 1;
|
|
|
this.handleData()
|
|
|
},
|
|
|
handleData(){
|
|
|
+ let MethodName = "/ShopServer/Client/ShopHomeQuery/PageQueryCourseList"
|
|
|
+ let data = {
|
|
|
+ page_capacity: this.page_capacity,
|
|
|
+ cur_page: this.currentPage,
|
|
|
+ search_content: this.searchValue.trim(),
|
|
|
+ }
|
|
|
+ if(this.itemType==='kecheng'){
|
|
|
+ data.course_type = this.courseForm.categoryValue,
|
|
|
+ data.study_phase = this.courseForm.studyValue
|
|
|
+ getLogin(MethodName, data)
|
|
|
+ .then((res) => {
|
|
|
+ if(res.status===1){
|
|
|
+ this.Bookinfo = {
|
|
|
+ name: this.courseForm.categoryValue==='LB'?'课程':'直播',
|
|
|
+ number: res.total_count,
|
|
|
+ numberstr: '共' + res.total_count + '期',
|
|
|
+ study: this.courseForm.studyValue,
|
|
|
+ BookList: res.course_list
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+
|
|
|
+ });
|
|
|
+ }else if(this.itemType==='baozhi'){
|
|
|
+ MethodName = "/ShopServer/Client/ShopHomeQuery/PageQueryIssueList"
|
|
|
+ data.year_label = this.baozhiForm.yearValue
|
|
|
+ data.study_phase = this.baozhiForm.studyValue
|
|
|
+ data.comb_flag = this.baozhiForm.typeValue
|
|
|
+ getLogin(MethodName, data)
|
|
|
+ .then((res) => {
|
|
|
+ if(res.status===1){
|
|
|
+ this.Bookinfo = {
|
|
|
+ name: this.titleName,
|
|
|
+ number: res.total_count,
|
|
|
+ numberstr: '共' + res.total_count + '期',
|
|
|
+ study: this.baozhiForm.studyValue,
|
|
|
+ BookList: res.issue_list
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+
|
|
|
+ });
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 切换每页条数
|
|
|
+ handleSizeChange(val) {
|
|
|
+ this.currentPage = 1;
|
|
|
+ this.page_capacity = val;
|
|
|
+ this.handleData()
|
|
|
+ },
|
|
|
+ // 切换页码
|
|
|
+ handleCurrentChange(val) {
|
|
|
+ this.currentPage = val;
|
|
|
+ this.handleData()
|
|
|
+ },
|
|
|
+ changeStudy(form,value){
|
|
|
+ this.currentPage = 1;
|
|
|
+ this[form].studyValue = value
|
|
|
+ this.handleData()
|
|
|
+ },
|
|
|
+ // 学段列表
|
|
|
+ getStudyList(){
|
|
|
+ let MethodName = "/OrgServer/DictManager/GetStudyPhaseList"
|
|
|
+ getLogin(MethodName, {})
|
|
|
+ .then((res) => {
|
|
|
+ if(res.status===1){
|
|
|
+ let studyList = [
|
|
|
+ {
|
|
|
+ study_phase: -1,
|
|
|
+ study_phase_name: '全部'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ this.studyList = studyList.concat(res.study_phase_list)
|
|
|
+ this.baozhiStudyList = res.study_phase_list
|
|
|
+ this.baozhiForm.studyValue = window.localStorage.getItem("baozhiFormstudyValue")?window.localStorage.getItem("baozhiFormstudyValue")*1:res.study_phase_list[0]?res.study_phase_list[0].study_phase:-1
|
|
|
+ this.titleName = window.localStorage.getItem("baozhiFormstudyValueName")?window.localStorage.getItem("baozhiFormstudyValueName"):res.study_phase_list[0]?res.study_phase_list[0].study_phase_name:''
|
|
|
+ }
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+
|
|
|
+ });
|
|
|
},
|
|
|
- changeStudy(value){
|
|
|
- this.form.studyValue = value
|
|
|
+ // 获取年份列表
|
|
|
+ getYearList(){
|
|
|
+ let nowYear = new Date().getFullYear()
|
|
|
+ let yearList = []
|
|
|
+ for(let i = 0; i < 20; i++){
|
|
|
+ let obj = {
|
|
|
+ value: nowYear - i,
|
|
|
+ label: nowYear - i
|
|
|
+ }
|
|
|
+ yearList.push(obj)
|
|
|
+ }
|
|
|
+ this.yearList = this.yearList.concat(yearList)
|
|
|
}
|
|
|
},
|
|
|
//生命周期 - 创建完成(可以访问当前this实例)
|
|
|
created() {
|
|
|
-
|
|
|
+ this.getStudyList()
|
|
|
+ this.getYearList()
|
|
|
+ this.handleData()
|
|
|
},
|
|
|
//生命周期 - 挂载完成(可以访问DOM元素)
|
|
|
mounted() {
|
|
@@ -449,6 +398,11 @@ export default {
|
|
|
&:hover{
|
|
|
color: #165DFF;
|
|
|
}
|
|
|
+ &.not-allow{
|
|
|
+ cursor: not-allowed;
|
|
|
+ background: #F2F3F5;
|
|
|
+ color: #C1C5CD;
|
|
|
+ }
|
|
|
&.active{
|
|
|
color: #165DFF;
|
|
|
border-color: #165DFF;
|
|
@@ -459,6 +413,10 @@ export default {
|
|
|
margin-top: 2px;
|
|
|
}
|
|
|
}
|
|
|
+ &.not-allow.active{
|
|
|
+ color: #CEDCFE;
|
|
|
+ border-color: #CEDCFE;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
.el-input{
|
|
@@ -511,5 +469,8 @@ export default {
|
|
|
padding: 9px 12px;
|
|
|
}
|
|
|
}
|
|
|
+ .el-pagination{
|
|
|
+ text-align: left;
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|