Browse Source

管理后台-演出管理:曲库

panyong 3 năm trước cách đây
mục cha
commit
99a4e7cb9d

+ 1 - 3
htmldev/manage/README.md

@@ -206,6 +206,4 @@ npm run build
 yarn build
 ```
 
-- [ ] 按钮加锁,防止重复点击
-- [ ] 订座安排:没有数据、修改、删除未测试
-- [ ] 座位预定:没有数据,字段缺
+- [ ] 按钮加锁,防止重复点击

+ 6 - 6
htmldev/manage/src/router/modules/business.js

@@ -74,18 +74,18 @@ const businessRouter = {
           name: 'BusinessShowPlan',
           meta: { title: '演出安排' }
         },
+        {
+          path: 'musicLib',
+          component: () => import('@/views/business/show/musicLib/index'),
+          name: 'BusinessShowMusicLib',
+          meta: { title: '曲库管理' }
+        },
         {
           path: 'playList',
           component: () => import('@/views/business/show/playList/index'),
           name: 'BusinessShowPlayList',
           meta: { title: '艺人曲库' },
           hidden: true
-        },
-        {
-          path: 'musicLib',
-          component: () => import('@/views/business/show/musicLib/index'),
-          name: 'BusinessShowMusicLib',
-          meta: { title: '曲库管理' }
         }
       ]
     },

+ 12 - 7
htmldev/manage/src/views/business/show/musicLib/index.vue

@@ -1,7 +1,12 @@
 <template>
   <div class="padding-20">
     <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
+               label-width="100px"
+               class="mt-10">
         <el-form-item label="开放预定日期:">
           <el-date-picker
             :editable="false"
@@ -29,13 +34,13 @@
               border
               :max-height="vheight">
       <el-table-column label="ID" prop="id"></el-table-column>
-      <el-table-column label="艺人" prop="department_name"></el-table-column>
-      <el-table-column label="手机号" prop="department_project_name"></el-table-column>
-      <el-table-column label="曲库数量" prop="department_project_name"></el-table-column>
+      <el-table-column label="艺人" prop="user_name"></el-table-column>
+      <el-table-column label="手机号" prop="user_phone"></el-table-column>
+      <el-table-column label="曲库数量" prop="song_num"></el-table-column>
       <el-table-column label="操作">
-        <template>
+        <template slot-scope="scope">
           <el-button type="text"
-                     @click="$router.push({name: 'BusinessShowPlayList'})">设置曲库
+                     @click="$router.push({name: 'BusinessShowPlayList', query: {id: scope.row.id }})">设置曲库
           </el-button>
         </template>
       </el-table-column>
@@ -68,7 +73,7 @@ export default {
       time: [],
       searchForm: {},
       tableData: [],
-      tableUrl: '/department/list'
+      tableUrl: '/v1/user/singer/list'
     }
   },
   methods: {

+ 1 - 1
htmldev/manage/src/views/business/show/playList/details.vue

@@ -82,7 +82,7 @@ export default {
       })
     },
     handleSubmit () {
-      const url = this.exData.id ? '/v1/bar/modify' : '/v1/bar/add'
+      const url = this.exData.id ? '/v1/user/song/modify' : '/v1/user/song/add'
       this.$refs.form.validate(async valid => {
         if (valid) {
           const data = await this.$fetch(url, {

+ 5 - 3
htmldev/manage/src/views/business/show/playList/index.vue

@@ -33,6 +33,7 @@
               :max-height="vheight">
       <el-table-column label="ID" prop="id"></el-table-column>
       <el-table-column label="歌曲名字" prop="department_name"></el-table-column>
+      <el-table-column label="原唱" prop="department_name"></el-table-column>
       <el-table-column label="点歌次数" prop="department_project_name"></el-table-column>
       <el-table-column label="添加时间" prop="department_project_name"></el-table-column>
       <el-table-column label="已预定" prop="department_project_name"></el-table-column>
@@ -78,7 +79,7 @@ export default {
       time: [],
       searchForm: {},
       tableData: [],
-      tableUrl: '/department/list'
+      tableUrl: '/v1/user/song/list'
     }
   },
   methods: {
@@ -96,8 +97,8 @@ export default {
         cancelButtonText: '取消',
         type: 'warning'
       }).then(async () => {
-        const data = await this.$fetch('/api/auth/department/del', { id: row.id })
-        if (data.code == 200) {
+        const data = await this.$fetch('/v1/user/song/modify', { id: row.id })
+        if (data.code === 200) {
           this.$message.success('删除成功')
           this.init()
         }
@@ -105,6 +106,7 @@ export default {
     }
   },
   mounted () {
+    this.$set(this.searchForm, 'id', this.$route.query.id)
     this.init()
   },
 }