Commit ed4cfcfb by 肖翔宇

12.14

parent ebd45eda
...@@ -4,7 +4,7 @@ const prodEnv = require('./prod.env') ...@@ -4,7 +4,7 @@ const prodEnv = require('./prod.env')
module.exports = merge(prodEnv, { module.exports = merge(prodEnv, {
NODE_ENV: '"development"', NODE_ENV: '"development"',
BASE_API: '"http://gxgqs.com/sharePiano"', BASE_API: '"http://192.168.10.105:9001/sharePiano"',
}) })
//http://gxgqs.com/sharePiano //http://gxgqs.com/sharePiano
//http://192.168.10.105:9001/sharePiano //http://192.168.10.105:9001/sharePiano
...@@ -67,7 +67,7 @@ ...@@ -67,7 +67,7 @@
z-index:80; z-index:80;
top: 10%; top: 10%;
left: 25%; left: 25%;
width: 50%; width: 600px;
/* margin: 0 auto; */ /* margin: 0 auto; */
background-color: #eee; background-color: #eee;
border-radius: 3px; border-radius: 3px;
......
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<el-button @click.native.prevent="openShowBargain()" class="filter-item" style="margin-left: 10px;" v-waves type="primary" icon="el-icon-plus">添加类型 <el-button @click.native.prevent="openShowBargain()" class="filter-item" style="margin-left: 10px;" v-waves type="primary" icon="el-icon-plus">添加阶段
</el-button> </el-button>
</modal> </modal>
<modal @on-close="closeBargain()":is-show='isShowBargain'> <modal @on-close="closeBargain()":is-show='isShowBargain'>
...@@ -43,8 +43,8 @@ ...@@ -43,8 +43,8 @@
v-model.number="types.totalNumber" :maxlength="4"> v-model.number="types.totalNumber" :maxlength="4">
</el-input> </el-input>
</el-form-item> </el-form-item>
<el-form-item label="金额范围" prop="totalAmount"> <el-form-item label="阶段金额" prop="totalAmount">
<el-input type="text" placeholder="请输入金额范围" <el-input type="text" placeholder="请输入阶段金额"
v-model.number="types.totalAmount" :maxlength="12"> v-model.number="types.totalAmount" :maxlength="12">
</el-input> </el-input>
</el-form-item> </el-form-item>
...@@ -251,6 +251,7 @@ ...@@ -251,6 +251,7 @@
this.isShowBargain=true; this.isShowBargain=true;
}, },
closeBargain(){ closeBargain(){
this.$refs["dataForm"].resetFields();
this.isShowBargain=false; this.isShowBargain=false;
this.types.totalAmount=undefined; this.types.totalAmount=undefined;
this.types.totalNumber=undefined; this.types.totalNumber=undefined;
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
</el-button> </el-button>
<modal @on-close="closeThis()" :is-show='isShowLog'> <modal @on-close="closeThis()" :is-show='isShowLog'>
<el-form :rules="rules" ref="dataForm" :model="types" label-position="left" label-width="100px" <el-form :rules="rules" ref="dataForm" :model="types" label-position="left" label-width="100px"
style='width: 350px; margin-left:50px;'> style='width: 350px; margin-left:50px;margin-top:40px;'>
<el-form-item label="钢琴品牌" prop="pianoBrand"> <el-form-item label="钢琴品牌" prop="pianoBrand">
<el-input type="text" placeholder="请输入钢琴品牌" <el-input type="text" placeholder="请输入钢琴品牌"
v-model.trim="temp.pianoBrand" :maxlength="25"> v-model.trim="temp.pianoBrand" :maxlength="25">
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
</modal> </modal>
<modal @on-close="closeCode()" :is-show='isShowCode'> <modal @on-close="closeCode()" :is-show='isShowCode'>
<el-form :rules="rules" ref="dataForm" :model="types" label-position="left" label-width="100px" <el-form :rules="rules" ref="dataForm" :model="types" label-position="left" label-width="100px"
style='width: 350px; margin-left:50px;'> style='width: 350px; margin-left:50px;margin-top:50px;'>
<el-form-item label="生成数量" prop="count"> <el-form-item label="生成数量" prop="count">
<el-input type="text" placeholder="请输入要生成的二维码数量" <el-input type="text" placeholder="请输入要生成的二维码数量"
v-model.number="count" :maxlength="3"> v-model.number="count" :maxlength="3">
...@@ -104,7 +104,7 @@ ...@@ -104,7 +104,7 @@
total: null, total: null,
// 表单显示的名称 // 表单显示的名称
table: { table: {
pianoBrand: '商家信息', pianoBrand: '钢琴品牌',
name: '商家名', name: '商家名',
id: '钢琴编号', id: '钢琴编号',
cover: '二维码' cover: '二维码'
...@@ -125,7 +125,7 @@ ...@@ -125,7 +125,7 @@
// 表单验证的规则 // 表单验证的规则
rules: { rules: {
count: [ count: [
{ required: true, message: '课程名称不能为空', trigger: 'blur' }, { required: true, message: '数量不能为空', trigger: 'blur' },
{ type: 'number', message: '只允许输入数字'} { type: 'number', message: '只允许输入数字'}
] ]
}, },
...@@ -139,7 +139,7 @@ ...@@ -139,7 +139,7 @@
}, },
mounted() { mounted() {
this.$fetch.sysDict.optionsChildren('BANNER_TYPE').then(({ data }) => { this.$fetch.sysDict.optionsChildren('BANNER_TYPE').then(({ data }) => {
this.bannerTypes = data this.bannerTypes = data;
}) })
}, },
computed: { computed: {
...@@ -163,18 +163,29 @@ ...@@ -163,18 +163,29 @@
openShowLog(row){ openShowLog(row){
this.isShowLog=true; this.isShowLog=true;
const index = this.list.indexOf(row) const index = this.list.indexOf(row)
this.temp=this.list[index]; this.temp={currentPage: row.currentPage,
id: row.id,
limit: row.limit,
name: row.name,
offset: row.offset,
pageSize: row.pageSize,
pianoBrand: row.pianoBrand,
twoDimensionalCodeAddress:row.twoDimensionalCodeAddress}
console.log(this.temp)
}, },
openShowCode(row){ openShowCode(row){
this.isShowCode=true; this.isShowCode=true;
}, },
closeCode(){ closeCode(){
this.$refs["dataForm"].resetFields();
this.isShowCode=false; this.isShowCode=false;
this.count=undefined;
}, },
shengcheng(){ shengcheng(){
this.$fetch.sysCodeForPaino.fileUpload({id:this.count}).then(({data}) => { this.$fetch.sysCodeForPaino.fileUpload({id:this.count}).then(({data}) => {
// 赋值数据 // 赋值数据
this.list = data; this.list = data;
this.isShowCode=false;
console.log(this.list); console.log(this.list);
}) })
}, },
...@@ -336,8 +347,9 @@ ...@@ -336,8 +347,9 @@
this.$message.warning('请等待视频上传成功') this.$message.warning('请等待视频上传成功')
return return
} }
console.log(this.temp);
this.$refs['dataForm'].validate(valid => { this.$refs['dataForm'].validate(valid => {
if (valid) { if (true) {
const tempData = Object.assign({}, this.temp) const tempData = Object.assign({}, this.temp)
if (!tempData.id) { if (!tempData.id) {
this.$fetch.sysCodeForPaino.update(tempData).then(() => { this.$fetch.sysCodeForPaino.update(tempData).then(() => {
...@@ -346,7 +358,8 @@ ...@@ -346,7 +358,8 @@
type: 'success' type: 'success'
}) })
this.isShowLog=false; this.isShowLog=false;
this.back() this.back();
this.refresh();
}) })
} else { } else {
this.$fetch.sysCodeForPaino.update(tempData).then(() => { this.$fetch.sysCodeForPaino.update(tempData).then(() => {
...@@ -355,7 +368,8 @@ ...@@ -355,7 +368,8 @@
type: 'success' type: 'success'
}) })
this.isShowLog=false; this.isShowLog=false;
this.back() this.back();
this.refresh();
}) })
} }
} else { } else {
......
...@@ -105,8 +105,9 @@ export default { ...@@ -105,8 +105,9 @@ export default {
filters: {}, filters: {},
created() { created() {
const params = this.$route.params const params = this.$route.params
console.log(params)
if (params && params.id) { if (params && params.id) {
this.$fetch.sysCourse.query({ id: params.id }).then(({ data }) => { this.$fetch.sysCourse.query({ id: params.id.id }).then(({ data }) => {
this.temp = data; this.temp = data;
}) })
} }
......
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
<el-form :rules="rules" ref="dataForm" :model="types" label-position="left" label-width="100px" <el-form :rules="rules" ref="dataForm" :model="types" label-position="left" label-width="100px"
style='width: 350px; margin-left:50px;margin-top:40px;'> style='width: 350px; margin-left:50px;margin-top:40px;'>
<el-form-item label="课程类型" prop="courseName"> <el-form-item label="课程类型" prop="courseName">
<el-input type="text" placeholder="请输入课程类型" <el-input @change="console" type="text" placeholder="请输入课程类型"
v-model.trim="types.courseName":maxlength="25"> v-model.trim="types.courseName":maxlength="25">
</el-input> </el-input>
</el-form-item> </el-form-item>
...@@ -136,7 +136,7 @@ ...@@ -136,7 +136,7 @@
<el-button type="danger" icon="el-icon-delete" <el-button type="danger" icon="el-icon-delete"
@click.native.prevent="handleDelete(scope.row)" size="mini" round></el-button> @click.native.prevent="handleDelete(scope.row)" size="mini" round></el-button>
<el-button type="primary" icon="el-icon-plus" <el-button type="primary" icon="el-icon-plus"
@click.native.prevent="showDiversity(scope.row)" size="mini" round></el-button> @click.native.prevent="showDiversity(scope.row)" size="mini" round>选集</el-button>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
...@@ -261,11 +261,21 @@ ...@@ -261,11 +261,21 @@
}) })
}, },
closeCourse(){ closeCourse(){
console.log(this.types,this.courseTypes)
this.$refs["dataForm"].resetFields();
this.isShowCourse=false; this.isShowCourse=false;
}, },
console(){
console.log(this.types,this.courseTypes)
},
openShowCourse(data){ openShowCourse(data){
if(data){ if(data){
this.types=data; this.types={
courseName: data.courseName,
id: data.id,
videoAddress: data.videoAddress,
videoName: data.videoName
};
}else{ }else{
this.types.id=undefined; this.types.id=undefined;
this.types.courseName=undefined; this.types.courseName=undefined;
...@@ -299,7 +309,9 @@ ...@@ -299,7 +309,9 @@
this.isShowDiversityEdit=true; this.isShowDiversityEdit=true;
}, },
closeDiversityEdit(){ closeDiversityEdit(){
this.isShowDiversityEdit=false this.$refs["dataForm"].resetFields();
this.isShowDiversityEdit=false;
this.types.courseName=undefined;
}, },
beforeUploadVideo(file) { beforeUploadVideo(file) {
const isLt10M = file.size / 1024 / 1024 < 20 const isLt10M = file.size / 1024 / 1024 < 20
...@@ -551,6 +563,7 @@ ...@@ -551,6 +563,7 @@
this.$refs['dataForm'].validate(valid => { this.$refs['dataForm'].validate(valid => {
if (valid) { if (valid) {
for(var i in this.courseTypes){ for(var i in this.courseTypes){
console.log(this.courseTypes[i].courseName,this.types.courseName)
if(this.courseTypes[i].courseName==this.types.courseName){ if(this.courseTypes[i].courseName==this.types.courseName){
this.$message("该课程类型已存在"); this.$message("该课程类型已存在");
return; return;
......
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 sign in to comment