parent
1a68697aaa
commit
059728f38f
@ -0,0 +1,64 @@ |
||||
<template> |
||||
<div class="signCfg"> |
||||
<div class="title">签到配置获取消费积分</div> |
||||
<el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="100px" class="demo-ruleForm"> |
||||
<el-form-item label="第一天" prop="one"> |
||||
<el-input v-model="ruleForm.one" type="number"></el-input> |
||||
</el-form-item> |
||||
<el-form-item label="第二天" prop="two"> |
||||
<el-input v-model="ruleForm.two" type="number"></el-input> |
||||
</el-form-item> |
||||
<el-form-item label="第三天" prop="three"> |
||||
<el-input v-model="ruleForm.three" type="number"></el-input> |
||||
</el-form-item> |
||||
<el-form-item label="第四天" prop="four"> |
||||
<el-input v-model="ruleForm.four" type="number"></el-input> |
||||
</el-form-item> |
||||
<el-form-item label="第五天" prop="five"> |
||||
<el-input v-model="ruleForm.five" type="number"></el-input> |
||||
</el-form-item> |
||||
|
||||
<el-form-item label="第六天" prop="six"> |
||||
<el-input v-model="ruleForm.six" type="number"></el-input> |
||||
</el-form-item> |
||||
<el-form-item label="第七天" prop="seven"> |
||||
<el-input v-model="ruleForm.seven" type="number"></el-input> |
||||
</el-form-item> |
||||
<el-form-item label="七天后" prop="other"> |
||||
<el-input v-model="ruleForm.other" type="number"></el-input> |
||||
</el-form-item> |
||||
|
||||
</el-form> |
||||
<el-button style="margin-left:200px;" type="primary">提交</el-button> |
||||
</div> |
||||
</template> |
||||
<script> |
||||
export default{ |
||||
data(){ |
||||
return{ |
||||
rules:{}, |
||||
ruleForm:{ |
||||
one:null, |
||||
two:null, |
||||
three:null, |
||||
four:null, |
||||
five:null, |
||||
six:null, |
||||
seven:null, |
||||
other:null, |
||||
} |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
<style lang="scss" scoped> |
||||
.signCfg{ |
||||
.title{ |
||||
padding: 20px; |
||||
font-size: 18px; |
||||
} |
||||
.el-input{ |
||||
width:300px; |
||||
} |
||||
} |
||||
</style> |
@ -0,0 +1,97 @@ |
||||
<template> |
||||
<div class="divBox"> |
||||
<el-card class="box-card"> |
||||
|
||||
|
||||
<el-table :data="tableData" style="width: 100%;"> |
||||
<el-table-column prop="date" label="ID"></el-table-column> |
||||
<el-table-column prop="date" label="等级名称"></el-table-column> |
||||
<el-table-column prop="date" label="项目经理人数"></el-table-column> |
||||
<el-table-column prop="date" label="创建时间"></el-table-column> |
||||
<el-table-column width="90" label="操作"> |
||||
<template slot-scope="scope"> |
||||
<el-button type="text">编辑</el-button> |
||||
</template> |
||||
</el-table-column> |
||||
|
||||
</el-table> |
||||
</el-card> |
||||
<el-dialog title="编辑等级" :visible.sync="dialogVisible" width="30%"> |
||||
<el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="100px" class="demo-ruleForm"> |
||||
<el-form-item label="等级名称" prop="name"> |
||||
{{ruleForm.name}} |
||||
</el-form-item> |
||||
<el-form-item label="项目经理人数" prop="name"> |
||||
<el-input v-model="ruleForm.num" type="number"></el-input> |
||||
</el-form-item> |
||||
|
||||
</el-form> |
||||
<span slot="footer" class="dialog-footer"> |
||||
<el-button @click="dialogVisible = false">取 消</el-button> |
||||
<el-button type="primary" @click="dialogVisible = false">确 定</el-button> |
||||
</span> |
||||
</el-dialog> |
||||
|
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
// +---------------------------------------------------------------------- |
||||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ] |
||||
// +---------------------------------------------------------------------- |
||||
// | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved. |
||||
// +---------------------------------------------------------------------- |
||||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权 |
||||
// +---------------------------------------------------------------------- |
||||
// | Author: CRMEB Team <admin@crmeb.com> |
||||
// +---------------------------------------------------------------------- |
||||
import { |
||||
|
||||
} from '@/api/user' |
||||
|
||||
|
||||
export default { |
||||
|
||||
data() { |
||||
return { |
||||
|
||||
tableData:[], |
||||
dialogVisible:false, |
||||
ruleForm:{ |
||||
name:'11', |
||||
num:null, |
||||
}, |
||||
rules:{} |
||||
|
||||
} |
||||
}, |
||||
mounted() { |
||||
|
||||
}, |
||||
methods: { |
||||
|
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style lang="scss" scoped> |
||||
.search{ |
||||
display: flex; |
||||
align-items: center; |
||||
.input{ |
||||
display: flex; |
||||
align-items: center; |
||||
span{ |
||||
display:inline-block; |
||||
width:200px; |
||||
} |
||||
} |
||||
} |
||||
.info{ |
||||
font-size: 18px; |
||||
font-weight: bold; |
||||
margin:10px 0; |
||||
|
||||
} |
||||
</style> |
||||
|
@ -0,0 +1,78 @@ |
||||
<template> |
||||
<div class="divBox"> |
||||
<el-card class="box-card"> |
||||
<div class="search"> |
||||
<div class="input"> |
||||
<span>转让记录/收款记录</span> |
||||
<el-input v-model="account"></el-input> |
||||
</div> |
||||
<el-button size="small" style="margin-left:20px;" type="primary">查询</el-button> |
||||
<el-button size="small" type="info">重置</el-button> |
||||
</div> |
||||
<div class="info">惠通宝当前市值:10</div> |
||||
<el-table :data="tableData" style="width: 100%;"> |
||||
<el-table-column prop="date" label="转让账户"></el-table-column> |
||||
<el-table-column prop="date" label="收款账户"></el-table-column> |
||||
<el-table-column prop="date" label="转让数量"></el-table-column> |
||||
<el-table-column prop="date" label="转让时间"></el-table-column> |
||||
|
||||
</el-table> |
||||
</el-card> |
||||
|
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
// +---------------------------------------------------------------------- |
||||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ] |
||||
// +---------------------------------------------------------------------- |
||||
// | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved. |
||||
// +---------------------------------------------------------------------- |
||||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权 |
||||
// +---------------------------------------------------------------------- |
||||
// | Author: CRMEB Team <admin@crmeb.com> |
||||
// +---------------------------------------------------------------------- |
||||
import { |
||||
|
||||
} from '@/api/user' |
||||
|
||||
|
||||
export default { |
||||
|
||||
data() { |
||||
return { |
||||
account:'', |
||||
tableData:[] |
||||
|
||||
} |
||||
}, |
||||
mounted() { |
||||
|
||||
}, |
||||
methods: { |
||||
|
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style lang="scss" scoped> |
||||
.search{ |
||||
display: flex; |
||||
align-items: center; |
||||
.input{ |
||||
display: flex; |
||||
align-items: center; |
||||
span{ |
||||
display:inline-block; |
||||
width:200px; |
||||
} |
||||
} |
||||
} |
||||
.info{ |
||||
font-size: 18px; |
||||
font-weight: bold; |
||||
margin:10px 0; |
||||
|
||||
} |
||||
</style> |
||||
|
Loading…
Reference in new issue