Quellcode durchsuchen

修改挖掘执行率颜色值问题

newyun
corala vor 1 Jahr
Ursprung
Commit
1a71c9b959
4 geänderte Dateien mit 33 neuen und 26 gelöschten Zeilen
  1. +1
    -1
      manifest.json
  2. +11
    -11
      pages/center/consumer/consumerDetail.vue
  3. +11
    -4
      pages/learning/Keywordsearch.vue
  4. +10
    -10
      pages/mine/details2.vue

+ 1
- 1
manifest.json Datei anzeigen

@@ -1,5 +1,5 @@
{
"name" : "去房智控管家",
"name" : "数智工牌",
"appid" : "__UNI__7A1611D",
"description" : "去房智控管家",
"versionName" : "1.1.0",


+ 11
- 11
pages/center/consumer/consumerDetail.vue Datei anzeigen

@@ -321,14 +321,14 @@
<view v-if="item.modelList.length==0">暂无话术</view>
<view class="Level3che" v-for="(che,inc) in item.modelList" :key='inc'>
<view class="title1"
:style="che.selected==2?'color:#FF8C13':che.selected==1?'color: #666':''">
{{inc+1}}.{{che.showFormatExpression || che.keywordsName}}
:style="che.isAskQuestions==2?'color:#FF8C13':che.isAskQuestions==0?'':'color: #666'">
{{inc+1}}.{{che.showFormatExpression}}
</view>
<view class="jiantobox">
<!-- 0本次选中 1未选中 2上次选中 -->
<image v-if="che.selected==0" class="arrow"
<image v-if="che.isAskQuestions==0" class="arrow"
src="/static/images/rate-checked.png" mode="" />
<image v-else-if="che.selected==2" class="arrow"
<image v-else-if="che.isAskQuestions==2" class="arrow"
src="/static/images/checked-yellow.png" mode="" />
<image v-else class="arrow" src="/static/images/rate-nocheck.png" mode="" />
</view>
@@ -384,25 +384,25 @@
<view
class="title1"
:style="
che.selected == 2
che.isAskQuestions == 2
? 'color:#FF8C13'
: che.selected == 1
? 'color: #666'
: ''
: che.isAskQuestions == 0
? ''
: 'color: #666'
"
>{{ inc + 1 }}.{{
che.showFormatExpression || che.keywordsName
che.showFormatExpression
}}</view
>
<view class="jiantobox">
<image
v-if="che.selected == 0"
v-if="che.isAskQuestions == 0"
class="arrow"
src="/static/images/rate-checked.png"
mode=""
/>
<image
v-else-if="che.selected == 2"
v-else-if="che.isAskQuestions == 2"
class="arrow"
src="/static/images/checked-yellow.png"
mode=""


+ 11
- 4
pages/learning/Keywordsearch.vue Datei anzeigen

@@ -1,7 +1,6 @@
<template>
<view class="translation">
<view style="width: 690rpx;height: 64rpx;margin: 0 auto;margin-top: 30rpx;background: #F2F2F2;border-radius: 32rpx;
display: flex;align-items: center;">
<view class="box">
<view style="width: 10%;height: 64rpx;display: flex;align-items: center;">
<image style="width: 28rpx;height: 28rpx;margin-left: 30rpx;" src="/static/images/search.png" mode=""></image>
</view>
@@ -11,7 +10,6 @@
</view>
</view>
<view style="width: 690rpx;margin: 0 auto;margin-top: 10rpx;">
<view style="width: 100%;border-bottom: 1px solid #E0E0E0;display: flex;padding-bottom: 10rpx;margin-top: 40rpx;"
v-for="(item,index) in listarr" :key='index' @click="toaidoinfo(item.Content,item.corpusId,item.index)">
<view style="width: 26rpx;height: 36rpx;margin-top: 4rpx;">
@@ -142,5 +140,14 @@
}
</script>
<style lang="scss" scoped>

.box{
width: 690rpx;
height: 64rpx;
margin: 0 auto;
margin-top: 30rpx;
background: #F2F2F2;
border-radius: 32rpx;
display: flex;
align-items: center;
}
</style>

+ 10
- 10
pages/mine/details2.vue Datei anzeigen

@@ -360,14 +360,14 @@
<view v-if="item.modelList.length==0">暂无话术</view>
<view class="Level3che" @click="clickWajue(che)" v-for="(che,inc) in item.modelList" :key='inc'>
<view class="title1"
:style="che.selected==2?'color:#FF8C13':che.selected==1?'color: #666':''">
{{inc+1}}.{{che.showFormatExpression || che.keywordsName}}
:style="che.isAskQuestions==2?'color:#FF8C13':che.isAskQuestions==0?'':'color: #666'">
{{inc+1}}.{{che.showFormatExpression}}
</view>
<view class="jiantobox">
<!-- 0本次选中 1未选中 2上次选中 -->
<image v-if="che.selected==0" class="arrow"
<image v-if="che.isAskQuestions==0" class="arrow"
src="/static/images/rate-checked.png" mode="" />
<image v-else-if="che.selected==2" class="arrow"
<image v-else-if="che.isAskQuestions==2" class="arrow"
src="/static/images/checked-yellow.png" mode="" />
<image v-else class="arrow" src="/static/images/rate-nocheck.png" mode="" />
</view>
@@ -400,14 +400,14 @@
<view class="Level3che" @click="clickWajue(che)"
v-for="(che,inc) in subitem.modelList" :key='inc'>
<view class="title1"
:style="che.selected==2?'color:#FF8C13':che.selected==1?'color: #666':''">
{{inc+1}}.{{che.showFormatExpression || che.keywordsName}}
:style="che.isAskQuestions==2?'color:#FF8C13':che.isAskQuestions==0?'':'color: #666'">
{{inc+1}}.{{che.showFormatExpression}}
</view>
<view class="jiantobox">
<!-- 0本次选中 1未选中 2上次选中 -->
<image v-if="che.selected==0" class="arrow"
<image v-if="che.isAskQuestions==0" class="arrow"
src="/static/images/rate-checked.png" mode="" />
<image v-else-if="che.selected==2" class="arrow"
<image v-else-if="che.isAskQuestions==2" class="arrow"
src="/static/images/checked-yellow.png" mode="" />
<image v-else class="arrow" src="/static/images/rate-nocheck.png" mode="" />
</view>
@@ -798,10 +798,10 @@
},
// 点击话术
clickWajue(item){
if(item.selected==0){
if(item.isAskQuestions==0){
this.Pinspeak = false
uni.navigateTo({
url: '/pages/learning/Keywordsearch?customerId=' + this.customerId + "&keyword=" + item.showFormatExpression||item.keywordsName +
url: '/pages/learning/Keywordsearch?customerId=' + this.customerId + "&keyword=" + item.showFormatExpression +
"&skpl=" + "2" + '&UpDateEvent=DETAILS2INIT'
})
}


Laden…
Abbrechen
Speichern