imgtext.vue 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  1. <template>
  2. <el-card>
  3. <my-breadcrumb level1="模块管理" level2="图文列表"></my-breadcrumb>
  4. <el-button type='success' @click="addimgtextList = true" plain class="common">创建图文列表</el-button>
  5. <el-table
  6. class="tabel"
  7. :data="data"
  8. stripe
  9. border
  10. style="width: 100%">
  11. <el-table-column
  12. label="#"
  13. type="index"
  14. width="50">
  15. </el-table-column>
  16. <el-table-column
  17. prop="Photo"
  18. label="图片路径"
  19. width="300">
  20. </el-table-column>
  21. <el-table-column
  22. prop="Describe"
  23. label="描述内容"
  24. width="300">
  25. </el-table-column>
  26. <el-table-column
  27. prop="Name"
  28. label="标题"
  29. width="200">
  30. </el-table-column>
  31. <el-table-column
  32. label="操作">
  33. <template slot-scope="scope">
  34. <el-button type="primary" icon="el-icon-edit" size="mini" plain @click="openEdit(scope.row)">
  35. </el-button>
  36. <el-button type="danger" icon="el-icon-delete" size="mini" plain @click="handleDelete(scope.row.Id)">
  37. </el-button>
  38. </template>
  39. </el-table-column>
  40. </el-table>
  41. <!-- 分页 -->
  42. <el-pagination
  43. @size-change="handleSizeChange"
  44. @current-change="handleCurrentChange"
  45. :current-page="pagenum"
  46. :page-sizes="[6, 20, 30, 40]"
  47. :page-size="pagesize"
  48. layout="total, sizes, prev, pager, next, jumper"
  49. :total="total">
  50. </el-pagination>
  51. <!-- 添加对话框 -->
  52. <el-dialog
  53. @close="handleEditDialogClose"
  54. title="创建图文列表"
  55. :visible.sync="addimgtextList">
  56. <el-form label-position="right" label-width="80px" :model="formaddimgtextList">
  57. <el-upload
  58. class="anniu"
  59. ref="upload"
  60. action="http://222.35.31.66:28080/imagedescribe"
  61. :on-preview="handlePreview"
  62. :on-remove="handleRemove"
  63. :on-change="handleSuccess"
  64. :auto-upload="false">
  65. <el-button slot="trigger" size="small" type="primary">选取文件</el-button>
  66. </el-upload>
  67. <el-form-item label="描述内容">
  68. <el-input v-model="formaddimgtextList.Describe" auto-complete="off"></el-input>
  69. </el-form-item>
  70. <el-form-item label="标题">
  71. <el-input v-model="formaddimgtextList.Name" auto-complete="off"></el-input>
  72. </el-form-item>
  73. <el-form-item label="序号">
  74. <el-input v-model.numbe="formaddimgtextList.Index" auto-complete="off"></el-input>
  75. </el-form-item>
  76. </el-form>
  77. <div slot="footer" class="dialog-footer">
  78. <el-button @click="addimgtextList = false">取 消</el-button>
  79. <el-button type="primary" @click="handleAdd">确 定</el-button>
  80. </div>
  81. </el-dialog>
  82. <!-- 修改对话框 -->
  83. <el-dialog
  84. @close="handleEditDialogClose"
  85. title="修改图文列表"
  86. :visible.sync="openEidtImgtext">
  87. <el-form
  88. :model="formaddimgtextList"
  89. label-width="100px">
  90. <el-upload
  91. class="anniu"
  92. ref="upload"
  93. action="http://222.35.31.66:28080/imagedescribe"
  94. :on-preview="handlePreview"
  95. :on-remove="handleRemove"
  96. :on-change="handleSuccess"
  97. :auto-upload="false">
  98. <el-button slot="trigger" size="small" type="primary">选取文件</el-button>
  99. </el-upload>
  100. <img :src="formaddimgtextList.Photo" class="pic">
  101. <el-form-item label="描述内容">
  102. <el-input v-model="formaddimgtextList.Describe" auto-complete="off"></el-input>
  103. </el-form-item>
  104. <el-form-item label="标题">
  105. <el-input v-model="formaddimgtextList.Name" auto-complete="off"></el-input>
  106. </el-form-item>
  107. <el-form-item label="序号">
  108. <el-input v-model.numbe="formaddimgtextList.Index" auto-complete="off"></el-input>
  109. </el-form-item>
  110. </el-form>
  111. <div slot="footer" class="dialog-footer">
  112. <el-button @click="openEidtImgtext = false">取 消</el-button>
  113. <el-button type="primary" @click="handleEdit">确 定</el-button>
  114. </div>
  115. </el-dialog>
  116. </el-card>
  117. </template>
  118. <script type="text/javascript">
  119. export default{
  120. data() {
  121. return {
  122. data:[],
  123. pagenum: 1,
  124. pagesize: 6,
  125. searchValue: '',
  126. total: 0,
  127. file: null,
  128. loading: true,
  129. ItextId: -1,
  130. addimgtextList: false,
  131. openEidtImgtext: false,
  132. formaddimgtextList:{
  133. "Photo": '',
  134. "Describe": '',
  135. "Index": '',
  136. "Name":''
  137. }
  138. }
  139. },
  140. created() {
  141. this.loadData();
  142. },
  143. methods: {
  144. // 加载数据
  145. async loadData() {
  146. this.loading = true;
  147. const response = await this.$http.get(`imagedescribe?Page=${this.pagenum}&Pagesize=${this.pagesize}`)
  148. // console.log(response)
  149. if(response.data.Code === 200) {
  150. this.loading = false;
  151. this.data = response.data.Message.TotalList;
  152. this.total = response.data.Message.Total;
  153. } else {
  154. this.$message.error(msg);
  155. }
  156. },
  157. // 分页功能
  158. handleSizeChange(val) {
  159. this.pagesize = val;
  160. this.loadData();
  161. console.log(`每页 ${val} 条`);
  162. },
  163. handleCurrentChange(val) {
  164. this.pagenum = val;
  165. this.loadData();
  166. console.log(`当前页: ${val}`);
  167. },
  168. // 上传图片功能
  169. handleRemove(file, fileList) {
  170. console.log(file, fileList);
  171. },
  172. handlePreview(file) {
  173. console.log(file);
  174. },
  175. handleSuccess (a) {
  176. this.file = a.raw;
  177. },
  178. // 添加图文列表
  179. async handleAdd () {
  180. // 将数据转换成formData格式
  181. const formData = new FormData();
  182. formData.append('Photo', this.file);
  183. formData.append('Index', this.formaddimgtextList.Index);
  184. formData.append('Describe', this.formaddimgtextList.Describe);
  185. formData.append('Name', this.formaddimgtextList.Name);
  186. // 发送请求
  187. const response = await this.$http.post('imagedescribe', formData);
  188. // console.log(response)
  189. if(response.data.Code === 200){
  190. this.$message.success('添加成功');
  191. this.loadData();
  192. for (var key in this.formaddimgtextList) {
  193. this.formaddimgtextList[key] = '';
  194. }
  195. this.addimgtextList = false;
  196. } else {
  197. this.$message.error('添加失败');
  198. }
  199. },
  200. // 删除图文列表
  201. handleDelete(ImgId) {
  202. // 删除提示
  203. this.$confirm('是否要删除该分类?', '提示', {
  204. confirmButtonText: '确定',
  205. cancelButtonText: '取消',
  206. type: 'warning'
  207. }).then(async () => {
  208. // 点击确定按钮
  209. const response = await this.$http.delete(`imagedescribe/${ImgId}`);
  210. // console.log(response)
  211. // 判断是否删除成功
  212. if (response.data.Code === 200) {
  213. this.loadData();
  214. this.$message({
  215. type: 'success',
  216. message: '删除成功!'
  217. });
  218. } else {
  219. this.$message({
  220. type: 'error',
  221. message: '删除失败!'
  222. });
  223. }
  224. }).catch(() => {
  225. // 点击取消按钮
  226. this.$message({
  227. type: 'info',
  228. message: '已取消删除'
  229. });
  230. });
  231. },
  232. // 打开编辑窗口
  233. async openEdit(response) {
  234. // console.log(response)
  235. this.openEidtImgtext = true;
  236. this.ItextId = response.Id;
  237. this.formaddimgtextList.Photo ='http://172.31.1.10:8080/' + response.Photo;
  238. // console.log(this.formaddimgtextList.Photo);
  239. this.formaddimgtextList.Describe = response.Describe;
  240. this.formaddimgtextList.Index = response.Index;
  241. this.formaddimgtextList.Name = response.Name;
  242. },
  243. // 修改图文列表
  244. async handleEdit() {
  245. const formData = new FormData();
  246. formData.append('Photo', this.file);
  247. formData.append('Index', this.formaddimgtextList.Index);
  248. formData.append('Describe', this.formaddimgtextList.Describe);
  249. formData.append('Name', this.formaddimgtextList.Name);
  250. const response = await this.$http.post(`imagedescribe/${this.ItextId}`, formData);
  251. if(response.data.Code === 200) {
  252. this.openEidtImgtext = false;
  253. this.loadData();
  254. for (var key in this.formaddimgtextList) {
  255. this.formaddimgtextList[key] = '';
  256. }
  257. this.$message({
  258. type:'success',
  259. message: '编辑成功'
  260. });
  261. } else {
  262. this.$message({
  263. type:'error',
  264. message: '编辑失败'
  265. })
  266. }
  267. },
  268. // 关闭编辑对话框的时候执行
  269. handleEditDialogClose() {
  270. // 清空表单数据
  271. for (var key in this.formaddimgtextList) {
  272. this.formaddimgtextList[key] = '';
  273. }
  274. },
  275. }
  276. };
  277. </script>
  278. <style type="text/css">
  279. .searchInput{
  280. width: 300px;
  281. margin-top: 10px;
  282. margin-bottom: 10px;
  283. }
  284. .el-table .cell {
  285. white-space: nowrap;
  286. }
  287. .common {
  288. margin: 10px 0;
  289. }
  290. .pic {
  291. margin-bottom: 20px;
  292. }
  293. .pictext {
  294. margin-left: 30px;
  295. }
  296. .anniu {
  297. margin-bottom: 15px;
  298. }
  299. .pic {
  300. width: 200px;
  301. height: 100px;
  302. }
  303. </style>