|
@@ -418,29 +418,29 @@
|
|
|
<td colspan="2" class="JR_right">{{ item.standard }}</td>
|
|
|
<td colspan="2" class="JR_right">{{ item.money }}</td>
|
|
|
|
|
|
- <td colspan="2" v-show="isWho" class="JR_right">
|
|
|
+ <td colspan="2" v-if="isWho" class="JR_right">
|
|
|
{{ reset[i].peopleName }}
|
|
|
</td>
|
|
|
- <td colspan="2" v-show="isWho" class="JR_right">
|
|
|
+ <td colspan="2" v-if="isWho" class="JR_right">
|
|
|
{{ reset[i].sky }}
|
|
|
</td>
|
|
|
- <td colspan="2" v-show="isWho" class="JR_right">
|
|
|
+ <td colspan="2" v-if="isWho" class="JR_right">
|
|
|
{{ reset[i].standard }}
|
|
|
</td>
|
|
|
- <td colspan="2" v-show="isWho" class="JR_right">
|
|
|
+ <td colspan="2" v-if="isWho" class="JR_right">
|
|
|
{{ reset[i].money }}
|
|
|
</td>
|
|
|
|
|
|
- <td colspan="2" v-show="!isWho" class="JR_right">
|
|
|
+ <td colspan="2" v-if="!isWho" class="JR_right">
|
|
|
{{ by[i].peopleName }}
|
|
|
</td>
|
|
|
- <td colspan="2" v-show="!isWho" class="JR_right">
|
|
|
+ <td colspan="2" v-if="!isWho" class="JR_right">
|
|
|
{{ by[i].sky }}
|
|
|
</td>
|
|
|
- <td colspan="2" v-show="!isWho" class="JR_right">
|
|
|
+ <td colspan="2" v-if="!isWho" class="JR_right">
|
|
|
{{ by[i].standard }}
|
|
|
</td>
|
|
|
- <td colspan="2" v-show="!isWho" class="JR_right">
|
|
|
+ <td colspan="2" v-if="!isWho" class="JR_right">
|
|
|
{{ by[i].money }}
|
|
|
</td>
|
|
|
</tr>
|
|
@@ -500,8 +500,8 @@
|
|
|
|
|
|
<tr
|
|
|
class="JR_tr"
|
|
|
- v-for="(item, i) in message.bdglFoodShoppings"
|
|
|
- :key="i"
|
|
|
+ v-for="(item) in message.bdglFoodShoppings"
|
|
|
+ :key="item.id"
|
|
|
height="50"
|
|
|
>
|
|
|
<td width="" colspan="2" class="JR_right">
|
|
@@ -694,6 +694,9 @@ export default {
|
|
|
this.reset.push(this.message.bdglFoodBoardWagess[item]);
|
|
|
}
|
|
|
}
|
|
|
+ console.log(this.by,111);
|
|
|
+ console.log(this.reset,222);
|
|
|
+
|
|
|
if (this.by.length > this.by_reset || this.reset.length > this.by_reset) {
|
|
|
console.log(this.by.length);
|
|
|
if (this.by.length >= this.reset.length) {
|