videoManage.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. <!--
  2. * @Description: create
  3. * @Version: 1.0
  4. * @Autor: XuTongZhang
  5. * @Date: 2020-07-28 16:06:20
  6. * @LastEditors: XuTongZhang
  7. * @LastEditTime: 2020-08-11 15:45:22
  8. -->
  9. <template>
  10. <div class="videoManage">
  11. <v-input :btn="btn" :list="list" @add="add"></v-input>
  12. <v-table :table="table" :tableList="tableList" :sortType="true" :queryData="queryData" @details="details" @editor="editor" @del="del"></v-table>
  13. <v-pager @page="callPage" :total="totalrecords"></v-pager>
  14. <el-dialog width="650px" :visible.sync="dialogFormVisible" :before-close="close" :close-on-click-modal="false">
  15. <el-form :model="form" ref="form" label-width="100px" :rules="state !== 2 ? rules : {}" label-position="left">
  16. <el-form-item label="视频名称" prop="videoName">
  17. <el-input v-if="state!==2" v-model="form.videoName" placeholder="请输入视频名称" autocomplete="off"></el-input>
  18. <div v-else>{{form.videoName}}</div>
  19. </el-form-item>
  20. <el-form-item prop="videoPath">
  21. <el-upload class="upload-demo" drag v-if="state!==2" :headers="{Authorization:token}" :action="$url+'/admin/upload/uploadVideo'" accept=".MP4,.mp4" :show-file-list="false" :on-success="handleAvatarSuccess" :before-upload="beforeAvatarUpload" multiple>
  22. <video v-if="form.videoPath" width="500" :src="$img+form.videoPath" class="avatar"></video>
  23. <i v-if="!form.videoPath" class="el-icon-upload"></i>
  24. <div v-if="!form.videoPath" class="el-upload__text">将文件拖到此处,或<em>点击上传</em>,限mp4格式</div>
  25. <!-- <div class="el-upload__tip" slot="tip"></div> -->
  26. </el-upload>
  27. <video v-else width="400" controls :src="$img+form.videoPath" class="avatar"></video>
  28. </el-form-item>
  29. </el-form>
  30. <div slot="footer" class="dialog-footer">
  31. <el-button @click="close">取 消</el-button>
  32. <el-button type="primary" v-if="state!==2" @click="determine">确 定</el-button>
  33. </div>
  34. </el-dialog>
  35. </div>
  36. </template>
  37. <script>
  38. export default {
  39. data () {
  40. return {
  41. tableList: [],
  42. token: localStorage.getItem('token'),
  43. dialogFormVisible: false,
  44. form: {
  45. videoName: '',
  46. videoPath: ''
  47. },
  48. page: 1,
  49. totalrecords: 0,
  50. state: 0,
  51. url: '',
  52. pickList: [],
  53. rules: {
  54. videoName: [{
  55. required: true,
  56. message: '请输入视频名称',
  57. trigger: 'blur'
  58. }],
  59. videoPath: [{
  60. required: true,
  61. message: '请上传视频',
  62. trigger: 'blur'
  63. }]
  64. },
  65. list: [],
  66. btn: [{
  67. name: '添加',
  68. type: 'success',
  69. method: 'add'
  70. }],
  71. table: {
  72. column: [{
  73. label: '序号',
  74. props: 'serialNumber'
  75. },
  76. {
  77. label: '视频名称',
  78. props: 'videoName'
  79. }
  80. ],
  81. handle: [{
  82. title: '查看',
  83. method: 'details',
  84. type: 'info'
  85. },
  86. {
  87. title: '编辑',
  88. method: 'editor',
  89. type: 'warning'
  90. },
  91. {
  92. title: '删除',
  93. method: 'del',
  94. type: 'danger'
  95. }
  96. ]
  97. }
  98. }
  99. },
  100. created () {
  101. this.queryData()
  102. },
  103. methods: {
  104. queryData (form = {}) {
  105. let page = this.page
  106. let reqdata = form
  107. this.$api
  108. .post('/video/queryVideoList', {
  109. reqdata,
  110. page
  111. })
  112. .then((res) => {
  113. this.totalrecords = res.totalrecords
  114. this.tableList = res.list.map((item, index) => {
  115. item.serialNumber = index + 1
  116. return item
  117. })
  118. })
  119. },
  120. add () {
  121. this.open()
  122. this.info = {}
  123. this.state = 0
  124. },
  125. getDetails (row) {
  126. console.log(row)
  127. let reqdata = {
  128. id: row.id
  129. }
  130. this.$api
  131. .post('/video/queryVideoDetail', {
  132. reqdata
  133. })
  134. .then((res) => {
  135. this.open()
  136. this.form = res.object
  137. })
  138. },
  139. details (row) {
  140. this.getDetails(row)
  141. this.state = 2
  142. },
  143. editor (row) {
  144. this.getDetails(row)
  145. this.state = 1
  146. },
  147. del (row) {
  148. this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
  149. confirmButtonText: '确定',
  150. cancelButtonText: '取消',
  151. type: 'warning'
  152. }).then(() => {
  153. let reqdata = {
  154. id: row.id
  155. }
  156. this.$api
  157. .post('/video/deleteVideo', {
  158. reqdata
  159. })
  160. .then((res) => {
  161. this.queryData()
  162. })
  163. }).catch(() => {
  164. this.$message({
  165. type: 'info',
  166. message: '已取消删除'
  167. })
  168. })
  169. },
  170. determine () {
  171. let a
  172. this.$refs['form'].validate((valid) => {
  173. a = valid
  174. })
  175. if (!a) return
  176. let url = this.state ? '/video/updateVideo' : '/video/saveVideo'
  177. let reqdata = this.form
  178. this.$api
  179. .post(url, {
  180. reqdata
  181. })
  182. .then((res) => {
  183. this.close()
  184. this.queryData()
  185. })
  186. },
  187. handleAvatarSuccess (res, file) {
  188. this.$set(this.form, 'videoPath', res)
  189. },
  190. beforeAvatarUpload (file) {
  191. return file.type === 'video/mp4'
  192. },
  193. open () {
  194. this.dialogFormVisible = true
  195. },
  196. close () {
  197. this.dialogFormVisible = false
  198. this.form = {}
  199. },
  200. callPage (val) {
  201. this.page = val
  202. this.queryData()
  203. }
  204. },
  205. watch: {
  206. dialogFormVisible: function (val, oldVla) {
  207. if (this.state === 2) {
  208. if (this.$refs['form'] !== undefined) {
  209. this.$refs['form'].resetFields()
  210. }
  211. }
  212. }
  213. }
  214. }
  215. </script>
  216. <style lang="scss" scoped>
  217. .dialog-footer {
  218. display: flex;
  219. justify-content: center;
  220. align-items: center;
  221. }
  222. .avatar {
  223. width: 100%;
  224. display: block;
  225. }
  226. ::v-deep .el-upload-dragger {
  227. overflow: visible!important;
  228. width: 400px;
  229. height:300px;
  230. display: flex;
  231. justify-content: center;
  232. align-items: center;
  233. flex-direction: column;
  234. }
  235. video{
  236. height: 100%;
  237. }
  238. </style>