diff --git a/src/api/comm/index.js b/src/api/comm/index.js
index 9208f93..03dc346 100644
--- a/src/api/comm/index.js
+++ b/src/api/comm/index.js
@@ -1,7 +1,7 @@
/*
* @Author: your name
* @Date: 2021-10-20 16:36:08
- * @LastEditTime: 2021-10-27 09:01:56
+ * @LastEditTime: 2021-10-27 15:41:11
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: /data-show/src/api/comm/index.js
@@ -65,3 +65,14 @@ export function getUserBrand(params) {
params: obj
})
}
+
+// 获取导出字段
+export function getToExcelField(params) {
+ let obj = Object.assign({action: 'getToExcelField'}, params)
+ return httpService({
+ url: `/api/v6.ashx`,
+ method: 'get',
+ params: obj
+ })
+}
+
diff --git a/src/api/home/index.js b/src/api/home/index.js
index b5b5b67..96b45fb 100644
--- a/src/api/home/index.js
+++ b/src/api/home/index.js
@@ -1,7 +1,7 @@
/*
* @Author: your name
* @Date: 2021-10-20 16:17:39
- * @LastEditTime: 2021-10-23 17:18:24
+ * @LastEditTime: 2021-10-27 13:33:16
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: /data-show/src/api/home/index.js
@@ -150,11 +150,10 @@ export function getHomeList0528(params) {
// 首页_行业数据
export function getListHome(params) {
- let obj = Object.assign({action: 'getListHome',sType: 'Home'}, params)
return httpService({
url: `/api/v6.ashx`,
method: 'post',
- data: obj,
+ data: params,
headers: {
'content-type': 'application/x-www-form-urlencoded'
}
diff --git a/src/assets/images/comm/img_bbut.png b/src/assets/images/comm/img_bbut.png
new file mode 100644
index 0000000..cd238f3
Binary files /dev/null and b/src/assets/images/comm/img_bbut.png differ
diff --git a/src/styles/antd.less b/src/styles/antd.less
index b2ca3c0..8e6fbb6 100644
--- a/src/styles/antd.less
+++ b/src/styles/antd.less
@@ -202,4 +202,8 @@
color: #41D4FF !important;
}
+.ant-table-tbody > tr.ant-table-row-selected td {
+ background: #2668c2 !important;
+}
+
diff --git a/src/views/BrandInsight/titsopo/index.vue b/src/views/BrandInsight/titsopo/index.vue
index 05c28a5..0db396f 100644
--- a/src/views/BrandInsight/titsopo/index.vue
+++ b/src/views/BrandInsight/titsopo/index.vue
@@ -1,7 +1,7 @@
-
+ 共计{{totalNum}}条数据
+ 共计{{totalNum}}条数据,已选中{{secIds.length}}条数据
+ 导出数据
-
+
+
+ {{ text }}
+ 正面
+ 中性
+ 负面
+ 低级危机
+ 中级危机
+ 高级危机
+
+
-
+
+
@@ -410,4 +201,20 @@ export default {
}
}
}
+.epor {
+ width: 100%;
+ height: 80px;
+ .epor-btn {
+ width: 480px;
+ height: 80px;
+ background-image: url("../../assets/images/comm/img_bbut.png");
+ background-repeat: no-repeat;
+ background-size: cover;
+ text-align: center;
+ line-height: 80px;
+ color: #63AECC;
+ font-size: 28px;
+ cursor: pointer;
+ }
+}
\ No newline at end of file
diff --git a/src/views/IndustryDataExport/tableEvent.js b/src/views/IndustryDataExport/tableEvent.js
new file mode 100644
index 0000000..0a6bef3
--- /dev/null
+++ b/src/views/IndustryDataExport/tableEvent.js
@@ -0,0 +1,163 @@
+/*
+ * @Author: your name
+ * @Date: 2021-10-27 15:29:37
+ * @LastEditTime: 2021-10-27 16:53:08
+ * @LastEditors: Please set LastEditors
+ * @Description: In User Settings Edit
+ * @FilePath: /data-show/src/views/IndustryDataExport/tableEvent.js
+ */
+function rowSelection(that) {
+ return {
+ onChange: (selectedRowKeys, selectedRows) => {
+ // console.log(`selectedRowKeys: ${selectedRowKeys}`, 'selectedRows: ', selectedRows);
+ that.selectedRowKeys = selectedRowKeys.toString();
+ that.selectedRows = selectedRows;
+ that.secIds = selectedRowKeys;
+
+ },
+ // onSelect: (record, selected, selectedRows) => {
+ // console.log(record, selected, selectedRows);
+ // },
+ // onSelectAll: (selected, selectedRows, changeRows) => {
+ // console.log(selected, selectedRows, changeRows);
+ // },
+ }
+}
+
+export default {
+ // 初始化页面
+ initDoc() {
+ Promise.all([
+ this.getQuDao(),
+ this.getQingGan(),
+ this.getCrisis(),
+ this.getTime(),
+ ]).then(() => {
+ let series = this.$route.query.series || [];
+ let qudao = this.$route.query.qudao || [];
+
+ this.form.token = this.$route.query.token || "";
+ this.form.action = this.$route.query.action || "";
+ this.form.sType = this.$route.query.sType || "";
+ this.form.sBrand = this.$route.query.brand || "";
+ this.form.sSeriesName = this.$route.query.seriesName || "";
+
+ this.doFormQudao(qudao);
+
+ this.plainOptions3 = this.doQingGanAndCrisis();
+ this.qingGan = series;
+ this.doFormQS(series);
+
+ this.form.sTimeType = this.$route.query.sTimeType || 34;
+ this.gValue = 0;
+ this.form.sStartTime = this.$route.query.startTime || "";
+ this.form.sEndTime = this.$route.query.endTime || "";
+ if (this.form.sStartTime && this.form.sEndTime) {
+ this.selTime = [this.form.sStartTime, this.form.sEndTime];
+ }
+ if (this.form.sTimeType === 4) {
+ this.gValue = 4;
+ }
+ if (this.form.token) {
+ this.rowSelection = rowSelection(this);
+ }
+ this.getList();
+ this.getTable();
+ });
+ },
+ // 选择情感和渠道的情况
+ onChange(val, type) {
+ this.noClick = true;
+ if (type === "quDao") {
+ this.form.sQuDao = this.quDao.toString();
+ } else if (type === "qingGan") {
+ this.doFormQS(this.qingGan);
+ }
+ this.form.iPageIndex = 1;
+ this.pagination.current = 1;
+ Promise.all([this.getList(), this.getTable()]).then(() => {
+ this.noClick = false;
+ });
+ },
+ // 导出弹框
+ handlerExport() {
+ this.getToExcelField(this.form.sType, this.form.token).then(() => {
+ this.modalObj.visible = true;
+ })
+ },
+ // 给后台传渠道
+ doFormQudao(val = []) {
+ let arr = [];
+ val.forEach((ele) => {
+ let n = this.plainOptions.findIndex((e) => {
+ return e.label === ele;
+ });
+ if (n != -1) {
+ arr.push(this.plainOptions[n].value);
+ }
+ });
+ this.quDao = arr;
+ this.form.sQuDao = arr.toString();
+ },
+ // 给后台传情感和负面等级
+ doFormQS(val = []) {
+ let qingGan = [];
+ let crisis = [];
+ val.forEach((ele) => {
+ let n1 = this.plainOptions1.findIndex((e) => {
+ return e.label === ele;
+ });
+ let n2 = this.plainOptions2.findIndex((e) => {
+ return e.label === ele;
+ });
+ if (n1 != -1) {
+ qingGan.push(this.plainOptions1[n1].value);
+ }
+ if (n2 != -1) {
+ crisis.push(this.plainOptions2[n2].value);
+ }
+ });
+ this.form.sQingGan = qingGan.toString();
+ this.form.sCrisis = crisis.toString();
+ },
+ // 处理情感和负面等级
+ doQingGanAndCrisis() {
+ let arr = [];
+ let tes = [...this.plainOptions1, ...this.plainOptions2];
+ tes.forEach((ele) => {
+ let obj = {
+ label: ele.label,
+ value: ele.label,
+ };
+ arr.push(obj);
+ });
+ return arr;
+ },
+ // 返回
+ handlerBack() {
+ this.$router.go(-1);
+ },
+ // 改变时间的选项
+ handlerTime(n) {
+ let ele = this.timesSel[n];
+ this.form.sTimeType = ele.key;
+ if (ele.key != this.selVal) {
+ this.getTable();
+ this.getList();
+ }
+ },
+ // 选择时间的效果
+ handlerChangeTime(val) {
+ this.form.sStartTime = val[0];
+ this.form.sEndTime = val[1];
+ this.getTable();
+ this.getList();
+ },
+ // 改变页面的数据
+ handlerPage(p) {
+ let iPageIndex = p.current;
+ this.form.iPageIndex = iPageIndex;
+ this.pagination.current = iPageIndex;
+ this.getTable();
+ },
+}