@ -245,6 +245,7 @@ export default {
})
},
doEdit() {
this.form.imgPath = this.form.imageInput;
edit(this.form).then(res => {
this.resetForm()
this.$notify({
@ -119,6 +119,7 @@ const defaultForm = {
courseIntroduce: null,
seatArrange: 1,
chargeType: 0,
dayCount:'',
courseCharge: null,
createTime: null,
updateTime: null,
@ -182,7 +183,7 @@ export default {
this.getCourseLevel()
mounted(){
console.log(crudCourseMaster)
// console.log(crudCourseMaster)
this.$http('api/CourseMaster','get').then((res)=>{
this.masterList = res.content
@ -196,7 +196,7 @@
<el-table-column label="会员姓名" prop="memberName"></el-table-column>
<el-table-column label="手机号" prop="phone"></el-table-column>
<el-table-column label="是否签到" prop="memberName">
<template slot-scope="scope"></template></template>
<template slot-scope="scope">
<span style="" v-if="scope.row.signState == 0">未签到</span>
<span style="color:green" v-else>已签到</span>
</template>