2024-06-03 09:43:48 +08:00
|
|
|
|
<template>
|
|
|
|
|
<div class="transaction-center">
|
|
|
|
|
<div class="box-top">
|
|
|
|
|
<div class="ys"></div>
|
|
|
|
|
<div class="bj"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="box-bottom">
|
|
|
|
|
<div class="center">
|
|
|
|
|
<div class="box1">
|
|
|
|
|
<div class="title">
|
|
|
|
|
<span class="mod1 active" @click="selectModule('mod1')">软著交易中心</span>
|
|
|
|
|
<span class="mod2" @click="selectModule('mod2')">今日特价软著</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="content1" v-if="currentModule === 'mod1'">
|
|
|
|
|
<div class="row1">
|
|
|
|
|
<em>著作权分类:</em>
|
|
|
|
|
<div class="sort-buttons">
|
|
|
|
|
<button
|
|
|
|
|
v-for="(sort, index) in visibleSorts"
|
|
|
|
|
:key="index"
|
|
|
|
|
class="sort-button"
|
|
|
|
|
:class="{ 'selected': selectedSort === sort }"
|
|
|
|
|
@click="selectSort(sort)"
|
|
|
|
|
>
|
|
|
|
|
{{ sort }}
|
|
|
|
|
</button>
|
|
|
|
|
<button v-if="hasMoreSorts" class="more-button" @click="showMore1 = true">
|
|
|
|
|
更多+
|
|
|
|
|
</button>
|
|
|
|
|
<div v-if="showMore1" class="popup1">
|
|
|
|
|
<button
|
|
|
|
|
v-for="(sort, index) in hiddenSorts"
|
|
|
|
|
:key="index"
|
|
|
|
|
class="sort-button"
|
|
|
|
|
:class="{ 'selected': selectedSort === sort }" @click="selectSort(sort)"
|
|
|
|
|
>
|
|
|
|
|
{{ sort }}
|
|
|
|
|
</button>
|
|
|
|
|
<button class="close-button" @click="showMore1 = false">关闭</button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row2">
|
|
|
|
|
<em>开发语言:</em>
|
|
|
|
|
<div class="language-buttons">
|
|
|
|
|
<button
|
|
|
|
|
v-for="(language, index) in visibleLanguages"
|
|
|
|
|
:key="index"
|
|
|
|
|
class="language-button"
|
|
|
|
|
:class="{ 'selected': selectedLanguage === language }"
|
|
|
|
|
@click="selectLanguage(language)"
|
|
|
|
|
>
|
|
|
|
|
{{ language }}
|
|
|
|
|
</button>
|
|
|
|
|
<button v-if="hasMoreLanguages" class="more-button" @click="showMore = true">
|
|
|
|
|
更多+
|
|
|
|
|
</button>
|
|
|
|
|
<div v-if="showMore" class="popup">
|
|
|
|
|
<button
|
|
|
|
|
v-for="(language, index) in hiddenLanguages"
|
|
|
|
|
:key="index"
|
|
|
|
|
class="language-button"
|
|
|
|
|
:class="{ 'selected': selectedLanguage === language }"
|
|
|
|
|
@click="selectLanguage(language)"
|
|
|
|
|
>
|
|
|
|
|
{{ language }}
|
|
|
|
|
</button>
|
|
|
|
|
<button class="close-button" @click="showMore = false">关闭</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row3">
|
|
|
|
|
<span>
|
|
|
|
|
<em>软著名称:</em>
|
|
|
|
|
<input type="text" placeholder="请输入软著名称" v-model="searchName">
|
|
|
|
|
</span>
|
|
|
|
|
<span>
|
|
|
|
|
<em>下证时间:</em>
|
|
|
|
|
<!-- <input type="date" v-model="startDate" placeholder="请选则开始日期"> -->
|
|
|
|
|
<el-date-picker
|
|
|
|
|
style="height: 40px; width: 150px;"
|
|
|
|
|
v-model="startDate"
|
|
|
|
|
id="startDate"
|
|
|
|
|
type="date"
|
|
|
|
|
placeholder="选择开始日期"
|
|
|
|
|
:picker-options="startPickerOptions"
|
|
|
|
|
@change="handleStartDateChange">
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
 
