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 @@