|
@@ -56,7 +56,7 @@
|
|
</div>
|
|
</div>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
|
|
|
|
- <el-form ref="ruleForm" :model="ruleForm" inline="true" label-width="110px">
|
|
|
|
|
|
+ <el-form ref="ruleForm" :model="ruleForm" :inline="true" label-width="100px" >
|
|
<el-row>
|
|
<el-row>
|
|
<el-col :span="6">
|
|
<el-col :span="6">
|
|
<el-form-item label="汽油消费" prop="gasoilConsume">
|
|
<el-form-item label="汽油消费" prop="gasoilConsume">
|
|
@@ -93,6 +93,15 @@
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
</el-row>
|
|
</el-row>
|
|
|
|
+ <el-row v-show="false">
|
|
|
|
+ <el-col :span="6">
|
|
|
|
+ <el-form-item label="id" prop="id">
|
|
|
|
+ <el-input size="small" v-model="ruleForm.id" />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="6">
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-row>
|
|
</el-form>
|
|
</el-form>
|
|
<div slot="footer" class="dialog-footer">
|
|
<div slot="footer" class="dialog-footer">
|
|
<el-button type="primary" @click="submitForm">保存</el-button>
|
|
<el-button type="primary" @click="submitForm">保存</el-button>
|
|
@@ -248,6 +257,7 @@ export default {
|
|
created() {
|
|
created() {
|
|
this.getList();
|
|
this.getList();
|
|
this.getList2();
|
|
this.getList2();
|
|
|
|
+ this.getList3();
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
/** 查询客户优惠等级设置列表 */
|
|
/** 查询客户优惠等级设置列表 */
|
|
@@ -270,6 +280,13 @@ export default {
|
|
|
|
|
|
});
|
|
});
|
|
},
|
|
},
|
|
|
|
+ getList3() {
|
|
|
|
+ this.selectParams.gradeType="2";
|
|
|
|
+ this.loading = true;
|
|
|
|
+ listSetting(this.selectParams).then(response => {
|
|
|
|
+ this.ruleForm = response.rows;
|
|
|
|
+ });
|
|
|
|
+ },
|
|
// 取消按钮
|
|
// 取消按钮
|
|
cancel() {
|
|
cancel() {
|
|
this.open = false;
|
|
this.open = false;
|