|
|
@@ -8,17 +8,17 @@
|
|
|
<t-table :headerBackgroundColor="'#F0F2F6'">
|
|
|
<t-tr header>
|
|
|
<t-th><view style="width:180upx;">名称</view></t-th>
|
|
|
- <t-th>收入</t-th>
|
|
|
- <t-th>余额</t-th>
|
|
|
+ <t-th>今天收入</t-th>
|
|
|
+ <t-th>可提现</t-th>
|
|
|
<t-th>花店数</t-th>
|
|
|
<t-th>操作</t-th>
|
|
|
</t-tr>
|
|
|
- <t-tr v-for="(item, inIndex) in shopData.list" :key="inIndex" @click="changeShop(item.id)">
|
|
|
+ <t-tr v-for="(item, inIndex) in shopData.list" :key="inIndex">
|
|
|
<t-td><view style="width:180upx;">{{item.merchantName}}<br />{{item.shopName}}</view></t-td>
|
|
|
<t-td><view>{{item.todaySale}}</view></t-td>
|
|
|
<t-td><view>{{item.balance}}</view></t-td>
|
|
|
<t-td><view>{{item.shopNum}}</view></t-td>
|
|
|
- <t-td><view></view></t-td>
|
|
|
+ <t-td><button class="admin-button-com mini-btn blue" style="margin-left:30upx;" @click="changeShop(item.id)">选择</button></t-td>
|
|
|
</t-tr>
|
|
|
<t-tr>
|
|
|
<t-td><view style="width:180upx;font-weight:bold;color:black;">合计</view></t-td>
|