From 210e410a2655ababddc8e94023c9cd1e3147070d Mon Sep 17 00:00:00 2001 From: wanglei <1336977847@qq.com> Date: Tue, 25 Jun 2024 15:43:43 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E9=97=A8=E5=BA=97=E8=AF=84=E4=BB=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AppArchives/components/List.vue | 6 +- .../AppMarkRate/components/Detail.vue | 36 +++++ .../AppMarkRate/components/List.vue | 135 +++++------------- 3 files changed, 77 insertions(+), 100 deletions(-) diff --git a/project/fengdu/AppOutSource/AppArchives/components/List.vue b/project/fengdu/AppOutSource/AppArchives/components/List.vue index e6875ba4..56986aa8 100644 --- a/project/fengdu/AppOutSource/AppArchives/components/List.vue +++ b/project/fengdu/AppOutSource/AppArchives/components/List.vue @@ -23,7 +23,7 @@ v.id) }, handleAdd() { diff --git a/project/fengdu/AppOutSource/AppMarkRate/components/Detail.vue b/project/fengdu/AppOutSource/AppMarkRate/components/Detail.vue index 98b9bd0d..1dcd5ca2 100644 --- a/project/fengdu/AppOutSource/AppMarkRate/components/Detail.vue +++ b/project/fengdu/AppOutSource/AppMarkRate/components/Detail.vue @@ -76,7 +76,43 @@ export default { ] } }, + + created() { + this.getDetail() + this.getScoredetail() + }, + methods: { + async getScoredetail(){ + try { + const {code,data} = await this.instance.post('/app/appscoredetails/queryDetailById',null,{ + params:{ + id:this.params.id + } + }) + if(code===0){ + console.log('data',data) + } + }catch (e) { + console.error(e) + } + }, + + async getDetail(){ + try { + const {code,data} = await this.instance.post('/app/appshopassess/queryDetailById',null,{ + params:{ + id:this.params.id + } + }) + if(code===0){ + this.info = data + } + }catch (e) { + console.error(e) + } + }, + cancel() { this.$emit('change', { type: 'List', diff --git a/project/fengdu/AppOutSource/AppMarkRate/components/List.vue b/project/fengdu/AppOutSource/AppMarkRate/components/List.vue index 15f75f1e..4fb0c205 100644 --- a/project/fengdu/AppOutSource/AppMarkRate/components/List.vue +++ b/project/fengdu/AppOutSource/AppMarkRate/components/List.vue @@ -8,20 +8,14 @@