Compare commits
	
		
			2 Commits
		
	
	
		
			08beff4e68
			...
			6188a58194
		
	
	| Author | SHA1 | Date | 
|---|---|---|
| 
							
							
								 | 
						6188a58194 | |
| 
							
							
								 | 
						43f703de33 | 
| 
						 | 
				
			
			@ -20,24 +20,29 @@
 | 
			
		|||
          bonusData.settleDate || formatDate
 | 
			
		||||
        }}</text>
 | 
			
		||||
      </view>
 | 
			
		||||
      <view v-for="(label, key) in detailLabels" :key="key" class="detail-item">
 | 
			
		||||
        <template
 | 
			
		||||
          v-if="key === 'repurRangeIncome' && bonusData.repurRangeIncome"
 | 
			
		||||
        >
 | 
			
		||||
      <template v-for="(label, key) in detailLabels">
 | 
			
		||||
        <view v-if="key === 'repurRangeIncome'">
 | 
			
		||||
          <view
 | 
			
		||||
            v-if="bonusData.repurRangeIncome"
 | 
			
		||||
            class="detail-item"
 | 
			
		||||
            :key="key"
 | 
			
		||||
          >
 | 
			
		||||
            <text class="detail-label">{{ label }}</text>
 | 
			
		||||
            <text class="detail-value">
 | 
			
		||||
              <text class="currency-symbol-small">¥</text>
 | 
			
		||||
              {{ bonusData[key] || '0.00' }}
 | 
			
		||||
            </text>
 | 
			
		||||
          </view>
 | 
			
		||||
        </view>
 | 
			
		||||
        <view v-else class="detail-item" :key="key">
 | 
			
		||||
          <text class="detail-label">{{ label }}</text>
 | 
			
		||||
          <text class="detail-value">
 | 
			
		||||
            <text class="currency-symbol-small">¥</text>
 | 
			
		||||
            {{ bonusData[key] || '0.00' }}
 | 
			
		||||
          </text>
 | 
			
		||||
        </template>
 | 
			
		||||
        <template v-else>
 | 
			
		||||
          <text class="detail-label">{{ label }}</text>
 | 
			
		||||
          <text class="detail-value">
 | 
			
		||||
            <text class="currency-symbol-small">¥</text>
 | 
			
		||||
            {{ bonusData[key] || '0.00' }}
 | 
			
		||||
          </text>
 | 
			
		||||
        </template>
 | 
			
		||||
      </view>
 | 
			
		||||
        </view>
 | 
			
		||||
      </template>
 | 
			
		||||
 | 
			
		||||
      <!-- 分割线 -->
 | 
			
		||||
      <view class="divider"></view>
 | 
			
		||||
      <!-- 小计 -->
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -389,10 +389,10 @@ export default {
 | 
			
		|||
          hierarchy: 0,
 | 
			
		||||
        })
 | 
			
		||||
        .then(res => {
 | 
			
		||||
          res.data.unshift({
 | 
			
		||||
            classifyName: '全部',
 | 
			
		||||
            pkId: '',
 | 
			
		||||
          })
 | 
			
		||||
          // res.data.unshift({
 | 
			
		||||
          //   classifyName: '全部',
 | 
			
		||||
          //   pkId: '',
 | 
			
		||||
          // })
 | 
			
		||||
          this.oneList = res.data
 | 
			
		||||
          this.oneId = this.oneList[0] ? this.oneList[0].pkId : ''
 | 
			
		||||
          this.getClassIfyTwo(this.oneList[0].pkId)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue