From f3b634f6c0eff4545ae4bde5a276a48669ae7e58 Mon Sep 17 00:00:00 2001 From: xiaweibo1 <9245255+xiaweibo1@user.noreply.gitee.com> Date: Tue, 9 Nov 2021 19:06:55 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BF=90=E8=90=A5=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/index.js | 97 +++++- .../common/dialog/DataReview/IDCard.vue | 8 +- .../dialog/DataReview/operatorIDCard.vue | 8 +- .../page/AccountManagement/platformSelect.vue | 10 +- .../announcementConfiguration.vue | 81 +++-- .../OperationManagement/assetsConfigure.vue | 229 +++++--------- .../OperationManagement/bannerConfigure.vue | 127 ++++++-- .../OperationManagement/customerOpinion.vue | 128 ++++---- .../OperationManagement/feedConfigure.vue | 280 ++++++++---------- 9 files changed, 513 insertions(+), 455 deletions(-) diff --git a/src/api/index.js b/src/api/index.js index 897661a..381cb6b 100644 --- a/src/api/index.js +++ b/src/api/index.js @@ -284,6 +284,94 @@ export const getNoticeList = query => { params: query }); }; +//获取单个通知公告 +export const getNoticeFind = query => { + return request({ + url: 'api/admin.Operation/getNoticeFind', + method: 'get', + params: query + }); +}; +//设置通知公告配置 +export const setNotice = query => { + return request({ + url: 'api/admin.Operation/setNotice', + method: 'post', + data: query + }); +}; +//修改通知公告配置 +export const updateNotice = query => { + return request({ + url: 'api/admin.Operation/updateNotice', + method: 'post', + data: query + }); +}; +//删除通知公告 +export const deleteNotice = query => { + return request({ + url: 'api/admin.Operation/deleteNotice', + method: 'post', + data: query + }); +}; + +/* 运营管理 --banner配置*/ +//获取banner配置 +export const getBanner = query => { + return request({ + url: 'api/admin.Operation/getBanner', + method: 'get', + params: query + }); +}; +//banner配置 +export const setBanner = query => { + return request({ + url: 'api/admin.Operation/setBanner', + method: 'post', + data: query + }); +}; + +/* 运营管理 --feed配置*/ +//获取feed配置 +export const getFeed = query => { + return request({ + url: 'api/admin.Operation/getFeed', + method: 'get', + params: query + }); +}; +//feed配置 +export const setFeed = query => { + return request({ + url: 'api/admin.Operation/setFeed', + method: 'post', + data: query + }); +}; + +/* 运营管理 --资产推荐配置*/ +//获取资产推荐配置 +export const getRecommend = query => { + return request({ + url: 'api/admin.Operation/getRecommend', + method: 'get', + params: query + }); +}; + +/* 运营管理 --客户意见处理*/ +//客户意见列表 +export const opinionList = query => { + return request({ + url: 'api/admin.Operation/opinionList', + method: 'get', + params: query + }); +}; /* 平台管理 */ @@ -299,14 +387,7 @@ export const getAdminlist = query => { params: query }); }; -//设置通知公告配置 -export const setNotice = query => { - return request({ - url: 'api/admin.Operation/setNotice', - method: 'post', - data: query - }); -}; + /* 平台管理 --运营账号管理--运营角色*/ //部门名称列表 diff --git a/src/components/common/dialog/DataReview/IDCard.vue b/src/components/common/dialog/DataReview/IDCard.vue index 4b2dba9..415c009 100644 --- a/src/components/common/dialog/DataReview/IDCard.vue +++ b/src/components/common/dialog/DataReview/IDCard.vue @@ -2,9 +2,9 @@

{{contentDatas.account_type==1?'法人身份证正面(照片面)' :'身份证正面(照片面)'}}

- +
- 查看原图 + 查看原图

{{contentDatas.account_type==1?'法人身份证反面(发证机构面)' :'身份证反面(发证机构面)'}}

- +
- 查看原图 + 查看原图 重新上传
diff --git a/src/components/common/dialog/DataReview/operatorIDCard.vue b/src/components/common/dialog/DataReview/operatorIDCard.vue index b5a2a14..4cf670d 100644 --- a/src/components/common/dialog/DataReview/operatorIDCard.vue +++ b/src/components/common/dialog/DataReview/operatorIDCard.vue @@ -2,9 +2,9 @@

经办人身份证正面(照片面)

- +
- 查看原图 + 查看原图

经办人身份证反面(发证机构面)

- +
- 查看原图 + 查看原图 重新上传
diff --git a/src/components/page/AccountManagement/platformSelect.vue b/src/components/page/AccountManagement/platformSelect.vue index 2ef630a..c8e995d 100644 --- a/src/components/page/AccountManagement/platformSelect.vue +++ b/src/components/page/AccountManagement/platformSelect.vue @@ -132,7 +132,7 @@ + :dialogType="dialogType" @MisShow="MisShow" :isexamine="false" :account_type="account_type" :listDate="listDate">
@@ -165,6 +165,7 @@ export default { enter_shop_type:0, third_party_type:0 }, + account_type:'buyer', dialogID:'', dialogType:'', tableData: [], @@ -295,6 +296,13 @@ export default { this.editVisible = true; this.dialogID=row.id; this.dialogType=1 + if (row.buyer_data==1) { + this.account_type='buyer' + }else if (row.enter_shop_data==1) { + this.account_type='enter_shop' + }else if (row.third_party_data==1) { + this.account_type='third_party' + } this.listDate=row }, // 分页导航 diff --git a/src/components/page/OperationManagement/announcementConfiguration.vue b/src/components/page/OperationManagement/announcementConfiguration.vue index 244cddf..6e472b3 100644 --- a/src/components/page/OperationManagement/announcementConfiguration.vue +++ b/src/components/page/OperationManagement/announcementConfiguration.vue @@ -18,13 +18,13 @@ type="datetimerange" :picker-options="pickerOptions" range-separator="至" - value-format="yyyy-MM-dd h:m:s" + value-format="yyyy-MM-dd HH:mm:ss" start-placeholder="开始日期" end-placeholder="结束日期" align="right" > - 搜索 + 搜索 新增通知公告
- - - + + + @@ -64,7 +64,7 @@
- + @@ -82,7 +82,8 @@ diff --git a/src/components/page/OperationManagement/bannerConfigure.vue b/src/components/page/OperationManagement/bannerConfigure.vue index 4f16979..d2b85fe 100644 --- a/src/components/page/OperationManagement/bannerConfigure.vue +++ b/src/components/page/OperationManagement/bannerConfigure.vue @@ -21,49 +21,43 @@
- - - - + + + + 搜索 @@ -37,7 +37,6 @@ class="table" ref="multipleTable" header-cell-class-name="table-header" - @selection-change="handleSelectionChange" > @@ -66,8 +65,8 @@ @@ -93,55 +92,56 @@