Commit 21fe5904 authored by zhengke's avatar zhengke

修改

parent ed2b1176
This diff is collapsed.
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
<el-tag type="danger">3人团</el-tag> <el-tag type="danger">3人团</el-tag>
</div> </div>
<label style="margin-bottom:0;padding:18px 10px;">批量设置</label> <label style="margin-bottom:0;padding:18px 10px;">批量设置</label>
<el-select placeholder="请选择层级" style="width:130px;" size="small"> <el-select placeholder="请选择层级" v-model="fenxiao" style="width:130px;" size="small">
<el-option label="一级分销" :value="1"></el-option> <el-option label="一级分销" :value="1"></el-option>
<el-option label="二级分销" :value="2"></el-option> <el-option label="二级分销" :value="2"></el-option>
</el-select> </el-select>
...@@ -50,8 +50,26 @@ ...@@ -50,8 +50,26 @@
</el-input> </el-input>
<el-button size="small" type="primary">设置</el-button> <el-button size="small" type="primary">设置</el-button>
</div> </div>
<el-table> <el-table ref="multipleTable" :data="tableData" tooltip-effect="dark" style="width: 100%;border:1px solid #E8EAEE"
@selection-change="handleSelectionChange">
<el-table-column type="selection" width="55">
</el-table-column>
<el-table-column label="等级名称" prop="leval" width="100">
</el-table-column>
<el-table-column label="一级分销" width="576">
<template slot-scope="scope">
<el-input type="text" size="small" v-model="scope.row.yiji">
<el-button slot="append"></el-button>
</el-input>
</template>
</el-table-column>
<el-table-column label="二级分销" width="575">
<template slot-scope="scope">
<el-input type="text" size="small" v-model="scope.row.erji">
<el-button slot="append"></el-button>
</el-input>
</template>
</el-table-column>
</el-table> </el-table>
</div> </div>
</el-card> </el-card>
...@@ -67,17 +85,27 @@ ...@@ -67,17 +85,27 @@
}, },
data() { data() {
return { return {
fenxiao:0,
msg: { msg: {
individual_share: 1, individual_share: 1,
share_type: 0 share_type: 0
},
tableData:[
{
leval:'默认等级',
yiji:0,
erji:3
} }
]
}; };
}, },
created() { created() {
}, },
methods: { methods: {
handleSelectionChange(){
}
}, },
mounted() { mounted() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment