共 {{ tableData.total }} 项数据
-
@@ -158,6 +159,9 @@ defineExpose({
// padding: 0 10px;
// background-color: #ff9a5b;
// }
+.el-select-dropdown__item.is-selected{
+ font-weight: normal;
+}
.empty_table {
display: flex;
@@ -168,4 +172,5 @@ defineExpose({
margin-top: 50px;
margin-bottom: 50px;
}
+
diff --git a/src/theme/app.scss b/src/theme/app.scss
index 6aea7d9..9ad3e10 100644
--- a/src/theme/app.scss
+++ b/src/theme/app.scss
@@ -31,6 +31,7 @@
--mainColor: rgba(141, 141, 141, 0.7);
--backFilter: saturate(180%) blur(3px);
+ --el-color-primary: #ff9900;
/* 按钮样式变量 */
// --Buttons-Border-Primary-Gradient: #e38522;
diff --git a/src/theme/loading.scss b/src/theme/loading.scss
index c28c7b9..964982d 100644
--- a/src/theme/loading.scss
+++ b/src/theme/loading.scss
@@ -15,7 +15,7 @@
.loading-next .loading-next-box-warp .loading-next-box-item {
width: 33.333333%;
height: 33.333333%;
- background: var(--el-color-primary);
+ background: #ff9900;
float: left;
animation: loading-next-animation 1.2s infinite ease;
border-radius: 1px;
diff --git a/src/utils/loading.ts b/src/utils/loading.ts
index 5fd020c..eb78d15 100644
--- a/src/utils/loading.ts
+++ b/src/utils/loading.ts
@@ -1,5 +1,6 @@
import { nextTick } from 'vue';
import '/@/theme/loading.scss';
+import LoadingGif from '/@/assets/loading2.gif';
/**
* 页面全局 Loading
@@ -15,15 +16,7 @@ export const NextLoading = {
const htmls = `
-
-
-
-
-
-
-
-
-
+
`;
diff --git a/src/views/pages/caixun/components/CaixunList.vue b/src/views/pages/caixun/components/CaixunList.vue
index 1bedb14..c4dff40 100644
--- a/src/views/pages/caixun/components/CaixunList.vue
+++ b/src/views/pages/caixun/components/CaixunList.vue
@@ -2,13 +2,15 @@
- · {{ item.title }}
+ {{ item.title }}
+
+
+
{{ item.publicDate }}
中国证券报
-
{{ item.publicDate }}
@@ -51,7 +53,7 @@ onMounted(() => {
.item {
display: flex;
flex-direction: column;
- gap: 10px;
+ gap: 12px;
width: 100%;
border-bottom: 1px solid #f6f6f6;
padding: 20px 5px;
@@ -77,6 +79,12 @@ onMounted(() => {
color: var(--Buttons-ningbo);
}
+ .time-source{
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
.time {
font-family: PingFangSC, PingFang SC;
font-weight: normal;
@@ -85,7 +93,7 @@ onMounted(() => {
line-height: 20px;
text-align: left;
font-style: normal;
- margin-top: 10px;
+ // margin-top: 10px;
}
.source {
diff --git a/src/views/pages/caixun/index.vue b/src/views/pages/caixun/index.vue
index d5e8faa..ebff263 100644
--- a/src/views/pages/caixun/index.vue
+++ b/src/views/pages/caixun/index.vue
@@ -12,13 +12,12 @@
{{ info.company_name }}
- 证券代码:{{ info.code }} |
- 行业分类:{{ info.cate }}
+ {{ info.code }}
+ {{ info.cate }}
-
+
@@ -210,7 +210,7 @@ import ListStatus from '/@/components/TypoDetection/ListStatus.vue';
const route = useRoute();
const router = useRouter();
-const userType = ref(Session.get('userData').userType);
+const userType = ref(Session.get('userData')?.userType || 0);
const reportType: string[] = ['年报', '半年报', '一季报', '三季报', '', '日常公告'];
const uploadDialog = ref(null);
const queryFrom = ref({});
@@ -235,7 +235,7 @@ function showUploadDialog() {
}
function goDetail(item) {
- router.push({
+ const routeData = router.push({
path: '/detail',
query: {
id: item.id,
@@ -245,6 +245,7 @@ function goDetail(item) {
fileName: item.fileName,
},
});
+ // window.open(routeData.href, '_blank');
}
// 检校
@@ -391,7 +392,7 @@ const unloadHandler = (e) => {
Session.remove('indexPage');
Session.remove('indexFilter');
};
-import Cookies from 'js-cookie';
+
// 页面加载时
onMounted(() => {
NextLoading.done();
@@ -470,7 +471,7 @@ onUnmounted(() => {
diff --git a/src/views/pages/index/index.vue b/src/views/pages/index/index.vue
index 36ea266..e8e0654 100644
--- a/src/views/pages/index/index.vue
+++ b/src/views/pages/index/index.vue
@@ -16,7 +16,7 @@ const com: any = {
// 获取账号类型
const roleName = computed(() => {
- return Session.get('roleName') === 'common' || Session.get('roleName') === 'subCommon' ? 'common' : 'admin';
+ return 'common'//Session.get('roleName') === 'common' || Session.get('roleName') === 'subCommon' ? 'common' : 'admin';
});
onMounted(() => {