shop_vue/src/views/plus/vip/grade/part/List.vue
@@ -18,7 +18,12 @@
            <span class="orange">¥{{ scope.row.agent_money }}</span>
          </template>
        </el-table-column>
        <el-table-column prop="operating_subsidy" label="VIP专区补贴" >
        <el-table-column prop="operating_subsidy" label="推广复购佣金" >
          <template slot-scope="scope">
            <span class="orange">¥{{ scope.row.repurchase_money }}</span>
          </template>
        </el-table-column>
        <el-table-column prop="operating_subsidy" label="下级收益补贴" >
          <template slot-scope="scope">
            <span class="orange">{{ scope.row.operating_subsidy }}%</span>
          </template>
@@ -28,7 +33,26 @@
            <span class="orange">{{ scope.row.commission }}%</span>
          </template>
        </el-table-column>
        <el-table-column prop="remark" label="升级条件" ></el-table-column>
        <el-table-column prop="supplier_money" label="直推商家交易佣金" >
          <template slot-scope="scope">
            <span class="orange">{{ scope.row.supplier_money }}%</span>
          </template>
        </el-table-column>
        <el-table-column prop="operating_subsidy" label="复购专区级差计算" >
          <template slot-scope="scope">
            <span class="orange">{{ scope.row.differential_prize }}%</span>
          </template>
        </el-table-column>
        <el-table-column prop="operating_subsidy" label="复购专区平级奖" >
          <template slot-scope="scope">
            <span class="orange">{{ scope.row.equal_level_award }}%</span>
          </template>
        </el-table-column>
        <el-table-column prop="remark" label="升级条件" >
          <template slot-scope="scope">
            <div v-html="keepTextStyle(scope.row.remark)"></div>
          </template>
        </el-table-column>
        <el-table-column prop="create_time" label="创建时间" width="160">
          <template slot-scope="scope">
            <span>{{ scope.row.create_time }}</span>
@@ -80,6 +104,11 @@
    this.getData();
  },
  methods: {
    /*换行*/
    keepTextStyle(val){
      let str=val.replace(/(\\r\\n)/g,'<br/>');
      return str;
    },
    /*获取列表数据*/
    getData() {
      let self = this;