|
|
|
@ -4,38 +4,50 @@
|
|
|
|
|
<div class="headerText">
|
|
|
|
|
<div class="searchP">查询条件</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="screen">
|
|
|
|
|
<div class="task-name">
|
|
|
|
|
<span class="task-name-text">产品名称:</span>
|
|
|
|
|
<div class="task-input">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryCondition.firmName"
|
|
|
|
|
placeholder="请输入内容"
|
|
|
|
|
></el-input>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="task-name">
|
|
|
|
|
<span class="task-name-text">备案编码:</span>
|
|
|
|
|
<div class="task-input">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryCondition.PrescriptionContent"
|
|
|
|
|
placeholder="请输入内容"
|
|
|
|
|
></el-input>
|
|
|
|
|
</div>
|
|
|
|
|
<el-form ref="form1" :model="form1" label-width="80px">
|
|
|
|
|
<div style="margin-top: 10px">
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="7">
|
|
|
|
|
<el-form-item label="产品名称">
|
|
|
|
|
<el-input v-model="form1.name"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="7">
|
|
|
|
|
<el-form-item label="备案编码">
|
|
|
|
|
<el-input v-model="form1.name"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="7">
|
|
|
|
|
<el-form-item label="生产企业">
|
|
|
|
|
<el-input v-model="form1.a1"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="task-name">
|
|
|
|
|
<span class="task-name-text">生产企业:</span>
|
|
|
|
|
<div class="task-input">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryCondition.majorFunction"
|
|
|
|
|
placeholder="请输入内容"
|
|
|
|
|
></el-input>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="7">
|
|
|
|
|
<el-form-item label="化妆品类型">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="types"
|
|
|
|
|
placeholder="请选择化妆品类型"
|
|
|
|
|
@change="changeType"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in options"
|
|
|
|
|
:key="item.value"
|
|
|
|
|
:label="item.label"
|
|
|
|
|
:value="item.value"
|
|
|
|
|
>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select> </el-form-item
|
|
|
|
|
></el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-form>
|
|
|
|
|
<div class="footBox">
|
|
|
|
|
<el-button icon="el-icon-refresh-left">重置</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-search">查询</el-button>
|
|
|
|
|
<el-button icon="el-icon-refresh-left" @click="reset">重置</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="searchList"
|
|
|
|
|
>查询</el-button
|
|
|
|
|
>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="tabsBottom">
|
|
|
|
@ -50,30 +62,39 @@
|
|
|
|
|
<div class="table-item">
|
|
|
|
|
<el-table
|
|
|
|
|
v-loading="loading"
|
|
|
|
|
:data="tableList"
|
|
|
|
|
:data="tableData"
|
|
|
|
|
border
|
|
|
|
|
height="300"
|
|
|
|
|
:stripe="false"
|
|
|
|
|
>
|
|
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
|
|
<el-table-column type="index" label="序号" width="55" />
|
|
|
|
|
|
|
|
|
|
<el-table-column label="产品名称" prop="name" />
|
|
|
|
|
<el-table-column label="产品类型" prop="type"> </el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="批准文号" prop="num" />
|
|
|
|
|
<el-table-column label="企业名称" prop="enterpriseName">
|
|
|
|
|
<el-table-column label="产品名称">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.mc || scope.row.cpmc }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column :label="A2">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.bah || scope.row.pzrq }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column :label="A3">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.qy || scope.row.sf }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="操作"
|
|
|
|
|
class-name="small-padding fixed-width"
|
|
|
|
|
width="150"
|
|
|
|
|
width="140"
|
|
|
|
|
>
|
|
|
|
|
<template>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
size="mini"
|
|
|
|
|
plain
|
|
|
|
|
type="primary"
|
|
|
|
|
@click="toDetail()"
|
|
|
|
|
@click="toDetail(scope.row)"
|
|
|
|
|
>详情</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button size="mini" plain type="warning">编辑</el-button>
|
|
|
|
@ -82,153 +103,157 @@
|
|
|
|
|
</el-table>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
<div class="pagination">
|
|
|
|
|
<span class="custom">共100条,显示1条</span>
|
|
|
|
|
<el-pagination
|
|
|
|
|
background
|
|
|
|
|
@current-change="currentChange"
|
|
|
|
|
@size-change="sizeChange"
|
|
|
|
|
:page-sizes="[10, 5]"
|
|
|
|
|
layout=" prev, pager, next, sizes, jumper"
|
|
|
|
|
:total="querydata.total"
|
|
|
|
|
>
|
|
|
|
|
</el-pagination>
|
|
|
|
|
</div>
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="total > 0"
|
|
|
|
|
:total="total"
|
|
|
|
|
:page="form1.current"
|
|
|
|
|
:limit="form1.size"
|
|
|
|
|
@pagination="getPagination"
|
|
|
|
|
></pagination>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 药品 国抽详情 -->
|
|
|
|
|
<drugDetail ref="drugDetail"></drugDetail>
|
|
|
|
|
<!-- 化妆品-->
|
|
|
|
|
<samplingDetail ref="sampling"></samplingDetail>
|
|
|
|
|
<!-- 药品 省抽详情 -->
|
|
|
|
|
<drugProvince ref="drugProvince"></drugProvince>
|
|
|
|
|
<!-- 医疗器械详情 -->
|
|
|
|
|
<medical ref="medical"></medical>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import drugDetail from "../../cosmeticsFile/drugDetail";
|
|
|
|
|
import samplingDetail from "../../cosmeticsFile/samplingDetail";
|
|
|
|
|
import drugProvince from '../../cosmeticsFile/drugProvince';
|
|
|
|
|
import medical from '../../cosmeticsFile/medical'
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
components: {},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
drugnum: "(20)",
|
|
|
|
|
activeName: "first",
|
|
|
|
|
queryCondition: {
|
|
|
|
|
fullTextSearch: "", // 全文检索
|
|
|
|
|
firmName: "", // 企业名称
|
|
|
|
|
approvalNumber: "", // 批准文号
|
|
|
|
|
taskName: "", // 产品名称
|
|
|
|
|
PrescriptionContent: "", // 处方内容
|
|
|
|
|
majorFunction: "", // 功能主治
|
|
|
|
|
startTime: "", // 开始日期
|
|
|
|
|
endTime: "", // 结束日期
|
|
|
|
|
checkList: [],
|
|
|
|
|
checkListTwo: [],
|
|
|
|
|
},
|
|
|
|
|
//===========
|
|
|
|
|
loading: false,
|
|
|
|
|
tableList: [
|
|
|
|
|
{
|
|
|
|
|
name: "辽宁护肤霜",
|
|
|
|
|
type: "化妆品",
|
|
|
|
|
num: "1231231231231",
|
|
|
|
|
enterpriseName: "xxxx有限公司",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "辽宁护肤霜",
|
|
|
|
|
type: "药品",
|
|
|
|
|
num: "1231231231231",
|
|
|
|
|
enterpriseName: "xxxx有限公司",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "辽宁护肤霜",
|
|
|
|
|
type: "医疗器械",
|
|
|
|
|
num: "1231231231231",
|
|
|
|
|
enterpriseName: "xxxx有限公司",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "辽宁护肤霜",
|
|
|
|
|
type: "化妆品",
|
|
|
|
|
num: "1231231231231",
|
|
|
|
|
enterpriseName: "xxxx有限公司",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "辽宁护肤霜",
|
|
|
|
|
type: "医疗器械",
|
|
|
|
|
num: "1231231231231",
|
|
|
|
|
enterpriseName: "xxxx有限公司",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "辽宁护肤霜",
|
|
|
|
|
type: "化妆品",
|
|
|
|
|
num: "1231231231231",
|
|
|
|
|
enterpriseName: "xxxx有限公司",
|
|
|
|
|
},
|
|
|
|
|
tableData: [],
|
|
|
|
|
A1: "产品名称",
|
|
|
|
|
A2: "备案编码",
|
|
|
|
|
A3: "生产企业",
|
|
|
|
|
types: 1,
|
|
|
|
|
total: 0,
|
|
|
|
|
options: [
|
|
|
|
|
{
|
|
|
|
|
name: "辽宁护肤霜",
|
|
|
|
|
type: "医疗器械",
|
|
|
|
|
num: "1231231231231",
|
|
|
|
|
enterpriseName: "xxxx有限公司",
|
|
|
|
|
value: 1,
|
|
|
|
|
label: "国产化妆品",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "辽宁护肤霜",
|
|
|
|
|
type: "化妆品",
|
|
|
|
|
num: "1231231231231",
|
|
|
|
|
enterpriseName: "xxxx有限公司",
|
|
|
|
|
value: 2,
|
|
|
|
|
label: "国产特殊化妆品",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "辽宁护肤霜",
|
|
|
|
|
type: "医疗器械",
|
|
|
|
|
num: "1231231231231",
|
|
|
|
|
enterpriseName: "xxxx有限公司",
|
|
|
|
|
value: 3,
|
|
|
|
|
label: "进口化妆品",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "辽宁护肤霜",
|
|
|
|
|
type: "化妆品",
|
|
|
|
|
num: "1231231231231",
|
|
|
|
|
enterpriseName: "xxxx有限公司",
|
|
|
|
|
value: 4,
|
|
|
|
|
label: "进口特殊化妆品",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
querydata: {
|
|
|
|
|
total: 11,
|
|
|
|
|
form1: {
|
|
|
|
|
a1: "",
|
|
|
|
|
name: "",
|
|
|
|
|
size: 10,
|
|
|
|
|
current: 1,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
|
samplingDetail,
|
|
|
|
|
drugDetail,
|
|
|
|
|
drugProvince,
|
|
|
|
|
medical
|
|
|
|
|
},
|
|
|
|
|
mounted() {},
|
|
|
|
|
created() {
|
|
|
|
|
this.changeType(1);
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
currentChange() {},
|
|
|
|
|
sizeChange() {},
|
|
|
|
|
toDetail() {
|
|
|
|
|
this.$router.push({
|
|
|
|
|
name: "化妆品详情",
|
|
|
|
|
path: "/productsMsg/cosmeticsDetail",
|
|
|
|
|
});
|
|
|
|
|
// this.$refs.sampling.open()
|
|
|
|
|
// this.$refs.drugDetail.open();
|
|
|
|
|
// this.$refs.drugProvince.open();
|
|
|
|
|
// this.$refs.medical.open();
|
|
|
|
|
//去内嵌页面
|
|
|
|
|
toDetail(e) {
|
|
|
|
|
console.log(e);
|
|
|
|
|
},
|
|
|
|
|
//搜索
|
|
|
|
|
searchList() {
|
|
|
|
|
this.changeType(this.types);
|
|
|
|
|
},
|
|
|
|
|
getPagination(e) {
|
|
|
|
|
console.log(e);
|
|
|
|
|
this.form1.current = e.page;
|
|
|
|
|
this.form1.size = e.limit;
|
|
|
|
|
this.chinaCosmetics();
|
|
|
|
|
},
|
|
|
|
|
//重置
|
|
|
|
|
reset() {
|
|
|
|
|
this.form1 = {
|
|
|
|
|
name: "",
|
|
|
|
|
a1: "",
|
|
|
|
|
size: 10,
|
|
|
|
|
current: 1,
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
//国产化妆品
|
|
|
|
|
async chinaCosmetics() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
let msg1 = await this.$api.cosmetics.domesticList(this.form1);
|
|
|
|
|
this.tableData = msg1.data.records;
|
|
|
|
|
this.total = msg1.data.total;
|
|
|
|
|
this.form1.size = msg1.data.size;
|
|
|
|
|
this.form1.current = msg1.data.current;
|
|
|
|
|
this.loading = false;
|
|
|
|
|
},
|
|
|
|
|
//国产特殊化妆品
|
|
|
|
|
async chinaSpecialCosmetics() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
let msg1 = await this.$api.cosmetics.specialList(this.form1);
|
|
|
|
|
this.tableData = msg1.data.records;
|
|
|
|
|
this.total = msg1.data.total;
|
|
|
|
|
this.form1.size = msg1.data.size;
|
|
|
|
|
this.form1.current = msg1.data.current;
|
|
|
|
|
this.loading = false;
|
|
|
|
|
},
|
|
|
|
|
//进口化妆品
|
|
|
|
|
async importCosmetics() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
let msg1 = await this.$api.cosmetics.importList(this.form1);
|
|
|
|
|
this.tableData = msg1.data.records;
|
|
|
|
|
this.total = msg1.data.total;
|
|
|
|
|
this.form1.size = msg1.data.size;
|
|
|
|
|
this.form1.current = msg1.data.current;
|
|
|
|
|
this.loading = false;
|
|
|
|
|
},
|
|
|
|
|
//进口特殊化妆品
|
|
|
|
|
async importSpecialCosmetics() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
let msg1 = await this.$api.cosmetics.importSpecialList(this.form1);
|
|
|
|
|
this.tableData = msg1.data.records;
|
|
|
|
|
this.total = msg1.data.total;
|
|
|
|
|
this.form1.size = msg1.data.size;
|
|
|
|
|
this.form1.current = msg1.data.current;
|
|
|
|
|
this.loading = false;
|
|
|
|
|
},
|
|
|
|
|
async changeType(e) {
|
|
|
|
|
this.reset()
|
|
|
|
|
if (e == 1) {
|
|
|
|
|
this.A2 = "备案编码";
|
|
|
|
|
this.A3 = "生产企业";
|
|
|
|
|
this.chinaCosmetics();
|
|
|
|
|
} else if (e == 2) {
|
|
|
|
|
this.A2 = "批准日期";
|
|
|
|
|
this.A3 = "省份";
|
|
|
|
|
this.chinaSpecialCosmetics();
|
|
|
|
|
} else if (e == 3) {
|
|
|
|
|
this.A2 = "备案编码";
|
|
|
|
|
this.A3 = "生产企业";
|
|
|
|
|
this.importCosmetics();
|
|
|
|
|
} else if (e == 4) {
|
|
|
|
|
this.A2 = "批准日期";
|
|
|
|
|
this.A3 = "省份";
|
|
|
|
|
this.importSpecialCosmetics();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
::v-deep .el-table--medium .el-table__cell {
|
|
|
|
|
padding: 4px 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
::v-deep .el-select {
|
|
|
|
|
width: 100% !important;
|
|
|
|
|
}
|
|
|
|
|
.container {
|
|
|
|
|
height: 100%;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
// overflow: auto;
|
|
|
|
|
background: #f2f2f2;
|
|
|
|
|
|
|
|
|
|
.headerText {
|
|
|
|
@ -252,119 +277,9 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.tabs {
|
|
|
|
|
height: 25%;
|
|
|
|
|
background: rgba(255, 255, 255, 0.9);
|
|
|
|
|
box-shadow: 0px 0px 12px 0px rgba(194, 212, 226, 0.64);
|
|
|
|
|
border-radius: vw(10);
|
|
|
|
|
padding-bottom: 20px;
|
|
|
|
|
// min-height: 90vh;
|
|
|
|
|
// padding-top: 3px;
|
|
|
|
|
// padding-left: 15px;
|
|
|
|
|
}
|
|
|
|
|
.screen {
|
|
|
|
|
padding: 15px 0 26px 28px;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
align-items: center;
|
|
|
|
|
.task-name {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin-right: 30px;
|
|
|
|
|
.task-name-text {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-family: Source Han Sans CN;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #6a6c6f;
|
|
|
|
|
line-height: 50px;
|
|
|
|
|
// margin-right: vw(10);
|
|
|
|
|
}
|
|
|
|
|
.task-input {
|
|
|
|
|
width: 251px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
::v-deep .el-input {
|
|
|
|
|
width: 251px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
}
|
|
|
|
|
::v-deep .el-input__inner {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-family: Source Han Sans CN;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
// color: #B1B6BF;
|
|
|
|
|
line-height: 50px;
|
|
|
|
|
padding-left: 15px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.checkbox-group-name {
|
|
|
|
|
width: 695px;
|
|
|
|
|
}
|
|
|
|
|
.time-interval {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin-right: 20px;
|
|
|
|
|
.interval-text {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-family: Source Han Sans CN;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #6a6c6f;
|
|
|
|
|
// line-height: 50px;
|
|
|
|
|
// margin-right: vw(10);
|
|
|
|
|
}
|
|
|
|
|
.interval-select {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
border: 1px solid #dbe0e8;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
.star-time,
|
|
|
|
|
.end-time {
|
|
|
|
|
position: relative;
|
|
|
|
|
.data_icon {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 50%;
|
|
|
|
|
right: 17px;
|
|
|
|
|
z-index: 9;
|
|
|
|
|
color: #c0c4cc;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
transform: translateY(-50%);
|
|
|
|
|
}
|
|
|
|
|
::v-deep .el-input__prefix {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
::v-deep .el-input {
|
|
|
|
|
width: 243px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
}
|
|
|
|
|
::v-deep .el-input__inner {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-family: Source Han Sans CN;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
// color: #B1B6BF;
|
|
|
|
|
line-height: 30px;
|
|
|
|
|
padding-left: 15px;
|
|
|
|
|
border: none;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.symbol {
|
|
|
|
|
background: rgba(219, 224, 232, 0.5);
|
|
|
|
|
width: 40px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-family: Source Han Sans CN;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #292f38;
|
|
|
|
|
line-height: 28px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 30%;
|
|
|
|
|
background: #fff;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//===================
|
|
|
|
@ -376,10 +291,11 @@ export default {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
.tabsBottom {
|
|
|
|
|
height: 75%;
|
|
|
|
|
height: 70%;
|
|
|
|
|
padding-top: 10px;
|
|
|
|
|
.foot-main {
|
|
|
|
|
height: 100%;
|
|
|
|
|
// min-height: 600px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
background: white;
|
|
|
|
|
}
|
|
|
|
@ -395,8 +311,6 @@ export default {
|
|
|
|
|
.pagination {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 0 20px;
|
|
|
|
|
padding-top: 20px;
|
|
|
|
|
padding: 15px 20px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
</style>
|