index.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. <template>
  2. <div class="padding-20">
  3. <div class="flex flex-wrap">
  4. <div v-for="(item, index) in projectList" :key="index" class="box">
  5. <el-card class="box-card">
  6. <div>项目ID:{{item.id}}</div>
  7. <div>项目名称:{{item.project_name}}</div>
  8. <div class="flex">
  9. <div>LOGO:</div>
  10. <div><img style="max-height: 60px; max-width: 196px;" :src="item.project_logo"/></div>
  11. </div>
  12. <div>项目描述:{{item.project_desc}}</div>
  13. <div>项目域名:{{item.project_host}}</div>
  14. <div>项目状态:{{item.project_status}}</div>
  15. </el-card>
  16. <div class="bottom-btn marginT-10">
  17. <el-button v-permission="'project_list_edit'" size="mini" type="primary" @click="edit(item)">编辑</el-button>
  18. <el-button v-permission="'project_list_status'" size="mini"
  19. :type="item.project_status == '启用' ? 'danger' : 'success'" @click="status(item)">
  20. {{item.project_status == '启用' ? '停用' : '启用'}}
  21. </el-button>
  22. <el-button v-permission="'method_list_show'" size="mini" type="warning" @click="setFilterPath(item)">公共方法
  23. </el-button>
  24. <el-button v-permission="'project_list_roleConfig'" size="mini" type="warning" @click="setPermissions(item)">
  25. 权限编辑
  26. </el-button>
  27. </div>
  28. </div>
  29. <div class="box">
  30. <div @click="add" class="box-add" v-permission="'project_list_add'">
  31. <el-card class="box-card point">
  32. <div>
  33. <div class="text-center">
  34. 新建项目
  35. </div>
  36. <div class="text-center">
  37. <i class="el-icon-plus"></i>
  38. </div>
  39. </div>
  40. </el-card>
  41. </div>
  42. </div>
  43. </div>
  44. <detail v-if="detailsDialog.show" v-model="detailsDialog.show" :exData="detailsDialog.exData"
  45. @success="getList"></detail>
  46. <permissions v-if="permissionsDialog.show" v-model="permissionsDialog.show" :exData="permissionsDialog.exData"
  47. @success="getList"></permissions>
  48. <filterPath v-if="filterDialog.show" v-model="filterDialog.show" :exData="filterDialog.exData"></filterPath>
  49. </div>
  50. </template>
  51. <script>
  52. import detail from './details'
  53. import permissions from './permissions'
  54. import filterPath from './filterPath'
  55. export default {
  56. components: {
  57. detail,
  58. permissions,
  59. filterPath
  60. },
  61. data () {
  62. return {
  63. detailsDialog: {
  64. show: false,
  65. exData: {}
  66. },
  67. permissionsDialog: {
  68. show: false,
  69. exData: {}
  70. },
  71. filterDialog: {
  72. show: false,
  73. exData: {}
  74. },
  75. projectList: [],
  76. tableUrl: '/project/list'
  77. }
  78. },
  79. methods: {
  80. add () {
  81. this.detailsDialog.exData = {}
  82. this.detailsDialog.show = true
  83. },
  84. edit (row) {
  85. this.detailsDialog.exData = row
  86. this.detailsDialog.show = true
  87. },
  88. async status (row) {
  89. this.$confirm(`确定${row.project_status == '启用' ? '停用' : '启用'}当前项目吗`, '提示', {
  90. confirmButtonText: '确定',
  91. cancelButtonText: '取消',
  92. type: 'warning'
  93. }).then(async () => {
  94. const data = await this.$fetch('/project/set_status', { id: row.id })
  95. if (data.code == 200) {
  96. this.getList()
  97. }
  98. }).catch(() => {})
  99. },
  100. del (row) {
  101. this.$confirm('确定要删除吗', '确认', {
  102. confirmButtonText: '确定',
  103. cancelButtonText: '取消',
  104. type: 'warning'
  105. }).then(async () => {
  106. const data = await this.$fetch('/project/del', { id: row.id })
  107. if (data.code == 200) {
  108. this.$message.success('删除成功')
  109. this.init()
  110. this.$store.dispatch('common/setProjectArr')
  111. }
  112. }).catch(() => {})
  113. },
  114. async getList () {
  115. const data = await this.$fetch('/project/list', {}, 'get')
  116. if (data.code == 200) {
  117. this.projectList = data.data
  118. }
  119. },
  120. setPermissions (row) {
  121. this.permissionsDialog.exData = row
  122. this.permissionsDialog.show = true
  123. },
  124. setFilterPath (row) {
  125. this.filterDialog.exData = row
  126. this.filterDialog.show = true
  127. }
  128. },
  129. mounted () {
  130. // this.init()
  131. this.getList()
  132. },
  133. }
  134. </script>
  135. <style lang="scss" scoped>
  136. .box {
  137. margin: 20px;
  138. margin-bottom: 40px;
  139. flex-basis: 300px;
  140. height: 230px;
  141. max-height: 230px;
  142. }
  143. .box-add {
  144. height: 100%;
  145. }
  146. .box-card {
  147. width: 100%;
  148. height: 100%;
  149. color: #fff;
  150. background: rgb(72 112 189);
  151. }
  152. .el-icon-plus {
  153. font-size: 60px;
  154. margin-top: 30px;
  155. }
  156. .bottom-btn {
  157. button {
  158. padding: 7px 10px;
  159. }
  160. }
  161. </style>