elbuttonS.vue 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. <template>
  2. <el-row :gutter="10" class="btnsA">
  3. <el-col :span="1.5" v-if="showAdd">
  4. <el-button color="#3B7AD1" size="mini" :disabled="disAdd" @click="handleAdd">
  5. <img :src="addW" style="margin-right: 10px">
  6. <span>{{ addName }}</span>
  7. </el-button>
  8. </el-col>
  9. <el-col :span="1.5" v-if="showSave">
  10. <el-button type="warning" size="mini" @click="handleEdit" :disabled="disSave">
  11. <img :src="editW" style="margin-right: 10px">
  12. <span>{{ saveName }}</span>
  13. </el-button>
  14. </el-col>
  15. <el-col :span="1.5" v-if="showDelete">
  16. <el-button type="danger" size="mini" :disabled="disDelete" @click="handleDelete">
  17. <img :src="deleteW" style="margin-right: 10px">
  18. <span>{{ deleteName }}</span>
  19. </el-button>
  20. </el-col>
  21. <el-col :span="1.5" v-if="showImport">
  22. <el-button type="success" icon="Upload" size="mini" :disabled="disImport"
  23. @click="handleImport">{{ importName }}</el-button>
  24. </el-col>
  25. <el-col :span="1.5" v-if="showExport">
  26. <el-button type="warning" icon="Download" size="mini" :disabled="disExport"
  27. @click="handleExport">{{ exportName }}</el-button>
  28. </el-col>
  29. <el-col :span="1.5" v-if="showreportForms">
  30. <el-button type="info" size="mini" @click="handleReport">
  31. <img :src="report" style="margin-right: 10px">
  32. <span>{{ reportFormsName }}</span>
  33. </el-button>
  34. </el-col>
  35. <el-col :span="1.5" v-if="showRelease">
  36. <el-button type="success" size="mini" @click="handleRelease">
  37. <img :src="fabu" style="margin-right: 10px">
  38. <span>{{ releaseName }}</span>
  39. </el-button>
  40. </el-col>
  41. <el-col :span="1.5" v-if="showCancelRelease">
  42. <el-button type="info" size="mini" @click="handleCancelRelease">
  43. <img :src="cancel" style="margin-right: 10px">
  44. <span>{{ cancelRelease }}</span>
  45. </el-button>
  46. </el-col>
  47. </el-row>
  48. </template>
  49. <script>
  50. import fabu from '../assets/btnIcon/fabu.png'
  51. import cancel from '../assets/btnIcon/cancel.png'
  52. import addW from '../assets/btnIcon/addW.png'
  53. import editW from '../assets/btnIcon/editW.png'
  54. import deleteW from '../assets/btnIcon/deleteW.png'
  55. import report from '../assets/btnIcon/report.png'
  56. export default {
  57. props: {
  58. showRelease: {
  59. type: Boolean,
  60. default: () => {
  61. return false;
  62. },
  63. },
  64. releaseName: {
  65. type: String,
  66. default: () => {
  67. return '发布';
  68. },
  69. },
  70. showCancelRelease: {
  71. type: Boolean,
  72. default: () => {
  73. return false;
  74. },
  75. },
  76. cancelRelease: {
  77. type: String,
  78. default: () => {
  79. return '取消发布';
  80. },
  81. },
  82. showAdd: {
  83. type: Boolean,
  84. default: () => {
  85. return true;
  86. },
  87. },
  88. disAdd: {
  89. type: Boolean,
  90. default: () => {
  91. return false;
  92. },
  93. },
  94. addName: {
  95. type: String,
  96. default: () => {
  97. return '新增';
  98. },
  99. },
  100. showSave: {
  101. type: Boolean,
  102. default: () => {
  103. return true;
  104. },
  105. },
  106. disSave: {
  107. type: Boolean,
  108. default: () => {
  109. return false;
  110. },
  111. },
  112. saveName: {
  113. type: String,
  114. default: () => {
  115. return '修改';
  116. },
  117. },
  118. showDelete: {
  119. type: Boolean,
  120. default: () => {
  121. return true;
  122. },
  123. },
  124. disDelete: {
  125. type: Boolean,
  126. default: () => {
  127. return false;
  128. },
  129. },
  130. deleteName: {
  131. type: String,
  132. default: () => {
  133. return '删除';
  134. },
  135. },
  136. showImport: {
  137. type: Boolean,
  138. default: () => {
  139. return true;
  140. },
  141. },
  142. disImport: {
  143. type: Boolean,
  144. default: () => {
  145. return false;
  146. },
  147. },
  148. importName: {
  149. type: String,
  150. default: () => {
  151. return '导入';
  152. },
  153. },
  154. showExport: {
  155. type: Boolean,
  156. default: () => {
  157. return true;
  158. },
  159. },
  160. disExport: {
  161. type: Boolean,
  162. default: () => {
  163. return false;
  164. },
  165. },
  166. exportName: {
  167. type: String,
  168. default: () => {
  169. return '导出';
  170. },
  171. },
  172. showreportForms: {
  173. type: Boolean,
  174. default: () => {
  175. return false;
  176. },
  177. },
  178. reportFormsName: {
  179. type: String,
  180. default: () => {
  181. return '报表';
  182. },
  183. },
  184. },
  185. data() {
  186. return {
  187. fabu: fabu,
  188. cancel: cancel,
  189. addW: addW,
  190. editW: editW,
  191. deleteW: deleteW,
  192. report: report
  193. }
  194. },
  195. methods: {
  196. handleAdd() {
  197. this.$emit('handleAdd')
  198. },
  199. handleEdit() {
  200. this.$emit('handleEdit')
  201. },
  202. handleDelete() {
  203. this.$emit('handleDelete')
  204. },
  205. handleImport() {
  206. this.$emit('handleImport')
  207. },
  208. handleExport() {
  209. this.$emit('handleExport')
  210. },
  211. handleReport() {
  212. this.$emit('handleReport')
  213. },
  214. handleRelease() {
  215. this.$emit('handleRelease')
  216. },
  217. handleCancelRelease() {
  218. this.$emit('handleCancelRelease')
  219. }
  220. }
  221. }
  222. </script>
  223. <style lang="less">
  224. .btnsA {
  225. padding-left: 10px;
  226. .is-disabled {
  227. opacity: 0.5;
  228. }
  229. }
  230. </style>