master
lion 2 weeks ago
parent cf4b7abb1d
commit b44c51cb91

@ -195,6 +195,19 @@
</div> </div>
</div> </div>
</template> </template>
<template v-slot:is_count_genban>
<div class="xy-table-item">
<div class="xy-table-item-label" style="font-weight: bold">
<span style="color: red;font-weight: bold;padding-right: 4px;"></span>是否统计跟班学员
</div>
<div class="xy-table-item-content">
<el-radio-group style="width:100%" v-model="form.is_count_genban">
<el-radio :label="1"></el-radio>
<el-radio :label="0"></el-radio>
</el-radio-group>
</div>
</div>
</template>
</xy-dialog> </xy-dialog>
@ -233,6 +246,7 @@
show_mobile:'', show_mobile:'',
auto_schoolmate:'', auto_schoolmate:'',
is_history:0, is_history:0,
is_count_genban:0,
}, },
rules: { rules: {
name: [{ name: [{
@ -278,6 +292,7 @@
this.form.show_mobile = res.show_mobile?res.show_mobile:(res.show_mobile==0?0:'') this.form.show_mobile = res.show_mobile?res.show_mobile:(res.show_mobile==0?0:'')
this.form.auto_schoolmate = res.auto_schoolmate?res.auto_schoolmate:(res.auto_schoolmate==0?0:'') this.form.auto_schoolmate = res.auto_schoolmate?res.auto_schoolmate:(res.auto_schoolmate==0?0:'')
this.form.is_history = res.is_history?res.is_history:0 this.form.is_history = res.is_history?res.is_history:0
this.form.is_count_genban = res.is_count_genban?res.is_count_genban:0
}) })
}, },
@ -310,6 +325,7 @@
show_mobile:'', show_mobile:'',
auto_schoolmate:'', auto_schoolmate:'',
is_history:0, is_history:0,
is_count_genban:0,
}, },
this.$refs['dialog'].reset() this.$refs['dialog'].reset()
} }

@ -28,9 +28,9 @@ module.exports = {
*/ */
publicPath: process.env.ENV === 'staging' ? '/admin' : '/admin', publicPath: process.env.ENV === 'staging' ? '/admin' : '/admin',
// 测试 // 测试
outputDir: '/Users/mac/Documents/朗业/2025/s-苏州科技商学院/wx.sstbc.com/public/admin', // outputDir: '/Users/mac/Documents/朗业/2025/s-苏州科技商学院/wx.sstbc.com/public/admin',
// 正式 // 正式
// outputDir: '/Users/mac/Documents/朗业/2024/s-苏州科技商学院/wx.sstbc.com/public/admin', outputDir: '/Users/mac/Documents/朗业/2024/s-苏州科技商学院/wx.sstbc.com/public/admin',
assetsDir: 'static', assetsDir: 'static',
css: { css: {
loaderOptions: { // 向 CSS 相关的 loader 传递选项 loaderOptions: { // 向 CSS 相关的 loader 传递选项

Loading…
Cancel
Save