index.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <template>
  2. <div class="padding-20">
  3. <div class="search-box">
  4. <el-form
  5. ref="form"
  6. :inline="true"
  7. :model="searchForm"
  8. clearable
  9. class="mt-10">
  10. <el-form-item label="演出日期:">
  11. <el-date-picker
  12. v-model="searchForm.plan_time"
  13. align="right"
  14. type="date"
  15. placeholder="选择日期"
  16. :picker-options="pickerOptions"
  17. value-format="yyyy-MM-dd">
  18. </el-date-picker>
  19. </el-form-item>
  20. <el-form-item class="ml-10">
  21. <el-button icon="el-icon-search" type="primary" @click="searchSubmit">查询</el-button>
  22. </el-form-item>
  23. <el-form-item class="ml-10">
  24. <el-button icon="el-icon-plus" type="primary" v-permission="'business_sms_plan_add'" @click="add">新增
  25. </el-button>
  26. </el-form-item>
  27. </el-form>
  28. </div>
  29. <el-table :data="tableData"
  30. stripe
  31. v-loading="tableLoading"
  32. fit
  33. class="marginT-10 order-table"
  34. border
  35. :max-height="vheight">
  36. <el-table-column label="ID" prop="id" width="80"></el-table-column>
  37. <el-table-column label="艺人" prop="plan_author_name"></el-table-column>
  38. <el-table-column label="演唱时间">
  39. <template slot-scope="scope">
  40. <span>{{ scope.row.plan_start_time }}</span>
  41. <span>至</span>
  42. <span>{{ scope.row.plan_end_time }}</span>
  43. </template>
  44. </el-table-column>
  45. <el-table-column label="本节点歌歌单" prop="song_num" width="120"></el-table-column>
  46. <el-table-column label="操作" width="160">
  47. <template slot-scope="scope">
  48. <el-button type="text" v-permission="'business_sms_plan_set'" @click="editPlayList(scope.row)">设置歌单
  49. </el-button>
  50. <el-button type="text" v-permission="'business_sms_plan_del'" @click="del(scope.row)">删除</el-button>
  51. </template>
  52. </el-table-column>
  53. </el-table>
  54. <el-pagination
  55. class="marginT-20"
  56. @size-change="handleSizeChange"
  57. @current-change="handleCurrentChange"
  58. :hide-on-single-page="true"
  59. :current-page="page"
  60. :page-size="page_size"
  61. :page-sizes="[10, 20, 100, 200, 300, 400]"
  62. background
  63. layout="total, sizes, prev, pager, next, jumper"
  64. :total="totalCount"/>
  65. <detail v-if="detailsDialog.show"
  66. v-model="detailsDialog.show"
  67. :singerData="singerData"
  68. :exData="detailsDialog.exData"
  69. @success="init"></detail>
  70. <playList v-if="playListDialog.show"
  71. v-model="playListDialog.show"
  72. :exData="playListDialog.exData"
  73. @success="init"></playList>
  74. </div>
  75. </template>
  76. <script>
  77. import page from '@/mixin/page'
  78. import detail from './details'
  79. import playList from './playList'
  80. export default {
  81. mixins: [page],
  82. components: {
  83. detail,
  84. playList
  85. },
  86. data () {
  87. return {
  88. pickerOptions: {
  89. shortcuts: [{
  90. text: '今天',
  91. onClick (picker) {
  92. picker.$emit('pick', new Date())
  93. }
  94. }, {
  95. text: '昨天',
  96. onClick (picker) {
  97. const date = new Date()
  98. date.setTime(date.getTime() - 3600 * 1000 * 24)
  99. picker.$emit('pick', date)
  100. }
  101. }, {
  102. text: '一周前',
  103. onClick (picker) {
  104. const date = new Date()
  105. date.setTime(date.getTime() - 3600 * 1000 * 24 * 7)
  106. picker.$emit('pick', date)
  107. }
  108. }]
  109. },
  110. detailsDialog: {
  111. show: false,
  112. exData: {}
  113. },
  114. playListDialog: {
  115. show: false,
  116. exData: {}
  117. },
  118. searchForm: {},
  119. tableData: [],
  120. tableUrl: '/v1/bar/show/plan/list',
  121. singerData: [] // 歌手列表
  122. }
  123. },
  124. methods: {
  125. add () {
  126. this.detailsDialog.exData = {}
  127. this.detailsDialog.show = true
  128. },
  129. del (row) {
  130. this.$confirm('确定要删除吗', '确认', {
  131. confirmButtonText: '确定',
  132. cancelButtonText: '取消',
  133. type: 'warning'
  134. }).then(async () => {
  135. const data = await this.$fetch('/v1/bar/show/plan/delete', { id: row.id }, 'get')
  136. if (data.code === 200) {
  137. this.$message.success('删除成功')
  138. this.init()
  139. }
  140. }).catch(() => {})
  141. },
  142. // 设置歌单弹窗
  143. editPlayList (row) {
  144. this.playListDialog.exData = row
  145. this.playListDialog.show = true
  146. },
  147. // 获取所有歌手列表
  148. async fetchSingerList () {
  149. const api = '/v1/user/singer/list'
  150. const { code, data } = await this.$fetch(api, {
  151. page: 1,
  152. page_size: 1000
  153. }, 'get')
  154. if (this.tableData && (data.data || data.list) && code === 200) {
  155. this.singerData = data.data || data.list
  156. }
  157. }
  158. },
  159. mounted () {
  160. this.init()
  161. this.fetchSingerList()
  162. }
  163. }
  164. </script>
  165. <style lang="scss" scoped>
  166. </style>