index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  1. <template>
  2. <div class="app-container">
  3. <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
  4. <el-form-item label="网址名" prop="websiteName">
  5. <el-input v-model="queryParams.websiteName"></el-input>
  6. </el-form-item>
  7. <el-form-item>
  8. <el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
  9. <el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
  10. </el-form-item>
  11. </el-form>
  12. <!-- <el-row :gutter="10" class="mb8">-->
  13. <!-- &lt;!&ndash; <el-col :span="1.5">&ndash;&gt;-->
  14. <!-- &lt;!&ndash; <el-button&ndash;&gt;-->
  15. <!-- &lt;!&ndash; type="primary"&ndash;&gt;-->
  16. <!-- &lt;!&ndash; plain&ndash;&gt;-->
  17. <!-- &lt;!&ndash; icon="el-icon-plus"&ndash;&gt;-->
  18. <!-- &lt;!&ndash; size="mini"&ndash;&gt;-->
  19. <!-- &lt;!&ndash; @click="handleAdd"&ndash;&gt;-->
  20. <!-- &lt;!&ndash; v-hasPermi="['business:WEBSITE:add']"&ndash;&gt;-->
  21. <!-- &lt;!&ndash; >新增</el-button>&ndash;&gt;-->
  22. <!-- &lt;!&ndash; </el-col>&ndash;&gt;-->
  23. <!-- &lt;!&ndash; <el-col :span="1.5">&ndash;&gt;-->
  24. <!-- &lt;!&ndash; <el-button&ndash;&gt;-->
  25. <!-- &lt;!&ndash; type="primary"&ndash;&gt;-->
  26. <!-- &lt;!&ndash; plain&ndash;&gt;-->
  27. <!-- &lt;!&ndash; icon="el-icon-edit"&ndash;&gt;-->
  28. <!-- &lt;!&ndash; :disabled="single"&ndash;&gt;-->
  29. <!-- &lt;!&ndash; @click="handleUpdate"&ndash;&gt;-->
  30. <!-- &lt;!&ndash; v-hasPermi="['business:WEBSITE:edit']"&ndash;&gt;-->
  31. <!-- &lt;!&ndash; >修改</el-button>&ndash;&gt;-->
  32. <!-- &lt;!&ndash; </el-col>&ndash;&gt;-->
  33. <!-- <el-col :span="1.5">-->
  34. <!-- <el-button type="primary" icon="el-icon-edit" :disabled="single" @click="handleUpdate" v-hasPermi="['business:WEBSITE:edit']">修改</el-button>-->
  35. <!--&lt;!&ndash; <el-button type="danger" icon="el-icon-delete" :disabled="multiple" @click="handleDelete" v-hasPermi="['business:WEBSITE:remove']">删除</el-button>&ndash;&gt;-->
  36. <!-- </el-col>-->
  37. <!-- &lt;!&ndash; <el-col :span="1.5">&ndash;&gt;-->
  38. <!-- &lt;!&ndash; <el-button&ndash;&gt;-->
  39. <!-- &lt;!&ndash; type="warning"&ndash;&gt;-->
  40. <!-- &lt;!&ndash; plain&ndash;&gt;-->
  41. <!-- &lt;!&ndash; icon="el-icon-download"&ndash;&gt;-->
  42. <!-- &lt;!&ndash; size="mini"&ndash;&gt;-->
  43. <!-- &lt;!&ndash; @click="handleExport"&ndash;&gt;-->
  44. <!-- &lt;!&ndash; v-hasPermi="['business:WEBSITE:export']"&ndash;&gt;-->
  45. <!-- &lt;!&ndash; >导出</el-button>&ndash;&gt;-->
  46. <!-- &lt;!&ndash; </el-col>&ndash;&gt;-->
  47. <!-- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>-->
  48. <!-- </el-row>-->
  49. <el-table :data="WEBSITEList" @selection-change="handleSelectionChange" height="calc(100vh - 300px)">
  50. <el-table-column label="网址名字" align="center" prop="websiteName" />
  51. <!-- <el-table-column label="背景图片" align="center" prop="websiteUrl">
  52. <template slot-scope="scope">
  53. <img
  54. :src="scope.row.websiteUrl"
  55. alt="背景图片"
  56. style="max-width: 100px; max-height: 100px"
  57. />
  58. </template>
  59. </el-table-column> -->
  60. <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
  61. <template slot-scope="scope">
  62. <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)" v-hasPermi="['business:WEBSITE:edit']">修改</el-button>
  63. <!-- <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)" v-hasPermi="['business:WEBSITE:remove']">删除</el-button>-->
  64. </template>
  65. </el-table-column>
  66. </el-table>
  67. <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList" />
  68. <!-- 添加或修改网站管理对话框 -->
  69. <el-dialog :title="title" :visible.sync="open" width="600px" append-to-body>
  70. <el-form ref="form" :model="form" :rules="rules" label-width="100px">
  71. <el-row>
  72. <el-col :span="12">
  73. <el-form-item label="链接名称" prop="websiteName">
  74. <el-input v-model="form.websiteName" placeholder="请输入链接名称" />
  75. </el-form-item>
  76. </el-col>
  77. </el-row>
  78. <el-form-item label="顶部背景图" prop="topPicture">
  79. <cropper v-model="form.topPicture" :fixed_number="[5, 1]"></cropper>
  80. </el-form-item>
  81. <el-form-item label="底部背景图" prop="bottomPicture">
  82. <cropper v-model="form.bottomPicture" :fixed_number="[160, 9]"></cropper>
  83. </el-form-item>
  84. <!-- <el-form-item label="顶部背景图" prop="websiteUrl">-->
  85. <!-- <el-upload action="#" list-type="picture-card" :limit="1" :auto-upload="true" :http-request="httprequest" :before-upload="beforeupload" :file-list="fileList">-->
  86. <!-- <i slot="default" class="el-icon-plus"></i>-->
  87. <!-- <div slot="file" slot-scope="{ file }">-->
  88. <!-- <img class="el-upload-list__item-thumbnail" :src="file.url" />-->
  89. <!-- &lt;!&ndash; 放大预览 &ndash;&gt;-->
  90. <!-- <span class="el-upload-list__item-actions">-->
  91. <!-- <span class="el-upload-list__item-preview" @click="handlePictureCardPreview(file)">-->
  92. <!-- <i class="el-icon-zoom-in"></i>-->
  93. <!-- </span>-->
  94. <!-- &lt;!&ndash; 删除图片 &ndash;&gt;-->
  95. <!-- <span v-if="!disabled" class="el-upload-list__item-delete" @click="handleRemove(file)">-->
  96. <!-- <i class="el-icon-delete"></i>-->
  97. <!-- </span>-->
  98. <!-- </span>-->
  99. <!-- </div>-->
  100. <!-- </el-upload>-->
  101. <!-- </el-form-item>-->
  102. <!-- <el-form-item label="底部背景图" prop="websiteUrl">-->
  103. <!-- <el-upload action="#" list-type="picture-card" :limit="1" :auto-upload="true" :http-request="httprequest" :before-upload="beforeupload2" :file-list="fileList2">-->
  104. <!-- <i slot="default" class="el-icon-plus"></i>-->
  105. <!-- <div slot="file" slot-scope="{ file }">-->
  106. <!-- <img class="el-upload-list__item-thumbnail" :src="file.url" />-->
  107. <!-- &lt;!&ndash; 放大预览 &ndash;&gt;-->
  108. <!-- <span class="el-upload-list__item-actions">-->
  109. <!-- <span class="el-upload-list__item-preview" @click="handlePictureCardPreview(file)">-->
  110. <!-- <i class="el-icon-zoom-in"></i>-->
  111. <!-- </span>-->
  112. <!-- &lt;!&ndash; 删除图片 &ndash;&gt;-->
  113. <!-- <span v-if="!disabled" class="el-upload-list__item-delete" @click="handleRemove2(file)">-->
  114. <!-- <i class="el-icon-delete"></i>-->
  115. <!-- </span>-->
  116. <!-- </span>-->
  117. <!-- </div>-->
  118. <!-- </el-upload>-->
  119. <!-- </el-form-item>-->
  120. </el-form>
  121. <div slot="footer" class="dialog-footer">
  122. <el-button type="primary" @click="submitForm">确 定</el-button>
  123. <el-button @click="cancel">取 消</el-button>
  124. </div>
  125. </el-dialog>
  126. <el-dialog :visible.sync="dialogVisible" fullscreen append-to-body @close="dialogVisible = false">
  127. <img width="100%" :src="form.topPicture" alt="" />
  128. </el-dialog>
  129. <el-dialog :visible.sync="dialogVisible2" fullscreen append-to-body @close="dialogVisible2 = false">
  130. <img width="100%" :src="form.bottomPicture" alt="" />
  131. </el-dialog>
  132. </div>
  133. </template>
  134. <script>
  135. import { listWEBSITE, getWEBSITE, delWEBSITE, updateWEBSITE, upload, downloadpic } from '@/api/portal/WEBSITE/WEBSITE';
  136. export default {
  137. name: 'WEBSITE',
  138. data() {
  139. return {
  140. fileList: [],
  141. fileList2: [],
  142. dialogVisible: false,
  143. dialogVisible2: false,
  144. disabled: false,
  145. // 根路径
  146. baseURL: process.env.VUE_APP_BASE_API,
  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. WEBSITEList: [],
  161. // 弹出层标题
  162. title: '',
  163. // 是否显示弹出层
  164. open: false,
  165. // 查询参数
  166. queryParams: {
  167. pageNum: 1,
  168. pageSize: 10,
  169. topPicture: null,
  170. bottomPicture: null,
  171. websiteName: null,
  172. id: null
  173. },
  174. // 表单参数
  175. form: {},
  176. // 表单校验
  177. rules: {
  178. topPicture: [{ required: true, message: '顶部背景图不能为空', trigger: 'blur' }],
  179. bottomPicture: [{ required: true, message: '底部背景图不能为空', trigger: 'blur' }],
  180. websiteName: [{ required: true, message: '网站昵称不能为空', trigger: 'blur' }],
  181. id: [{ required: true, message: '主键id不能为空', trigger: 'blur' }]
  182. }
  183. };
  184. },
  185. created() {
  186. this.getList();
  187. },
  188. methods: {
  189. httprequest() {},
  190. //预览顶部背景图
  191. handlePictureCardPreview(file) {
  192. this.form.topPicture = file.url;
  193. this.dialogVisible = true;
  194. },
  195. //预览底部背景图
  196. handlePictureCardPreview2(file) {
  197. this.form.bottomPicture = file.url;
  198. this.dialogVisible2 = true;
  199. },
  200. //删除顶部背景图
  201. handleRemove(file) {
  202. this.form.topPicture = '';
  203. this.fileList = [];
  204. },
  205. //删除底部背景图
  206. handleRemove2(file) {
  207. this.form.bottomPicture = '';
  208. this.fileList2 = [];
  209. },
  210. //上传顶部背景图
  211. beforeupload(file) {
  212. let formData = new FormData();
  213. formData.append('file', file);
  214. upload(formData).then(res => {
  215. this.form.topPicture = res.fileName;
  216. });
  217. },
  218. //上传底部背景图
  219. beforeupload2(file) {
  220. let formData = new FormData();
  221. formData.append('file', file);
  222. upload(formData).then(res => {
  223. this.form.bottomPicture = res.fileName;
  224. });
  225. },
  226. /** 查询网站管理列表 */
  227. getList() {
  228. this.loading = true;
  229. listWEBSITE(this.queryParams).then(response => {
  230. this.WEBSITEList = response.rows;
  231. this.total = response.total;
  232. this.loading = false;
  233. });
  234. },
  235. // 取消按钮
  236. cancel() {
  237. this.open = false;
  238. this.fileList = [];
  239. this.fileList2 = [];
  240. this.reset();
  241. },
  242. // 表单重置
  243. reset() {
  244. this.form = {
  245. websiteUrl: null,
  246. websiteName: null,
  247. topPicture: null,
  248. bottomPicture: null,
  249. id: null
  250. };
  251. this.fileList = [];
  252. this.resetForm('form');
  253. },
  254. /** 搜索按钮操作 */
  255. handleQuery() {
  256. this.queryParams.pageNum = 1;
  257. this.getList();
  258. },
  259. /** 重置按钮操作 */
  260. resetQuery() {
  261. this.resetForm('queryForm');
  262. this.handleQuery();
  263. },
  264. /** 多选框选中数据 */
  265. handleSelectionChange(selection) {
  266. this.ids = selection.map(item => item.websiteUrl);
  267. this.single = selection.length !== 1;
  268. this.multiple = !selection.length;
  269. },
  270. /** 新增按钮操作 */
  271. handleAdd() {
  272. this.reset();
  273. this.open = true;
  274. this.title = '添加网站管理';
  275. },
  276. /** 修改按钮操作 */
  277. handleUpdate(row) {
  278. this.reset();
  279. const id = row.id || this.ids;
  280. getWEBSITE(id).then(response => {
  281. this.form = response.data;
  282. this.open = true;
  283. this.title = '修改网站管理';
  284. // this.fileList.push({ name: 'xxx', url: this.baseUrl + response.data.topPicture});
  285. // this.fileList2.push({ name: 'xxx', url: this.baseUrl + response.data.bottomPicture});
  286. });
  287. },
  288. /** 提交按钮 */
  289. submitForm() {
  290. this.$refs['form'].validate(valid => {
  291. if (valid) {
  292. updateWEBSITE(this.form).then(response => {
  293. this.$modal.msgSuccess('修改成功');
  294. this.open = false;
  295. this.getList();
  296. });
  297. }
  298. });
  299. },
  300. /** 删除按钮操作 */
  301. handleDelete(row) {
  302. const websitePictures = row.id || this.ids;
  303. this.$modal
  304. .confirm('是否确认删除网站管理编号为"' + websitePictures + '"的数据项?')
  305. .then(function () {
  306. return delWEBSITE(websitePictures);
  307. })
  308. .then(() => {
  309. this.getList();
  310. this.$modal.msgSuccess('删除成功');
  311. })
  312. .catch(() => {});
  313. },
  314. /** 导出按钮操作 */
  315. handleExport() {
  316. this.download(
  317. 'business/WEBSITE/export',
  318. {
  319. ...this.queryParams
  320. },
  321. `WEBSITE_${new Date().getTime()}.xlsx`
  322. );
  323. }
  324. }
  325. };
  326. </script>