Commit c75ad64e authored by 罗超's avatar 罗超

1

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