|
@@ -175,18 +175,15 @@
|
|
|
@click="handleDel(record)"
|
|
|
>删除</a-button>
|
|
|
</template>
|
|
|
- <template slot="footer">
|
|
|
- <!-- 总计 -->
|
|
|
- <a-alert type="info" v-if="showTotal" banner :showIcon="false">
|
|
|
- <div slot="message" style="text-align: right;">
|
|
|
- 款数:<strong>{{ countData&&(countData.totalCategory || countData.totalCategory==0) ? countData.totalCategory : 0 }}</strong>;
|
|
|
- 数量:<strong>{{ countData&&(countData.totalQty || countData.totalQty==0) ? countData.totalQty : 0 }}</strong>;
|
|
|
- <span v-if="$hasPermissions('B_salesEdit_salesPrice')">总金额:<strong>{{ countData&&(countData.totalAmount || countData.totalAmount==0) ? toThousands(countData.totalAmount) : '0.00' }}</strong>;</span>
|
|
|
- </div>
|
|
|
- </a-alert>
|
|
|
- </template>
|
|
|
</s-table>
|
|
|
-
|
|
|
+ <!-- 总计 -->
|
|
|
+ <a-alert type="info" v-if="showTotal" banner :showIcon="false" style="width: auto;display: inline-block;bottom: 10px;position: absolute;">
|
|
|
+ <div slot="message">
|
|
|
+ 款数:<strong>{{ countData&&(countData.totalCategory || countData.totalCategory==0) ? countData.totalCategory : 0 }}</strong>;
|
|
|
+ 数量:<strong>{{ countData&&(countData.totalQty || countData.totalQty==0) ? countData.totalQty : 0 }}</strong>;
|
|
|
+ <span v-if="$hasPermissions('B_salesEdit_salesPrice')">总金额:<strong>{{ countData&&(countData.totalAmount || countData.totalAmount==0) ? toThousands(countData.totalAmount) : '0.00' }}</strong>;</span>
|
|
|
+ </div>
|
|
|
+ </a-alert>
|
|
|
<!-- 导入产品 -->
|
|
|
<importGuideModal :openModal="openGuideModal" :params="{salesBillSn: salesBillSn}" @close="closeGuideModel" @ok="hanldeOk" />
|
|
|
<!-- 仓库设置 -->
|