index.vue 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. /* eslint-disable no-duplicate-case */
  2. <template>
  3. <div class="school-container">
  4. <div class="school">
  5. <el-form :inline="true" :model="formInline" class="demo-form-inline">
  6. <el-form-item label="产品名称">
  7. <el-input v-model="formInline.productName" placeholder="产品名称" clearable />
  8. </el-form-item>
  9. <el-form-item>
  10. <el-button type="primary" @click="onSubmit('ruleForm')">查询</el-button>
  11. </el-form-item>
  12. </el-form>
  13. <el-table
  14. :data="getMemberAuthData"
  15. style="width: 100%"
  16. >
  17. <el-table-column
  18. label="用户id"
  19. width="280"
  20. prop="uid"
  21. />
  22. <el-table-column
  23. label="产品名称"
  24. width="280"
  25. prop="productName"
  26. />
  27. <el-table-column
  28. label="开始时间"
  29. width="200"
  30. >
  31. <template slot-scope="scope">
  32. <i class="el-icon-time" />
  33. <span style="margin-left: 10px">{{ newDate(scope.row.startTime) }}</span>
  34. </template>
  35. </el-table-column>
  36. <el-table-column
  37. label="结束时间"
  38. width="200"
  39. >
  40. <template slot-scope="scope">
  41. <i class="el-icon-time" />
  42. <span style="margin-left: 10px">{{ newDate(scope.row.endTime) }}</span>
  43. </template>
  44. </el-table-column>
  45. <el-table-column
  46. label="创建时间"
  47. width="200"
  48. >
  49. <template slot-scope="scope">
  50. <i class="el-icon-time" />
  51. <span style="margin-left: 10px">{{ newDate(scope.row.createTime) }}</span>
  52. </template>
  53. </el-table-column>
  54. <el-table-column
  55. label="修改时间"
  56. width="200"
  57. >
  58. <template slot-scope="scope">
  59. <i class="el-icon-time" />
  60. <span style="margin-left: 10px">{{ newDate(scope.row.updateTime) }}</span>
  61. </template>
  62. </el-table-column>
  63. <el-table-column label="操作">
  64. <template slot-scope="scope">
  65. <el-button
  66. size="mini"
  67. @click="handleEdit(scope.$index, scope.row)"
  68. >修改</el-button>
  69. </template>
  70. </el-table-column>
  71. </el-table>
  72. <el-dialog title="增加天数" :visible.sync="dialogFormVisible">
  73. <el-form ref="ruleForm" :model="form" :rules="rules">
  74. <el-form-item label="产品名称" :label-width="formLabelWidth" prop="title">
  75. <el-input v-model="form.title" autocomplete="off" clearable />
  76. </el-form-item>
  77. <el-form-item label="增加天数" :label-width="formLabelWidth" prop="addDays">
  78. <el-input v-model="form.addDays" autocomplete="off" clearable />
  79. </el-form-item>
  80. </el-form>
  81. <div slot="footer" class="dialog-footer">
  82. <el-button @click="dialogFormVisible = false">取 消</el-button>
  83. <el-button type="primary" @click="handOk('ruleForm')">确 定</el-button>
  84. </div>
  85. </el-dialog>
  86. <!--
  87. <el-pagination
  88. v-if="getMemberOrderData.length > 0"
  89. background
  90. layout="prev, pager, next"
  91. :total="getMemberData.totalSize"
  92. @current-change="handleCurrentChange"
  93. />
  94. -->
  95. </div>
  96. </div>
  97. </template>
  98. <script>
  99. import { mapGetters } from 'vuex'
  100. export default {
  101. data() {
  102. return {
  103. formInline: {
  104. uid: '',
  105. productName: ''
  106. },
  107. page: 1,
  108. formLabelWidth: '120px',
  109. form: {
  110. uid: '',
  111. title: '',
  112. addDays: ''
  113. },
  114. rules: {
  115. title: [{ required: true, message: '请输入产品', trigger: 'blur' }],
  116. addDays: [{ required: true, message: '请输入增加天数', trigger: 'blur' }]
  117. },
  118. dialogFormVisible: false
  119. }
  120. },
  121. created() {
  122. this.$store.dispatch('memberList/getMemberAuthList', {
  123. uid: this.$route.query.uid,
  124. productName: ''
  125. })
  126. },
  127. // eslint-disable-next-line vue/order-in-components
  128. computed: {
  129. ...mapGetters([
  130. 'getMemberAuthData'
  131. ])
  132. },
  133. methods: {
  134. newDate(date) {
  135. return new Date(date * 1).toLocaleString()
  136. },
  137. onSubmit(formName) {
  138. this.formInline.uid = this.$route.query.uid
  139. this.$store.dispatch('memberList/getMemberAuthList', this.formInline)
  140. },
  141. handleEdit(index, row) {
  142. console.log(index, row)
  143. this.dialogFormVisible = true
  144. this.form.uid = row.uid
  145. },
  146. handOk(formName) {
  147. this.$refs[formName].validate((valid) => {
  148. if (valid) {
  149. this.$store.dispatch('memberList/setMemberAuthList', this.form).then(() => {
  150. this.dialogFormVisible = false
  151. this.$store.dispatch('memberList/getMemberAuthList', {
  152. uid: this.$route.query.uid,
  153. productName: ''
  154. })
  155. })
  156. } else {
  157. console.log('error submit!!')
  158. return false
  159. }
  160. })
  161. },
  162. handleCurrentChange(val) {
  163. console.log(val)
  164. this.page = val
  165. this.$store.dispatch('schoolTimetable/getScheduleList', {
  166. page: this.page
  167. })
  168. }
  169. }
  170. }
  171. </script>
  172. <style lang="scss" scoped>
  173. .school {
  174. margin-top: 20px;
  175. }
  176. .el-input {
  177. width: 300px;
  178. }
  179. .el-select>.el-input {
  180. width: 300px;
  181. }
  182. .el-pagination {
  183. text-align: center;
  184. margin-top: 20px;
  185. }
  186. </style>