|
@@ -1,19 +1,22 @@
|
|
<template>
|
|
<template>
|
|
<div class="padding-20">
|
|
<div class="padding-20">
|
|
<div class="search-box">
|
|
<div class="search-box">
|
|
- <el-form ref="form" :inline="true" :model="searchForm" clearable label-width="100px" class="mt-10">
|
|
|
|
|
|
+ <el-form
|
|
|
|
+ ref="form"
|
|
|
|
+ :inline="true"
|
|
|
|
+ :model="searchForm"
|
|
|
|
+ clearable
|
|
|
|
+ class="mt-10">
|
|
<el-form-item label="日期:">
|
|
<el-form-item label="日期:">
|
|
<el-date-picker
|
|
<el-date-picker
|
|
- v-model="value2"
|
|
|
|
|
|
+ v-model="searchForm.plan_time"
|
|
align="right"
|
|
align="right"
|
|
type="date"
|
|
type="date"
|
|
placeholder="选择日期"
|
|
placeholder="选择日期"
|
|
- :picker-options="pickerOptions">
|
|
|
|
|
|
+ :picker-options="pickerOptions"
|
|
|
|
+ value-format="yyyy-MM-dd">
|
|
</el-date-picker>
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
- <el-form-item label="部门名称:">
|
|
|
|
- <el-input v-model="searchForm.department_name" placeholder="请输入部门名称" clearable></el-input>
|
|
|
|
- </el-form-item>
|
|
|
|
<el-form-item class="ml-10">
|
|
<el-form-item class="ml-10">
|
|
<el-button icon="el-icon-search" type="primary" @click="searchSubmit">查询</el-button>
|
|
<el-button icon="el-icon-search" type="primary" @click="searchSubmit">查询</el-button>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
@@ -38,11 +41,7 @@
|
|
<p>{{ scope.row.plan_end_time }}</p>
|
|
<p>{{ scope.row.plan_end_time }}</p>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="本节点歌歌单">
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <span style="margin-right: 20px;">{{ scope.row.song_num }}</span>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
|
|
+ <el-table-column label="本节点歌歌单" prop="song_num"></el-table-column>
|
|
<el-table-column label="操作">
|
|
<el-table-column label="操作">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<el-button type="text" @click="editPlayList(scope.row)">设置歌单</el-button>
|
|
<el-button type="text" @click="editPlayList(scope.row)">设置歌单</el-button>
|
|
@@ -108,7 +107,6 @@ export default {
|
|
}
|
|
}
|
|
}]
|
|
}]
|
|
},
|
|
},
|
|
- value2: new Date(),
|
|
|
|
detailsDialog: {
|
|
detailsDialog: {
|
|
show: false,
|
|
show: false,
|
|
exData: {}
|
|
exData: {}
|
|
@@ -117,7 +115,6 @@ export default {
|
|
show: false,
|
|
show: false,
|
|
exData: {}
|
|
exData: {}
|
|
},
|
|
},
|
|
- time: [],
|
|
|
|
searchForm: {},
|
|
searchForm: {},
|
|
tableData: [],
|
|
tableData: [],
|
|
tableUrl: '/v1/bar/show/plan/list',
|
|
tableUrl: '/v1/bar/show/plan/list',
|
|
@@ -162,7 +159,7 @@ export default {
|
|
mounted () {
|
|
mounted () {
|
|
this.init()
|
|
this.init()
|
|
this.fetchSingerList()
|
|
this.fetchSingerList()
|
|
- },
|
|
|
|
|
|
+ }
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|
|
|
|
|