Commit c75ad64e authored by 罗超's avatar 罗超

1

parent 01f1a2ba
......@@ -309,6 +309,7 @@
},
refreshStuList() {
this.$emit("success");
this.selection=[]
},
EditStudent(obj) {
if (obj) {
......
......@@ -30,6 +30,10 @@ export default {
dataList: {
type: Array,
default: () => []
},
select:{
type: Array,
default: () => []
}
},
data() {
......@@ -67,10 +71,13 @@ export default {
]
};
},
mounted() {
this.selection=this.select
},
methods: {
emitSel(val){
this.$emit("select",val)
}
},
}
};
</script>
......
<style>
.field {
height: 60px;
}
</style>
<!--订单操作-->
<template>
<div>
<div class="row q-mb-md">
<div class="col-10">
<div class="col-10 flex">
<div v-for="(item, index) in stuData.StuList">
<q-chip icon="person" class="primary"
>{{ item.StuName }}
......@@ -419,7 +414,7 @@ export default {
StuIds: "",
// NormalCommission:'',//正常返佣金额
// RenewCommission:"",// 预计返佣金额
isChaBan: 0
isChaBan: 0,
},
Unit_PriceRemark: "", //单价规则
IsShowUpPrice: false, //是否显示高于定价
......
......@@ -197,4 +197,10 @@
</script>
<style lang="sass">
@import url('~assets/css/table.sass')
</style>
<style scoped>
/deep/.el-input__inner, /deep/.el-range-input {
background-color: transparent;
border: none;
}
</style>
\ No newline at end of file
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