|
|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<div class="upload_Link">
|
|
|
- <!-- <span><b>经销商</b></span> -->
|
|
|
+ <!-- <span><b>经销商</b></span> -->
|
|
|
<span>针对论坛及其他平台链接上传</span>
|
|
|
<div class="contentHead">
|
|
|
<span>上传平台</span>
|
|
|
@@ -197,7 +197,7 @@ export default {
|
|
|
{
|
|
|
releaseTime: "2021/03/04",
|
|
|
dataName: "雷克萨斯ES上市",
|
|
|
- carSeries: "雷克萨斯ES",
|
|
|
+ carSeries: "雷克萨斯ESqq",
|
|
|
carType: "ES雷克萨斯",
|
|
|
releaseMedia: "S雷克萨斯",
|
|
|
// releasePlate: " ",
|
|
|
@@ -348,6 +348,29 @@ export default {
|
|
|
}
|
|
|
console.log(this.currentPage);
|
|
|
},
|
|
|
+ //获取资料列表
|
|
|
+ getDataList: function () {
|
|
|
+ this.$http({
|
|
|
+ //url: "/dealerFeedback",selectMediaAccountPage
|
|
|
+ url: "/firmsLinkUpload",
|
|
|
+ method: "post",
|
|
|
+ data: {},
|
|
|
+ })
|
|
|
+ .then((res) => {
|
|
|
+ console.log("uploadLink res:",res);
|
|
|
+ if (res.data.code === 200) {
|
|
|
+ this.tableData = res.data.data;
|
|
|
+ console.log("uploadLink tableData:",this.tableData);
|
|
|
+ }
|
|
|
+
|
|
|
+ })
|
|
|
+ .catch((err) => {
|
|
|
+ console.log(err);
|
|
|
+ });
|
|
|
+ },
|
|
|
+ },
|
|
|
+ mounted() {
|
|
|
+ this.getDataList();
|
|
|
},
|
|
|
};
|
|
|
</script>
|
|
|
@@ -420,9 +443,12 @@ export default {
|
|
|
align-items: center;
|
|
|
}
|
|
|
.tableHeadStyle2 td {
|
|
|
- width: 60px;
|
|
|
+ width: 100px;
|
|
|
padding: 7px 5px;
|
|
|
}
|
|
|
+.tableHeadStyle2 td:nth-child(1) {
|
|
|
+ width: 60px;
|
|
|
+}
|
|
|
.tableHeadStyle2 td:nth-child(10) {
|
|
|
width: 100px;
|
|
|
padding: 7px 5px;
|
|
|
@@ -459,7 +485,7 @@ export default {
|
|
|
display: flex;
|
|
|
justify-content: space-around;
|
|
|
}
|
|
|
-.xiahuaxian{
|
|
|
+.xiahuaxian {
|
|
|
text-decoration: underline;
|
|
|
}
|
|
|
.operationStyle span {
|