doum
16 小时以前 c384e04f81caf681647c602d5896cc10b289582e
admin/src/components/business/OperaShopGoodsWindow.vue
@@ -2,6 +2,7 @@
  <GlobalWindow
    :title="title"
    width="80%"
    :with-footer="false"
    :visible.sync="visible"
  >
    <TableLayout >
@@ -34,7 +35,7 @@
      </el-form>
      <!-- 表格和分页 -->
      <template v-slot:table-wrap>
        <div :style="'display: flex;height:'+tabelHeight+'px;'">
<!--        <div :style="'display: flex;height:'+tabelHeight+'px;'">-->
          <el-table
              v-loading="isWorking.search"
              :data="tableData.list"
@@ -79,7 +80,7 @@
              :pagination="tableData.pagination"
          >
          </pagination>
          </div>
<!--          </div>-->
      </template>
    </TableLayout>
    <template  v-slot:footer>
@@ -181,7 +182,7 @@
    },
    blurEvent (row, curIndex, column) {
      if(this.price <= row.goodsPrice) {
        this.$tip.error('供货价不能低于销售价')
        this.$tip.error('供货价不能大于销售价')
        row.isPriceSelected = !row.isPriceSelected
        row.goodsPrice = row.oldGoodsPrice// 价格还原
        return
@@ -210,8 +211,8 @@
}
</script>
<style scoped>
.table-pagination{
/*.table-pagination{
  position: fixed !important;
  bottom: 50px;
}
}*/
</style>