index.vue.vm 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440
  1. <template>
  2. <div class="app-container">
  3. <el-form :model="queryParams" ref="queryForm" :inline="true" label-width="68px">
  4. #foreach($column in $columns)
  5. #if($column.query)
  6. #set($dictType=$column.dictType)
  7. #set($AttrName=$column.javaField.substring(0,1).toUpperCase() + ${column.javaField.substring(1)})
  8. #set($parentheseIndex=$column.columnComment.indexOf("("))
  9. #if($parentheseIndex != -1)
  10. #set($comment=$column.columnComment.substring(0, $parentheseIndex))
  11. #else
  12. #set($comment=$column.columnComment)
  13. #end
  14. #if($column.htmlType == "input")
  15. <el-form-item label="${comment}" prop="${column.javaField}">
  16. <el-input
  17. v-model="queryParams.${column.javaField}"
  18. placeholder="请输入${comment}"
  19. clearable
  20. size="small"
  21. @keyup.enter.native="handleQuery"
  22. />
  23. </el-form-item>
  24. #elseif(($column.htmlType == "select" || $column.htmlType == "radio") && "" != $dictType)
  25. <el-form-item label="${comment}" prop="${column.javaField}">
  26. <el-select v-model="queryParams.${column.javaField}" placeholder="请选择${comment}" clearable size="small">
  27. <el-option
  28. v-for="dict in ${column.javaField}Options"
  29. :key="dict.dictValue"
  30. :label="dict.dictLabel"
  31. :value="dict.dictValue"
  32. />
  33. </el-select>
  34. </el-form-item>
  35. #elseif(($column.htmlType == "select" || $column.htmlType == "radio") && $dictType)
  36. <el-form-item label="${comment}" prop="${column.javaField}">
  37. <el-select v-model="queryParams.${column.javaField}" placeholder="请选择${comment}" clearable size="small">
  38. <el-option label="请选择字典生成" value="" />
  39. </el-select>
  40. </el-form-item>
  41. #elseif($column.htmlType == "datetime")
  42. <el-form-item label="${comment}" prop="${column.javaField}">
  43. <el-date-picker clearable size="small" style="width: 200px"
  44. v-model="queryParams.${column.javaField}"
  45. type="date"
  46. value-format="yyyy-MM-dd"
  47. placeholder="选择${comment}">
  48. </el-date-picker>
  49. </el-form-item>
  50. <el-form-item>
  51. #end
  52. #end
  53. #end
  54. <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
  55. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
  56. </el-form-item>
  57. </el-form>
  58. <el-row :gutter="10" class="mb8">
  59. <el-col :span="1.5">
  60. <el-button
  61. type="primary"
  62. icon="el-icon-plus"
  63. size="mini"
  64. @click="handleAdd"
  65. v-hasPermi="['${moduleName}:${businessName}:add']"
  66. >新增</el-button>
  67. </el-col>
  68. <el-col :span="1.5">
  69. <el-button
  70. type="success"
  71. icon="el-icon-edit"
  72. size="mini"
  73. :disabled="single"
  74. @click="handleUpdate"
  75. v-hasPermi="['${moduleName}:${businessName}:edit']"
  76. >修改</el-button>
  77. </el-col>
  78. <el-col :span="1.5">
  79. <el-button
  80. type="danger"
  81. icon="el-icon-delete"
  82. size="mini"
  83. :disabled="multiple"
  84. @click="handleDelete"
  85. v-hasPermi="['${moduleName}:${businessName}:remove']"
  86. >删除</el-button>
  87. </el-col>
  88. <el-col :span="1.5">
  89. <el-button
  90. type="warning"
  91. icon="el-icon-download"
  92. size="mini"
  93. @click="handleExport"
  94. v-hasPermi="['${moduleName}:${businessName}:export']"
  95. >导出</el-button>
  96. </el-col>
  97. </el-row>
  98. <el-table v-loading="loading" :data="${businessName}List" @selection-change="handleSelectionChange">
  99. <el-table-column type="selection" width="55" align="center" />
  100. #foreach($column in $columns)
  101. #set($javaField=$column.javaField)
  102. #set($parentheseIndex=$column.columnComment.indexOf("("))
  103. #if($parentheseIndex != -1)
  104. #set($comment=$column.columnComment.substring(0, $parentheseIndex))
  105. #else
  106. #set($comment=$column.columnComment)
  107. #end
  108. #if($column.pk)
  109. <el-table-column label="${comment}" align="center" prop="${javaField}" />
  110. #elseif($column.list && $column.htmlType == "datetime")
  111. <el-table-column label="${comment}" align="center" prop="${javaField}" width="180">
  112. <template slot-scope="scope">
  113. <span>{{ parseTime(scope.row.${javaField}) }}</span>
  114. </template>
  115. </el-table-column>
  116. #elseif($column.list && "" != $column.dictType)
  117. <el-table-column label="${comment}" align="center" prop="${javaField}" :formatter="${javaField}Format" />
  118. #elseif($column.list && "" != $javaField)
  119. <el-table-column label="${comment}" align="center" prop="${javaField}" />
  120. #end
  121. #end
  122. <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
  123. <template slot-scope="scope">
  124. <el-button
  125. size="mini"
  126. type="text"
  127. icon="el-icon-edit"
  128. @click="handleUpdate(scope.row)"
  129. v-hasPermi="['${moduleName}:${businessName}:edit']"
  130. >修改</el-button>
  131. <el-button
  132. size="mini"
  133. type="text"
  134. icon="el-icon-delete"
  135. @click="handleDelete(scope.row)"
  136. v-hasPermi="['${moduleName}:${businessName}:remove']"
  137. >删除</el-button>
  138. </template>
  139. </el-table-column>
  140. </el-table>
  141. <pagination
  142. v-show="total>0"
  143. :total="total"
  144. :page.sync="queryParams.pageNum"
  145. :limit.sync="queryParams.pageSize"
  146. @pagination="getList"
  147. />
  148. <!-- 添加或修改${functionName}对话框 -->
  149. <el-dialog :title="title" :visible.sync="open" width="500px">
  150. <el-form ref="form" :model="form" :rules="rules" label-width="80px">
  151. #foreach($column in $columns)
  152. #set($field=$column.javaField)
  153. #if($column.insert && !$column.pk)
  154. #if(($column.usableColumn) || (!$column.superColumn))
  155. #set($parentheseIndex=$column.columnComment.indexOf("("))
  156. #if($parentheseIndex != -1)
  157. #set($comment=$column.columnComment.substring(0, $parentheseIndex))
  158. #else
  159. #set($comment=$column.columnComment)
  160. #end
  161. #set($dictType=$column.dictType)
  162. #if($column.htmlType == "input")
  163. <el-form-item label="${comment}" prop="${field}">
  164. <el-input v-model="form.${field}" placeholder="请输入${comment}" />
  165. </el-form-item>
  166. #elseif($column.htmlType == "select" && "" != $dictType)
  167. <el-form-item label="${comment}">
  168. <el-select v-model="form.${field}" placeholder="请选择${comment}">
  169. <el-option
  170. v-for="dict in ${field}Options"
  171. :key="dict.dictValue"
  172. :label="dict.dictLabel"
  173. :value="dict.dictValue"
  174. ></el-option>
  175. </el-select>
  176. </el-form-item>
  177. #elseif($column.htmlType == "select" && $dictType)
  178. <el-form-item label="${comment}">
  179. <el-select v-model="form.${field}" placeholder="请选择${comment}">
  180. <el-option label="请选择字典生成" value="" />
  181. </el-select>
  182. </el-form-item>
  183. #elseif($column.htmlType == "radio" && "" != $dictType)
  184. <el-form-item label="${comment}">
  185. <el-radio-group v-model="form.${field}">
  186. <el-radio
  187. v-for="dict in ${field}Options"
  188. :key="dict.dictValue"
  189. :label="dict.dictValue"
  190. >{{dict.dictLabel}}</el-radio>
  191. </el-radio-group>
  192. </el-form-item>
  193. #elseif($column.htmlType == "radio" && $dictType)
  194. <el-form-item label="${comment}">
  195. <el-radio-group v-model="form.${field}">
  196. <el-radio label="1">请选择字典生成</el-radio>
  197. </el-radio-group>
  198. </el-form-item>
  199. #elseif($column.htmlType == "datetime")
  200. <el-form-item label="${comment}" prop="${field}">
  201. <el-date-picker clearable size="small" style="width: 200px"
  202. v-model="form.${field}"
  203. type="date"
  204. value-format="yyyy-MM-dd"
  205. placeholder="选择${comment}">
  206. </el-date-picker>
  207. </el-form-item>
  208. #elseif($column.htmlType == "textarea")
  209. <el-form-item label="${comment}" prop="${field}">
  210. <el-input v-model="form.${field}" type="textarea" placeholder="请输入内容" />
  211. </el-form-item>
  212. </el-form>
  213. #end
  214. #end
  215. #end
  216. #end
  217. </el-form>
  218. <div slot="footer" class="dialog-footer">
  219. <el-button type="primary" @click="submitForm">确 定</el-button>
  220. <el-button @click="cancel">取 消</el-button>
  221. </div>
  222. </el-dialog>
  223. </div>
  224. </template>
  225. <script>
  226. import { list${BusinessName}, get${BusinessName}, del${BusinessName}, add${BusinessName}, update${BusinessName}, export${BusinessName} } from "@/api/${moduleName}/${businessName}";
  227. export default {
  228. data() {
  229. return {
  230. // 遮罩层
  231. loading: true,
  232. // 选中数组
  233. ids: [],
  234. // 非单个禁用
  235. single: true,
  236. // 非多个禁用
  237. multiple: true,
  238. // 总条数
  239. total: 0,
  240. // ${functionName}表格数据
  241. ${businessName}List: [],
  242. // 弹出层标题
  243. title: "",
  244. // 是否显示弹出层
  245. open: false,
  246. #foreach ($column in $columns)
  247. #set($parentheseIndex=$column.columnComment.indexOf("("))
  248. #if($parentheseIndex != -1)
  249. #set($comment=$column.columnComment.substring(0, $parentheseIndex))
  250. #else
  251. #set($comment=$column.columnComment)
  252. #end
  253. #if(${column.dictType} != '')
  254. // $comment字典
  255. ${column.javaField}Options: []#if($velocityCount != $columns.size()),#end
  256. #end
  257. #end
  258. // 查询参数
  259. queryParams: {
  260. pageNum: 1,
  261. pageSize: 10,
  262. #foreach ($column in $columns)
  263. #if($column.query)
  264. $column.javaField: undefined#if($velocityCount != $columns.size()),#end
  265. #end
  266. #end
  267. },
  268. // 表单参数
  269. form: {},
  270. // 表单校验
  271. rules: {
  272. #foreach ($column in $columns)
  273. #if($column.required)
  274. #set($parentheseIndex=$column.columnComment.indexOf("("))
  275. #if($parentheseIndex != -1)
  276. #set($comment=$column.columnComment.substring(0, $parentheseIndex))
  277. #else
  278. #set($comment=$column.columnComment)
  279. #end
  280. #set($comment=$column.columnComment)
  281. studentName: [
  282. { required: true, message: "$comment不能为空", trigger: "blur" }
  283. ]#if($velocityCount != $columns.size()),#end
  284. #end
  285. #end
  286. }
  287. };
  288. },
  289. created() {
  290. this.getList();
  291. #foreach ($column in $columns)
  292. #if(${column.dictType} != '')
  293. this.getDicts("${column.dictType}").then(response => {
  294. this.${column.javaField}Options = response.data;
  295. });
  296. #end
  297. #end
  298. },
  299. methods: {
  300. /** 查询${functionName}列表 */
  301. getList() {
  302. this.loading = true;
  303. list${BusinessName}(this.queryParams).then(response => {
  304. this.${businessName}List = response.rows;
  305. this.total = response.total;
  306. this.loading = false;
  307. });
  308. },
  309. #foreach ($column in $columns)
  310. #if(${column.dictType} != '')
  311. #set($parentheseIndex=$column.columnComment.indexOf("("))
  312. #if($parentheseIndex != -1)
  313. #set($comment=$column.columnComment.substring(0, $parentheseIndex))
  314. #else
  315. #set($comment=$column.columnComment)
  316. #end
  317. // $comment字典翻译
  318. ${column.javaField}Format(row, column) {
  319. return this.selectDictLabel(this.${column.javaField}Options, row.${column.javaField});
  320. },
  321. #end
  322. #end
  323. // 取消按钮
  324. cancel() {
  325. this.open = false;
  326. this.reset();
  327. },
  328. // 表单重置
  329. reset() {
  330. this.form = {
  331. #foreach ($column in $columns)
  332. #if($column.htmlType == "radio")
  333. $column.javaField: "0"#if($velocityCount != $columns.size()),#end
  334. #else
  335. $column.javaField: undefined#if($velocityCount != $columns.size()),#end
  336. #end
  337. #end
  338. };
  339. this.resetForm("form");
  340. },
  341. /** 搜索按钮操作 */
  342. handleQuery() {
  343. this.queryParams.pageNum = 1;
  344. this.getList();
  345. },
  346. /** 重置按钮操作 */
  347. resetQuery() {
  348. this.resetForm("queryForm");
  349. this.handleQuery();
  350. },
  351. // 多选框选中数据
  352. handleSelectionChange(selection) {
  353. this.ids = selection.map(item => item.${pkColumn.javaField})
  354. this.single = selection.length!=1
  355. this.multiple = !selection.length
  356. },
  357. /** 新增按钮操作 */
  358. handleAdd() {
  359. this.reset();
  360. this.open = true;
  361. this.title = "添加${functionName}";
  362. },
  363. /** 修改按钮操作 */
  364. handleUpdate(row) {
  365. this.reset();
  366. const ${pkColumn.javaField} = row.${pkColumn.javaField} || this.ids
  367. get${BusinessName}(${pkColumn.javaField}).then(response => {
  368. this.form = response.data;
  369. this.open = true;
  370. this.title = "修改${functionName}";
  371. });
  372. },
  373. /** 提交按钮 */
  374. submitForm: function() {
  375. this.#[[$]]#refs["form"].validate(valid => {
  376. if (valid) {
  377. if (this.form.${pkColumn.javaField} != undefined) {
  378. update${BusinessName}(this.form).then(response => {
  379. if (response.code === 200) {
  380. this.msgSuccess("修改成功");
  381. this.open = false;
  382. this.getList();
  383. } else {
  384. this.msgError(response.msg);
  385. }
  386. });
  387. } else {
  388. add${BusinessName}(this.form).then(response => {
  389. if (response.code === 200) {
  390. this.msgSuccess("新增成功");
  391. this.open = false;
  392. this.getList();
  393. } else {
  394. this.msgError(response.msg);
  395. }
  396. });
  397. }
  398. }
  399. });
  400. },
  401. /** 删除按钮操作 */
  402. handleDelete(row) {
  403. const ${pkColumn.javaField}s = row.${pkColumn.javaField} || this.ids;
  404. this.$confirm('是否确认删除${functionName}编号为"' + ${pkColumn.javaField}s + '"的数据项?', "警告", {
  405. confirmButtonText: "确定",
  406. cancelButtonText: "取消",
  407. type: "warning"
  408. }).then(function() {
  409. return del${BusinessName}(${pkColumn.javaField}s);
  410. }).then(() => {
  411. this.getList();
  412. this.msgSuccess("删除成功");
  413. }).catch(function() {});
  414. },
  415. /** 导出按钮操作 */
  416. handleExport() {
  417. const queryParams = this.queryParams;
  418. this.$confirm('是否确认导出所有${functionName}数据项?', "警告", {
  419. confirmButtonText: "确定",
  420. cancelButtonText: "取消",
  421. type: "warning"
  422. }).then(function() {
  423. return export${BusinessName}(queryParams);
  424. }).then(response => {
  425. this.download(response.msg);
  426. }).catch(function() {});
  427. }
  428. }
  429. };
  430. </script>