indexBanner.vue 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. <template>
  2. <a-card :bordered="false">
  3. <div class="table-page-search-wrapper" v-if="hasPerm('bannerIndex:page')">
  4. <a-form layout="inline">
  5. <a-row :gutter="48">
  6. <a-col :md="8" :sm="24">
  7. <a-form-item label="名称">
  8. <a-input v-model="queryParam.name" allow-clear placeholder="请输入名称搜索"/>
  9. </a-form-item>
  10. </a-col>
  11. <a-col :md="16" :sm="24">
  12. <a-button type="primary" @click="$refs.table.refresh(true)">查询</a-button>
  13. <a-button type="primary" style="margin-left: 8px" v-if="hasPerm('bannerIndex:add')" icon="plus" @click="$refs.addForm.add()">新增</a-button>
  14. </a-col>
  15. </a-row>
  16. </a-form>
  17. </div>
  18. <s-table
  19. ref="table"
  20. size="default"
  21. :columns="columns"
  22. :data="loadData"
  23. :alert="true"
  24. :rowKey="(record) => record.bannerId"
  25. >
  26. <span slot="bannerName" slot-scope="text">
  27. <ellipsis :length="30" tooltip>{{ text }}</ellipsis>
  28. </span>
  29. <span slot="bannerImage" slot-scope="src">
  30. <img :src="src | getImgUrl" width="60" height="45" @click="showPreviewImg(src)" style="cursor: pointer;"/>
  31. </span>
  32. <span slot="bannerType" slot-scope="text">
  33. {{ typeFilter(text) }}
  34. </span>
  35. <span slot="action" slot-scope="text, record">
  36. <a-popconfirm placement="top" :title="record.bannerIsLine===1? '是否确认下线该banner?':'是否确认上线该banner?'" @confirm="() => editjobStatusStatus(record.bannerIsLine,record)">
  37. <a>{{ statusFilter(record.bannerIsLine) }}</a>
  38. </a-popconfirm>
  39. <a-divider type="vertical"/>
  40. <a v-if="hasPerm('bannerIndex:edit')" @click="$refs.editForm.edit(record)">编辑</a>
  41. <a-divider type="vertical" v-if="hasPerm('bannerIndex:edit') && hasPerm('bannerIndex:delete')"/>
  42. <a-popconfirm v-if="hasPerm('bannerIndex:delete')" placement="topRight" title="是否确认删除该banner?" @confirm="() => bannerIndexDelete(record)">
  43. <a>删除</a>
  44. </a-popconfirm>
  45. </span>
  46. </s-table>
  47. <add-form ref="addForm" @ok="handleOk" />
  48. <edit-form ref="editForm" @ok="handleOk" />
  49. <a-modal :visible="previewVisible" :footer="null" @cancel="handleCancel" title="预览">
  50. <img alt="example" style="width: 100%" :src="previewImage" />
  51. </a-modal>
  52. </a-card>
  53. </template>
  54. <script>
  55. import { STable, Ellipsis } from '@/components'
  56. import homeApi from '@/api/homeApi'
  57. import { setImgUrl } from '@/utils/img'
  58. import addForm from './addBannerForm'
  59. import editForm from './editBannerForm'
  60. const _ = require('lodash')
  61. // import { sysDictTypeDropDown } from '@/api/modular/system/dictManage'
  62. export default {
  63. name: 'BannerIndex',
  64. components: {
  65. STable,
  66. Ellipsis,
  67. addForm,
  68. editForm
  69. },
  70. data () {
  71. return {
  72. // 查询参数
  73. queryParam: { id: '' },
  74. // 表头
  75. columns: [
  76. {
  77. title: '序号',
  78. dataIndex: 'dataIndex',
  79. customRender: (text, row, index) => {
  80. return index + 1
  81. },
  82. align: 'center',
  83. width: '90px'
  84. },
  85. {
  86. title: '名称',
  87. dataIndex: 'bannerName',
  88. scopedSlots: { customRender: 'bannerName' },
  89. width: '260px'
  90. },
  91. {
  92. title: '图片',
  93. dataIndex: 'bannerImage',
  94. scopedSlots: { customRender: 'bannerImage' },
  95. align: 'center',
  96. width: '150px'
  97. },
  98. {
  99. title: '跳转方式',
  100. dataIndex: 'bannerType',
  101. scopedSlots: { customRender: 'bannerType' },
  102. align: 'center',
  103. width: '150px'
  104. },
  105. {
  106. title: '跳转链接',
  107. dataIndex: 'bannerTypeUrlShow',
  108. scopedSlots: { customRender: 'bannerTypeUrlShow' }
  109. },
  110. {
  111. title: '排序',
  112. dataIndex: 'bannerSort',
  113. align: 'center',
  114. width: '90px'
  115. }
  116. ],
  117. // 加载数据方法 必须为 Promise 对象
  118. loadData: parameter => {
  119. return homeApi.findBannerById(Object.assign(parameter, this.queryParam)).then((res) => {
  120. var data = res.data
  121. _.each(data.rows, (item, index) => {
  122. if (item.bannerType === 1) {
  123. item.bannerTypeUrlShow = JSON.parse(item.bannerTypeUrl).articleContentTitle || JSON.parse(item.bannerTypeUrl).articleContentClassify
  124. } else {
  125. item.bannerTypeUrlShow = item.bannerTypeUrl
  126. }
  127. })
  128. return data
  129. })
  130. },
  131. selectedRowKeys: [],
  132. selectedRows: [],
  133. statusDictTypeDropDown: [{ code: 0, name: '下线' }, { code: 1, name: '上线' }],
  134. typeDictTypeDropDown: [{ code: 0, name: '无' }, { code: 1, name: '站内文章' }, { code: 2, name: '外部链接' }],
  135. previewVisible: false,
  136. previewImage: ''
  137. }
  138. },
  139. created () {
  140. if (this.hasPerm('bannerIndex:edit') || this.hasPerm('bannerIndex:delete') || hasPerm('bannerIndex:start') || hasPerm('bannerIndex:stop')) {
  141. this.columns.push({
  142. title: '操作',
  143. width: '300px',
  144. dataIndex: 'action',
  145. align: 'center',
  146. scopedSlots: { customRender: 'action' }
  147. })
  148. }
  149. },
  150. filters: {
  151. getImgUrl (v) {
  152. return setImgUrl(v)
  153. }
  154. },
  155. methods: {
  156. statusFilter (status) {
  157. const values = this.statusDictTypeDropDown.filter(item => item.code === status)
  158. if (values.length > 0) {
  159. return values[0].name
  160. } else {
  161. return '上线'
  162. }
  163. },
  164. typeFilter (type) {
  165. const values = this.typeDictTypeDropDown.filter(item => item.code === type)
  166. if (values.length > 0) {
  167. return values[0].name
  168. } else {
  169. return '无'
  170. }
  171. },
  172. /**
  173. * 启动停止
  174. */
  175. editjobStatusStatus (code, record) {
  176. if (code === 1) {
  177. homeApi.updateIsLinebanner({ id: record.bannerId, isLine: 0 }).then(res => {
  178. if (res.status === 200) {
  179. if (res.data) {
  180. this.$message.success('下线成功')
  181. this.$refs.table.refresh()
  182. } else {
  183. this.$message.error('下线失败')
  184. }
  185. } else {
  186. this.$message.error('下线失败:' + res.message)
  187. }
  188. })
  189. } else {
  190. homeApi.updateIsLinebanner({ id: record.bannerId, isLine: 1 }).then(res => {
  191. if (res.status === 200) {
  192. if (res.data) {
  193. this.$message.success('上线成功')
  194. this.$refs.table.refresh()
  195. } else {
  196. this.$message.error('上线失败')
  197. }
  198. } else {
  199. this.$message.error('上线失败:' + res.message)
  200. }
  201. })
  202. }
  203. },
  204. bannerIndexDelete (record) {
  205. homeApi.deleteBannerById({ id: record.bannerId }).then((res) => {
  206. if (res.status === 200) {
  207. if (res.data) {
  208. this.$message.success('删除成功')
  209. this.$refs.table.refresh()
  210. } else {
  211. this.$message.error('删除失败')
  212. }
  213. } else {
  214. this.$message.error('删除失败')
  215. }
  216. }).catch((err) => {
  217. this.$message.error('删除错误:' + err.message)
  218. })
  219. },
  220. toggleAdvanced () {
  221. this.advanced = !this.advanced
  222. },
  223. handleOk () {
  224. this.$refs.table.refresh()
  225. },
  226. onSelectChange (selectedRowKeys, selectedRows) {
  227. this.selectedRowKeys = selectedRowKeys
  228. this.selectedRows = selectedRows
  229. },
  230. showPreviewImg (src) {
  231. this.previewImage = setImgUrl(src)
  232. this.previewVisible = true
  233. },
  234. handleCancel () {
  235. this.previewVisible = false
  236. }
  237. }
  238. }
  239. </script>
  240. <style lang="less">
  241. .table-operator {
  242. margin-bottom: 18px;
  243. }
  244. button {
  245. margin-right: 8px;
  246. }
  247. </style>