index.vue 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. <template>
  2. <div class="app-container">
  3. <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="100px">
  4. <el-form-item label="团队名称" label-width="70px">
  5. <el-input
  6. v-model="queryParams.name"
  7. placeholder="请输入团队名称"
  8. clearable
  9. style="width: 140px;"
  10. @keyup.enter.native="handleQuery"
  11. />
  12. </el-form-item>
  13. <el-form-item label="团队类型">
  14. <el-select
  15. v-model="queryParams.type"
  16. placeholder="团队类型"
  17. clearable
  18. style="width: 240px"
  19. >
  20. <el-option
  21. v-for="dict in dict.type.team_type"
  22. :key="dict.value"
  23. :label="dict.label"
  24. :value="dict.value"
  25. />
  26. </el-select>
  27. </el-form-item>
  28. <el-form-item>
  29. <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
  30. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
  31. </el-form-item>
  32. </el-form>
  33. <el-row :gutter="10" class="mb8">
  34. <el-col :span="1.5">
  35. <el-button
  36. type="primary"
  37. plain
  38. icon="el-icon-plus"
  39. size="mini"
  40. @click="handleAdd"
  41. v-hasPermi="['teamMr:teamMr:add']"
  42. >新增</el-button>
  43. </el-col>
  44. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
  45. </el-row>
  46. <el-table ref="tables" v-loading="loading" :data="dataList" border>
  47. <el-table-column label="序号" align="center" type="index" width="50"></el-table-column>
  48. <el-table-column label="团队名称" align="center" prop="name" />
  49. <el-table-column label="团队类型" align="center" prop="type">
  50. <template slot-scope="scope">
  51. <dict-tag :options="dict.type.team_type" :value="scope.row.type"/>
  52. </template>
  53. </el-table-column>
  54. <el-table-column label="负责人" align="center" prop="contact" />
  55. <el-table-column label="联系电话" align="center" prop="mobile" />
  56. <el-table-column label="合约信息" align="center" prop="type">
  57. <template slot-scope="scope">
  58. <el-button type="text" @click="seeCenter(scope.row, 'img')">查看</el-button>
  59. </template>
  60. </el-table-column>
  61. <el-table-column label="状态" align="center" prop="status">
  62. <template slot-scope="scope">
  63. <el-switch
  64. @change="updateStatusApi(scope.row)"
  65. v-model="scope.row.switchValue"
  66. :active-value="1"
  67. active-color="#13ce66"
  68. inactive-color="#ff4949">
  69. </el-switch>
  70. </template>
  71. </el-table-column>
  72. <el-table-column label="添加时间" align="center" prop="createTime" width="160">
  73. <template slot-scope="scope">
  74. <span>{{ parseTime(scope.row.createTime) }}</span>
  75. </template>
  76. </el-table-column>
  77. <el-table-column label="操作" align="center" width="200" class-name="small-padding fixed-width">
  78. <template slot-scope="scope">
  79. <el-button
  80. size="mini"
  81. type="text"
  82. @click="handleUpdate(scope.row)"
  83. v-hasPermi="['teamMr:teamMr:edit']"
  84. >修改</el-button>
  85. <el-button
  86. size="mini"
  87. type="text"
  88. @click="resettingApi(scope.row)"
  89. v-hasPermi="['teamMr:teamMr:resetting']"
  90. >重置密码</el-button>
  91. <el-button
  92. size="mini"
  93. type="text"
  94. @click="handleDelete(scope.row,scope.index)"
  95. v-hasPermi="['teamMr:teamMr:delete']"
  96. >删除</el-button>
  97. </template>
  98. </el-table-column>
  99. </el-table>
  100. <pagination
  101. v-show="total>0"
  102. :total="total"
  103. :page.sync="queryParams.pageNum"
  104. :limit.sync="queryParams.pageSize"
  105. @pagination="getList"
  106. />
  107. <!-- 新增/编辑弹框 -->
  108. <add-and-edit
  109. ref="addAndEdit"
  110. :dict="dict"
  111. @getList="getList"
  112. />
  113. <el-dialog
  114. title="查看"
  115. :visible.sync="visibleStatus"
  116. width="600px"
  117. :destroy-on-close="true"
  118. :close-on-click-modal="false"
  119. >
  120. <div v-if="visibleType == 'img'">
  121. <el-image
  122. style="width: 400px; height: 100%"
  123. v-for="(item, index) in newObj.contractImgList"
  124. :key="index"
  125. :src="item"
  126. fit="cover"
  127. />
  128. </div>
  129. <div v-if="visibleType == 'html'">
  130. <div v-html="newObj.centent"></div>
  131. </div>
  132. <div slot="footer" class="dialog-footer">
  133. <el-button type="primary" @click="visibleStatus = false">确 定</el-button>
  134. </div>
  135. </el-dialog>
  136. </div>
  137. </template>
  138. <script>
  139. import { pageList, deleteById, updateStatus } from '@/api/team/teamMr'
  140. import addAndEdit from "./dialog/addAndEdit.vue";
  141. export default {
  142. name: "agreement",
  143. dicts: ['team_type'],
  144. components: { addAndEdit },
  145. data() {
  146. return {
  147. // 遮罩层
  148. loading: true,
  149. // 选中数组
  150. ids: [],
  151. // 非单个禁用
  152. single: true,
  153. // 非多个禁用
  154. multiple: true,
  155. // 显示搜索条件
  156. showSearch: true,
  157. // 总条数
  158. total: 0,
  159. // 用户表格数据
  160. dataList: null,
  161. // 弹出层标题
  162. title: "",
  163. // 是否显示弹出层
  164. open: false,
  165. // 日期范围
  166. dateRange: [],
  167. // 查询参数
  168. queryParams: {
  169. pageNum: 1,
  170. pageSize: 10,
  171. type: undefined
  172. },
  173. statusList: [
  174. {id: 1, name: '未发布', value: 0},
  175. {id: 2, name: '发布', value: 1},
  176. {id: 3, name: '下架', value: 2},
  177. ],
  178. visibleStatus: false,
  179. newObj: {},
  180. visibleType: ''
  181. };
  182. },
  183. created() {
  184. this.getList();
  185. },
  186. methods: {
  187. /** 查询列表 */
  188. getList() {
  189. this.loading = true;
  190. pageList(this.addDateRange(this.queryParams, this.dateRange))
  191. .then(response => {
  192. this.dataList = response.data.rows;
  193. this.dataList.forEach(item =>{
  194. item.switchValue = item.status;
  195. })
  196. this.total = response.data.total;
  197. this.loading = false;
  198. }
  199. );
  200. },
  201. // 取消按钮
  202. cancel() {
  203. this.open = false;
  204. },
  205. /** 搜索按钮操作 */
  206. handleQuery() {
  207. this.queryParams.pageNum = 1;
  208. this.getList();
  209. },
  210. /** 重置按钮操作 */
  211. resetQuery() {
  212. this.dateRange = [];
  213. this.$set(this.queryParams, 'name', '');
  214. this.$set(this.queryParams, 'type', '');
  215. this.queryParams.pageNum = 1;
  216. this.handleQuery();
  217. },
  218. /** 新增按钮操作 */
  219. handleAdd() {
  220. this.$refs["addAndEdit"].openDialog("新增数据", null);
  221. },
  222. /** 修改按钮操作 */
  223. handleUpdate(row) {
  224. this.$refs["addAndEdit"].openDialog("修改数据", row);
  225. },
  226. /** 启用或者禁用按钮操作 */
  227. updateStatusApi(row) {
  228. this.$confirm("是否对团队名称为" + row.name + "的数据进行" + (row.status == 1 ? '禁用?' : '启用?'), '提示', {
  229. confirmButtonText: '确定',
  230. cancelButtonText: '取消',
  231. type: 'warning'
  232. }).then(() => {
  233. updateStatus({ id: row.id, status: row.status == 1 ? 0 : 1 }).then((res) => {
  234. if (res.code == 200) {
  235. this.$message({
  236. type: 'success',
  237. message: '操作成功!'
  238. });
  239. this.getList();
  240. }
  241. });
  242. }).catch(() => {});
  243. },
  244. /** 重置密码按钮操作 */
  245. resettingApi(row) {
  246. this.$confirm("是否对团队名称为" + row.name + "的数据进行密码重置,重置后的密码为123456?", '提示', {
  247. confirmButtonText: '确定',
  248. cancelButtonText: '取消',
  249. type: 'warning'
  250. }).then(() => {
  251. updateStatus({ id: row.id, password: '123456' }).then((res) => {
  252. if (res.code == 200) {
  253. this.$message({
  254. type: 'success',
  255. message: '操作成功!'
  256. });
  257. this.getList();
  258. }
  259. });
  260. }).catch(() => {});
  261. },
  262. /** 删除按钮操作 */
  263. handleDelete(row) {
  264. this.$modal.confirm('是否确认删除数据团队名称为"' + row.name + '"的数据项?').then(function() {
  265. return deleteById(row.id);
  266. }).then(() => {
  267. this.getList();
  268. this.$modal.msgSuccess("删除成功");
  269. }).catch(() => {});
  270. },
  271. /** 查看按钮操作 */
  272. seeCenter(obj, type) {
  273. this.visibleStatus = true
  274. this.visibleType = type;
  275. this.newObj = obj;
  276. if(obj.contractImg){
  277. this.newObj.contractImgList = obj.contractImg.split(',')
  278. }
  279. }
  280. }
  281. };
  282. </script>