|
|
|
|
|
<!-- <input type="date" v-model="endDate"> -->
|
|
|
|
|
<el-date-picker
|
|
|
|
|
style="height: 40px; width: 150px;"
|
|
|
|
|
v-model="endDate"
|
|
|
|
|
type="date"
|
|
|
|
|
placeholder="选择截止日期"
|
|
|
|
|
:picker-options="endPickerOptions"
|
|
|
|
|
@change="handleEndDateChange">
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</span>
|
|
|
|
|
<button class="search" @click="search()">立即搜索</button>
|
|
|
|
|
<button class="reset" @click="resetAll()">重置全部搜索条件</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="content2" v-if="currentModule === 'mod2'">
|
|
|
|
|
<div class="bj">
|
|
|
|
|
<div class="left">
|
|
|
|
|
<div class="headline">
|
|
|
|
|
<h3>AI著作权名称</h3>
|
|
|
|
|
<em>医药类</em>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="text">
|
|
|
|
|
<p>著作权描述著作权描述著作权描述著作权描述著作权描述著作权描述著作权描述著作权描述著作权描述著作权描述著作权描述著作权描述著作权描述著作权描述著作权描述著作权描述著作权描述著作权描述著作权描述著作权描述著作权描述著作权描述著作权描述</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="right">
|
|
|
|
|
<p><em>¥</em><i>298.00</i>/件</p>
|
2024-09-14 16:28:01 +08:00
|
|
|
|
<a href="https://www.aimzhu.com/operator/">立即抢购</a>
|
2024-06-03 09:43:48 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="box2">
|
|
|
|
|
<p class="content11" v-if="currentModule === 'mod1'">共有<em>2023445</em>个搜索结果</p>
|
|
|
|
|
<p class="content22" v-if="currentModule === 'mod2'">今日共有<em>10</em>个特价软著</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="box3">
|
|
|
|
|
<div class="content111" v-if="currentModule === 'mod1'">
|
|
|
|
|
<el-table
|
|
|
|
|
class="table"
|
|
|
|
|
:data="tableData"
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
:header-cell-style="{ textAlign: 'center' }"
|
|
|
|
|
:cell-style="{ textAlign: 'center' }"
|
|
|
|
|
>
|
|
|
|
|
<el-table-column prop="序号" label="序号" width="100" />
|
|
|
|
|
<el-table-column prop="软著名称" label="软著名称" width="300" />
|
|
|
|
|
<el-table-column prop="价格" label="价格" />
|
|
|
|
|
<el-table-column prop="所属行业" label="所属行业" />
|
|
|
|
|
<el-table-column prop="下证日期" label="下证日期" />
|
|
|
|
|
<el-table-column prop="发布日期" label="发布日期" />
|
|
|
|
|
<el-table-column prop="距离下架" label="距离下架" />
|
|
|
|
|
</el-table>
|
|
|
|
|
|
2024-09-14 16:28:01 +08:00
|
|
|
|
<a class="goBuy" href="https://www.aimzhu.com/operator/">去购买</a>
|
2024-06-03 09:43:48 +08:00
|
|
|
|
<el-pagination
|
|
|
|
|
class="pagination"
|
|
|
|
|
@size-change="handleSizeChange"
|
|
|
|
|
@current-change="handleCurrentChange"
|
|
|
|
|
:current-page="currentPage"
|
|
|
|
|
:page-sizes="[10, 20, 30, 40]"
|
|
|
|
|
:page-size="pageSize"
|
|
|
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
|
|
|
:total="total"
|
|
|
|
|
></el-pagination>
|
|
|
|
|
</div>
|
2024-07-12 14:29:07 +08:00
|
|
|
|
<!-- 今日特价软著 -->
|
2024-06-03 09:43:48 +08:00
|
|
|
|
<div class="content222" v-if="currentModule === 'mod2'">
|
|
|
|
|
<el-table
|
|
|
|
|
:data="tableData"
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
:header-cell-style="{ textAlign: 'center' }"
|
|
|
|
|
:cell-style="{ textAlign: 'center' }"
|
|
|
|
|
>
|
|
|
|
|
<el-table-column prop="序号" label="序号" width="100" />
|
|
|
|
|
<el-table-column prop="软著名称" label="软著名称" width="300" />
|
|
|
|
|
<el-table-column prop="价格" label="价格" />
|
|
|
|
|
<el-table-column prop="所属行业" label="所属行业" />
|
|
|
|
|
<el-table-column prop="下证日期" label="下证日期" />
|
|
|
|
|
<el-table-column prop="发布日期" label="发布日期" />
|
|
|
|
|
<el-table-column prop="距离下架" label="距离下架" />
|
|
|
|
|
</el-table>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
// import { Button } from 'vue-amazing-ui'
|
|
|
|
|
// import 'vue-amazing-ui/css'
|
|
|
|
|
// import { ElButton, ElInput } from 'element-plus'
|
|
|
|
|
import { ElTable, ElTableColumn, ElPagination } from 'element-plus';
|
|
|
|
|
import { ElDatePicker } from 'element-plus';
|
|
|
|
|
import { format } from 'date-fns';
|
|
|
|
|
|
|
|
|
|
import { ref } from 'vue'
|
|
|
|
|
import axios from 'axios'
|
|
|
|
|
import { layer } from "vue3-layer"
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
components: {
|
|
|
|
|
ElTable,
|
|
|
|
|
ElTableColumn,
|
|
|
|
|
ElPagination,
|
|
|
|
|
ElDatePicker
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
currentModule: 'mod1', // 初始模块为 mod1
|
|
|
|
|
|
|
|
|
|
sorts: ['全部', '医药类', '教育类', '工业类', '政务类', '财税类', '金融类', '通信类', '能源类', '交通类', '信息类', '语音类'],
|
|
|
|
|
maxVisible1: 9,
|
|
|
|
|
showMore1: false,
|
|
|
|
|
selectedSort: '全部',
|
|
|
|
|
|
|
|
|
|
languages: [
|
|
|
|
|
'Java', 'C语言', 'C++', 'JavaScript', 'Python', '安卓', '鸿蒙HarmonyOS4.0', 'HTML', 'CSS',
|
|
|
|
|
],
|
|
|
|
|
maxVisible: 8, // 最大可见按钮数量
|
|
|
|
|
showMore: false, // 控制弹出层的显示
|
|
|
|
|
selectedLanguage: 'Java', // 选中的省份
|
|
|
|
|
|
|
|
|
|
searchName: '', // 软著名称
|
|
|
|
|
startDate: '', // 下证开始时间
|
|
|
|
|
endDate: '', // 下证结束时间
|
|
|
|
|
// startDateString: '',
|
|
|
|
|
// endDateString: '',
|
|
|
|
|
startDateString: new Date().toISOString().split('T')[0],
|
|
|
|
|
// endDateString: new Date().toISOString().split('T')[0],
|
|
|
|
|
endDateString: new Date(new Date().setMonth(new Date().getMonth() + 1)).toISOString().split('T')[0], // 设置一个月之后的日期作为默认值
|
|
|
|
|
// endDateString: format(new Date(new Date().getTime() + 10 * 24 * 60 * 60 * 1000), 'yyyy-MM-dd'), // 设置10天之后的日期作为默认值
|
|
|
|
|
|
|
|
|
|
startPickerOptions: {
|
|
|
|
|
disabledDate: (time) => {
|
|
|
|
|
if (this.endDateString) {
|
|
|
|
|
return time.getTime() > this.endDateString.getTime();
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
endPickerOptions: {
|
|
|
|
|
disabledDate: (time) => {
|
|
|
|
|
if (this.startDateString) {
|
|
|
|
|
return time.getTime() < this.startDateString.getTime();
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
tableData: [], // 表格数据
|
|
|
|
|
currentPage: 1, // 当前页码
|
|
|
|
|
pageSize: 10, // 每页显示条数
|
|
|
|
|
total: 0, // 总数据条数
|
|
|
|
|
|
|
|
|
|
pickerOptions: {
|
|
|
|
|
style: {
|
|
|
|
|
border: '1px solid red'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
computed: {
|
|
|
|
|
visibleSorts() {
|
|
|
|
|
return this.sorts.slice(0, this.maxVisible1);
|
|
|
|
|
},
|
|
|
|
|
hiddenSorts() {
|
|
|
|
|
return this.sorts.slice(this.maxVisible1);
|
|
|
|
|
},
|
|
|
|
|
hasMoreSorts() {
|
|
|
|
|
return this.sorts.length > this.maxVisible1;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
visibleLanguages() {
|
|
|
|
|
return this.languages.slice(0, this.maxVisible);
|
|
|
|
|
},
|
|
|
|
|
hiddenLanguages() {
|
|
|
|
|
return this.languages.slice(this.maxVisible);
|
|
|
|
|
},
|
|
|
|
|
hasMoreLanguages() {
|
|
|
|
|
return this.languages.length > this.maxVisible;
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
selectModule(module) {
|
|
|
|
|
this.currentModule = module;
|
|
|
|
|
|
|
|
|
|
const mod1 = document.querySelector('.mod1')
|
|
|
|
|
const mod2 = document.querySelector('.mod2')
|
|
|
|
|
// 根据当前模块切换内容
|
|
|
|
|
const content1 = '.content1';
|
|
|
|
|
const content2 = '.content2';
|
|
|
|
|
const content11 = '.content11';
|
|
|
|
|
const content22 = '.content22';
|
|
|
|
|
const content111 = '.content111';
|
|
|
|
|
const content222 = '.content222';
|
|
|
|
|
if (this.currentModule === 'mod1') {
|
|
|
|
|
// 软著交易中心激活
|
|
|
|
|
$(mod1).addClass('active').siblings().removeClass('active')
|
|
|
|
|
$(content1).show();
|
|
|
|
|
$(content11).show();
|
|
|
|
|
$(content111).show();
|
|
|
|
|
$(content2).hide();
|
|
|
|
|
$(content22).hide();
|
|
|
|
|
$(content222).hide();
|
|
|
|
|
} else if (this.currentModule === 'mod2') {
|
|
|
|
|
// 今日特价软著激活
|
|
|
|
|
$(mod2).addClass('active').siblings().removeClass('active')
|
|
|
|
|
$(content1).hide();
|
|
|
|
|
$(content11).hide();
|
|
|
|
|
$(content111).hide();
|
|
|
|
|
$(content2).show();
|
|
|
|
|
$(content22).show();
|
|
|
|
|
$(content222).show();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
selectSort(sort) {
|
|
|
|
|
this.selectedSort = sort;
|
|
|
|
|
this.showMore1 = false; // 选择省份后关闭弹出层
|
|
|
|
|
// 这里可以执行其他逻辑,例如通知父组件
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
selectLanguage(language) {
|
|
|
|
|
this.selectedLanguage = language;
|
|
|
|
|
this.showMore = false; // 选择省份后关闭弹出层
|
|
|
|
|
// 这里可以执行其他逻辑,例如通知父组件
|
|
|
|
|
},
|
|
|
|
|
handleStartDateChange(value) {
|
|
|
|
|
// if (!value) {
|
|
|
|
|
// value = new Date(); // 设置当前日期作为默认值
|
|
|
|
|
// // this.startDateString = format(value, 'yyyy-MM-dd');
|
|
|
|
|
// }
|
|
|
|
|
if (value) {
|
|
|
|
|
this.startDateString = format(value, 'yyyy-MM-dd');
|
|
|
|
|
|
|
|
|
|
// // 如果开始日期大于截止日期,重置截止日期为开始日期之前的一天
|
|
|
|
|
// if (this.startDateString && value.getTime() > this.endDateString.getTime()) {
|
|
|
|
|
// this.endDateString = new Date(value.getTime() - 24 * 60 * 60 * 1000); // 减一天
|
|
|
|
|
// this.endDateString = format(this.endDateString, 'yyyy-MM-dd');
|
|
|
|
|
// }
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
handleEndDateChange(value) {
|
|
|
|
|
// if (!value) {
|
|
|
|
|
// value = new Date(); // 设置当前日期作为默认值
|
|
|
|
|
// // this.endDateString = format(value, 'yyyy-MM-dd');
|
|
|
|
|
// }
|
|
|
|
|
if (value) {
|
|
|
|
|
this.endDateString = format(value, 'yyyy-MM-dd');
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
formatDate(date) {
|
|
|
|
|
if (date) {
|
|
|
|
|
return format(date, 'yyyy-MM-dd');
|
|
|
|
|
}
|
|
|
|
|
return '';
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
search() {
|
|
|
|
|
if (this.startDateString && this.endDateString) {
|
|
|
|
|
const startTime = new Date(this.startDateString).getTime();
|
|
|
|
|
const endTime = new Date(this.endDateString).getTime();
|
|
|
|
|
|
|
|
|
|
console.log('开始日期:', this.startDateString);
|
|
|
|
|
console.log('结束日期:', this.endDateString);
|
|
|
|
|
|
|
|
|
|
if (startTime >= endTime) {
|
|
|
|
|
this.$message.error('开始日期必须早于截止日期,请重新选择日期!');
|
|
|
|
|
layer.tips('开始日期必须早于截止日期,请重新选择日期!', '#startDate',{
|
|
|
|
|
shadeClose: false,
|
|
|
|
|
tips: [3, 'red'],
|
|
|
|
|
time: 2000,
|
|
|
|
|
area: ['auto', '40px'],
|
|
|
|
|
show: true
|
|
|
|
|
})
|
|
|
|
|
// layer.msg('开始日期必须早于截止日期,请重新选择日期!',{
|
|
|
|
|
// icon: 2,
|
|
|
|
|
// time: 2000,
|
|
|
|
|
// })
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const params = {
|
|
|
|
|
softwareName: this.searchName,
|
|
|
|
|
// startDate: this.startDate,
|
|
|
|
|
startDate: this.startDateString,
|
|
|
|
|
endDate: this.endDateString,
|
|
|
|
|
sort: this.selectedSort,
|
|
|
|
|
Language: this.selectedLanguage
|
|
|
|
|
};
|
|
|
|
|
// 使用 axios 发送请求
|
|
|
|
|
axios.post('/api/search', params)
|
|
|
|
|
.then(response => {
|
|
|
|
|
// 处理响应数据
|
|
|
|
|
console.log(response.data);
|
|
|
|
|
})
|
|
|
|
|
.catch(error => {
|
|
|
|
|
// 处理错误
|
|
|
|
|
console.error('Error:', error);
|
|
|
|
|
})
|
|
|
|
|
.finally(() => {
|
|
|
|
|
// 无论成功或失败,都会执行
|
|
|
|
|
console.log('Search request completed.');
|
|
|
|
|
});
|
|
|
|
|
// 在这里打印请求的 data,以便在控制台查看
|
|
|
|
|
console.log('Search request data:', params);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
resetAll() {
|
|
|
|
|
this.selectedSort = '全部';
|
|
|
|
|
this.selectedLanguage = 'Java';
|
|
|
|
|
this.searchName = '';
|
|
|
|
|
this.startDate = '';
|
|
|
|
|
this.endDate = '';
|
|
|
|
|
this.startDateString = new Date().toISOString().split('T')[0]; // 重置开始日期为当前日期
|
|
|
|
|
this.endDateString = new Date(new Date().setMonth(new Date().getMonth() + 1)).toISOString().split('T')[0]; // 重置结束日期为一个月之后的日期
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
.transaction-center {
|
|
|
|
|
position: relative;
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
}
|
|
|
|
|
.transaction-center .box-top {
|
|
|
|
|
/* padding-top: 80px; */
|
|
|
|
|
width: 100%;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
height: 4.75rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
.transaction-center .box-top .ys {
|
|
|
|
|
width: 100%;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
height: 1rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
}
|
|
|
|
|
.transaction-center .box-top .bj {
|
|
|
|
|
width: 100%;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
height: 3.75rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
background: url(/assets/img/transactioncenter-bj.png) no-repeat;
|
|
|
|
|
background-size: cover;
|
|
|
|
|
}
|
|
|
|
|
.transaction-center .box-bottom {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 100vw;
|
|
|
|
|
/* height: 500px; */
|
|
|
|
|
}
|
|
|
|
|
.transaction-center .box-bottom .center {
|
2024-09-14 16:28:01 +08:00
|
|
|
|
margin: -2.25rem auto .625rem auto;
|
|
|
|
|
width: 15rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
/* height: 800px; */
|
|
|
|
|
/* border: 1px solid red; */
|
|
|
|
|
/* background-color: pink; */
|
|
|
|
|
}
|
|
|
|
|
.center .box1 {
|
|
|
|
|
width: 100%;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
height: 3.45rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
background-color: #fff;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
box-shadow: 0 0 .1875rem rgba(0,0,0,.1);
|
2024-06-03 09:43:48 +08:00
|
|
|
|
}
|
|
|
|
|
.center .box1 .title {
|
|
|
|
|
display: flex;
|
|
|
|
|
width: 100%;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
height: .625rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
background-color: #f5f5f5;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
border-bottom: .0063rem solid #ebeef5;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
}
|
|
|
|
|
.center .box1 .title span {
|
|
|
|
|
display: block;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
width: 2.5rem;
|
|
|
|
|
height: .625rem;
|
|
|
|
|
line-height: .625rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
text-align: center;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
font-size: .2rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
background-color: #fafafa;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
border-right: .0125rem solid #ebeef5;
|
|
|
|
|
border-bottom: .0125rem solid #ebeef5;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
}
|
|
|
|
|
.center .box1 .title span:hover {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
background-color: #e86f12;
|
|
|
|
|
color: #FFF;
|
|
|
|
|
}
|
|
|
|
|
.center .box1 .title span.active {
|
|
|
|
|
color: #FFF;
|
|
|
|
|
background-color: #e86f12;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
.center .box1 .content1 {
|
2024-09-14 16:28:01 +08:00
|
|
|
|
width: 15rem;
|
|
|
|
|
height: 2.825rem;
|
|
|
|
|
padding: .125rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
}
|
|
|
|
|
/* .center .box1 .content1 .row2 .cssys {
|
|
|
|
|
border: 1px solid #dcdfe6;
|
|
|
|
|
margin-right: 15px;
|
|
|
|
|
}
|
|
|
|
|
.radio-button {
|
|
|
|
|
appearance: none;
|
|
|
|
|
width: 100px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
background-color: #f0f0f0;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
} */
|
|
|
|
|
.center .box1 .content1 .row1,
|
|
|
|
|
.center .box1 .content1 .row2,
|
|
|
|
|
.center .box1 .content1 .row3 {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: flex;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
height: .5rem;
|
|
|
|
|
margin: .25rem .125rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
}
|
|
|
|
|
.center .box1 .content1 .row3 span {
|
|
|
|
|
display: flex;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
margin-right: .1875rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
}
|
|
|
|
|
.center .box1 .content1 .row3 span input {
|
2024-09-14 16:28:01 +08:00
|
|
|
|
border: .0125rem solid #CCC;
|
|
|
|
|
border-radius: .05rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
color: #606266;
|
|
|
|
|
}
|
|
|
|
|
input::-webkit-input-placeholder {
|
|
|
|
|
color: #a8abb2;
|
|
|
|
|
}
|
|
|
|
|
.center .box1 .content1 .row3 span input:focus,
|
|
|
|
|
.center .box1 .content1 .row3 span input:hover {
|
2024-09-14 16:28:01 +08:00
|
|
|
|
border: .0125rem solid #409eff;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
}
|
|
|
|
|
/* .el-input {
|
|
|
|
|
--el-input-focus-border: 1px solid #e86f12;
|
|
|
|
|
} */
|
|
|
|
|
/* .el-date-editor.is-active,
|
|
|
|
|
.el-date-editor.is-active:hover,
|
|
|
|
|
.el-date-editor.is-active:focus {
|
|
|
|
|
border-color: #e86f12;
|
|
|
|
|
outline: 0;
|
|
|
|
|
}
|
|
|
|
|
:deep(.el-date-editor.is-active) {
|
|
|
|
|
border-color: #e86f12;
|
|
|
|
|
outline: 0;
|
|
|
|
|
} */
|
|
|
|
|
|
|
|
|
|
.center .box1 .content1 .row3 span input[type=text] {
|
2024-09-14 16:28:01 +08:00
|
|
|
|
font-size: .1875rem;
|
|
|
|
|
padding-left: .125rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
}
|
|
|
|
|
.center .box1 .content1 .row3 span input[type=date] {
|
2024-09-14 16:28:01 +08:00
|
|
|
|
width: 1.875rem;
|
|
|
|
|
font-size: .1875rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
}
|
|
|
|
|
.center .box1 .content1 .row3 span input[type=date]:hover,
|
|
|
|
|
.center .box1 .content1 .row3 span input[type=date]:focus {
|
2024-09-14 16:28:01 +08:00
|
|
|
|
border: .0125rem solid #CCC;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* .center .box1 .content1 .row3 span .startDate {
|
|
|
|
|
height: 40px;
|
|
|
|
|
} */
|
|
|
|
|
/* .el-input{
|
|
|
|
|
--el-input-focus-border-color:'red'
|
|
|
|
|
} */
|
|
|
|
|
/* .custom-date-picker .el-input__inner {
|
|
|
|
|
width: 200px;
|
|
|
|
|
height: 40px;
|
|
|
|
|
border: 2px solid red;
|
|
|
|
|
} */
|
|
|
|
|
.center .box1 .content1 .row3 button{
|
2024-09-14 16:28:01 +08:00
|
|
|
|
height: .5rem;
|
|
|
|
|
padding: .075rem .375rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
/* margin-left: 30px; */
|
|
|
|
|
border: none;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
.center .box1 .content1 .row3 .search {
|
|
|
|
|
position: absolute;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
right: 2.5rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
background-color: #552c0e;
|
|
|
|
|
color: #FFF;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
.center .box1 .content1 .row3 .reset{
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
width: 2.25rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
}
|
|
|
|
|
.center .box1 .content1 .row1 em,
|
|
|
|
|
.center .box1 .content1 .row2 em,
|
|
|
|
|
.center .box1 .content1 .row3 em {
|
2024-09-14 16:28:01 +08:00
|
|
|
|
padding: .075rem .0625rem;
|
|
|
|
|
width: 1.375rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
/* background-color: pink; */
|
|
|
|
|
}
|
|
|
|
|
.sort-buttons,
|
|
|
|
|
.language-buttons {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
gap: .125rem; /* 按钮之间的间隔 */
|
2024-06-03 09:43:48 +08:00
|
|
|
|
}
|
|
|
|
|
.sort-button,
|
|
|
|
|
.language-button {
|
2024-09-14 16:28:01 +08:00
|
|
|
|
padding: .075rem .375rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
/* border: 1px solid #ccc; */
|
|
|
|
|
border: none;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
border-radius: .05rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
background-color: #ffeedc;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: background-color 0.3s, color 0.3s;
|
|
|
|
|
}
|
|
|
|
|
.sort-button.selected,
|
|
|
|
|
.language-button.selected {
|
|
|
|
|
background-color: #fa7c38;
|
|
|
|
|
/* background: linear-gradient(to right,#ffbd52,#e86f12); */
|
|
|
|
|
color: white; /* 白色文字 */
|
|
|
|
|
}
|
|
|
|
|
.sort-button:hover,
|
|
|
|
|
.language-button:hover {
|
|
|
|
|
background-color: #fa7c38;
|
|
|
|
|
color: #FFF;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.more-button {
|
2024-09-14 16:28:01 +08:00
|
|
|
|
padding: .1rem .15rem;
|
|
|
|
|
border: .0125rem solid #ccc;
|
|
|
|
|
border-radius: .05rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
background-color: #f9f9f9;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: background-color 0.3s, color 0.3s;
|
|
|
|
|
}
|
|
|
|
|
.popup1 {
|
|
|
|
|
position: absolute;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
top: .5625rem;
|
|
|
|
|
width: 13.125rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
/* max-width: 1050px; */
|
|
|
|
|
background-color: white;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
border: .0125rem solid #ccc;
|
|
|
|
|
padding: .125rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
/* flex-direction: column; */
|
|
|
|
|
flex-wrap: wrap;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
gap: .125rem;
|
|
|
|
|
box-shadow: 0 .025rem .05rem rgba(0, 0, 0, 0.2);
|
2024-06-03 09:43:48 +08:00
|
|
|
|
z-index: 10;
|
|
|
|
|
}
|
|
|
|
|
.popup {
|
|
|
|
|
position: absolute;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
top: .5625rem;
|
|
|
|
|
width: 13.125rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
background-color: white;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
border: .0125rem solid #ccc;
|
|
|
|
|
padding: .125rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
/* flex-direction: column; */
|
|
|
|
|
flex-wrap: wrap;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
gap: .125rem;
|
|
|
|
|
box-shadow: 0 .025rem .05rem rgba(0, 0, 0, 0.2);
|
2024-06-03 09:43:48 +08:00
|
|
|
|
z-index: 10;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.close-button {
|
2024-09-14 16:28:01 +08:00
|
|
|
|
padding: .1rem .15rem;
|
|
|
|
|
border: .0125rem solid #ccc;
|
|
|
|
|
border-radius: .05rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
background-color: #f9f9f9;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: background-color 0.3s, color 0.3s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.close-button:hover {
|
|
|
|
|
background-color: #e7e7e7;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.center .box1 .content2 {
|
2024-09-14 16:28:01 +08:00
|
|
|
|
width: 15rem;
|
|
|
|
|
height: 2.825rem;
|
|
|
|
|
padding: .125rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
}
|
|
|
|
|
.center .box1 .content2 .bj {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background: url(/assets/img/box-bj.png) no-repeat;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
}
|
|
|
|
|
.center .box1 .content2 .bj .left {
|
|
|
|
|
display: felx;
|
|
|
|
|
flex-direction: column;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
width: 4.5rem;
|
|
|
|
|
height: 2rem;
|
|
|
|
|
margin: .25rem .5rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
/* border: 1px solid red; */
|
|
|
|
|
}
|
|
|
|
|
.center .box1 .content2 .bj .left .headline {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
width: 100%;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
height: 1rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
/* background-color: pink; */
|
|
|
|
|
}
|
|
|
|
|
.center .box1 .content2 .bj .left .headline h3 {
|
2024-09-14 16:28:01 +08:00
|
|
|
|
height: .625rem;
|
|
|
|
|
line-height: .625rem;
|
|
|
|
|
margin: .1875rem 0;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
color: #e79855;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
font-size: .35rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
font-weight: 700;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
margin-right: .25rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
/* background-color: skyblue; */
|
|
|
|
|
}
|
|
|
|
|
.center .box1 .content2 .bj .left .headline em {
|
2024-09-14 16:28:01 +08:00
|
|
|
|
height: .45rem;
|
|
|
|
|
line-height: .45rem;
|
|
|
|
|
padding: 0 .25rem;
|
|
|
|
|
margin: .275rem 0;
|
|
|
|
|
font-size: .1875rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
color: #FFF;
|
|
|
|
|
background-color: #fa9641;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
border-top-left-radius: .225rem;
|
|
|
|
|
border-bottom-left-radius: .225rem;
|
|
|
|
|
border-top-right-radius: .2rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
}
|
|
|
|
|
.center .box1 .content2 .bj .left .text p {
|
2024-09-14 16:28:01 +08:00
|
|
|
|
font-size: .1875rem;
|
|
|
|
|
line-height: .3125rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
display: -webkit-box;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
line-clamp: 2;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
|
}
|
|
|
|
|
.center .box1 .content2 .bj .right {
|
2024-09-14 16:28:01 +08:00
|
|
|
|
width: 3.25rem;
|
|
|
|
|
height: 1.875rem;
|
|
|
|
|
margin: .3125rem .75rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
/* border: 1px solid red; */
|
|
|
|
|
}
|
|
|
|
|
.center .box1 .content2 .bj .right p {
|
2024-09-14 16:28:01 +08:00
|
|
|
|
font-size: .25rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
text-align: center;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
margin-top: .375rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
}
|
|
|
|
|
.center .box1 .content2 .bj .right p em {
|
|
|
|
|
color: #e89954;
|
|
|
|
|
}
|
|
|
|
|
.center .box1 .content2 .bj .right p i {
|
2024-09-14 16:28:01 +08:00
|
|
|
|
font-size: .35rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
color: #e89954;
|
|
|
|
|
}
|
2024-09-14 16:28:01 +08:00
|
|
|
|
.center .box1 .content2 .bj .right a{
|
|
|
|
|
display: block;
|
|
|
|
|
width: 1.875rem;
|
|
|
|
|
height: .5rem;
|
|
|
|
|
line-height: .5rem;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin: .125rem .6875rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
border: none;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
font-size: .175rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
color: #FFF;
|
|
|
|
|
background-color: #552c0e;
|
|
|
|
|
}
|
2024-09-14 16:28:01 +08:00
|
|
|
|
.center .box1 .content2 .bj .right a:hover {
|
2024-06-03 09:43:48 +08:00
|
|
|
|
cursor: pointer;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
opacity: 0.7;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
}
|
|
|
|
|
.center .box2 {
|
2024-09-14 16:28:01 +08:00
|
|
|
|
margin: .1875rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
/* background-color: pink; */
|
|
|
|
|
}
|
|
|
|
|
.center .box2 p {
|
2024-09-14 16:28:01 +08:00
|
|
|
|
font-size: .2rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
}
|
|
|
|
|
.center .box2 p em {
|
|
|
|
|
color: #3fa1d3;
|
|
|
|
|
}
|
|
|
|
|
.center .box3 .content111 {
|
2024-07-12 14:29:07 +08:00
|
|
|
|
position: relative;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
margin-bottom: .375rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
}
|
|
|
|
|
.center .box3 .content111 .table {
|
2024-09-14 16:28:01 +08:00
|
|
|
|
margin-bottom: .625rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
}
|
2024-07-12 14:29:07 +08:00
|
|
|
|
.center .box3 .content111 .goBuy {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
bottom: 0;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
padding: .1rem .15rem;
|
2024-07-12 14:29:07 +08:00
|
|
|
|
border: none;
|
|
|
|
|
background-color: #fa7c38;
|
|
|
|
|
color: #FFF;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
cursor: pointer;
|
2024-07-12 14:29:07 +08:00
|
|
|
|
}
|
2024-06-03 09:43:48 +08:00
|
|
|
|
.center .box3 .content111 .pagination {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: end;
|
2024-09-14 16:28:01 +08:00
|
|
|
|
margin-right: .375rem;
|
2024-06-03 09:43:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
</style>
|