index.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  1. <template>
  2. <div>
  3. <el-dialog
  4. v-loading="loading"
  5. :modal-append-to-body="false"
  6. :visible.sync="visible"
  7. :width="width"
  8. :close-on-click-modal="false"
  9. :before-close="() => {$emit('update:visible', false)}"
  10. title="设备天数修改记录">
  11. <el-button type="success" icon="el-icon-download" size="mini" @click="handleDownload">当前页面导出</el-button>
  12. <div class="app-container">
  13. <el-table
  14. ref="multipleTable"
  15. :data="dataList"
  16. :highlight-current-row="true"
  17. stripe
  18. border
  19. size="mini"
  20. style="width: 100%">
  21. <el-table-column prop="target_id" label="订单编号" align="center" />
  22. <el-table-column prop="battery_sn" label="设备编号" align="center" />
  23. <el-table-column prop="shop_name" label="门店" align="center" />
  24. <el-table-column prop="days" label="天数变动" align="center">
  25. <template slot-scope="scope">
  26. <div>
  27. {{ scope.row.days-0 >0 ? ('+' + scope.row.days) : scope.row.days }}
  28. </div>
  29. </template>
  30. </el-table-column>
  31. <el-table-column prop="target_type" label="状态" align="center">
  32. <template slot-scope="scope">
  33. <div>
  34. <div v-if="scope.row.target_type == 1">充值</div>
  35. <div v-if="scope.row.target_type == 2">用户租赁扣除</div>
  36. <div v-if="scope.row.target_type == 3">用户提前解绑退回</div>
  37. <div v-if="scope.row.target_type == 4">手动绑定电池扣除</div>
  38. <div v-if="scope.row.target_type == 5">增加租赁过期时间</div>
  39. <div v-if="scope.row.target_type == 6">减少租赁过期时间</div>
  40. <div v-if="scope.row.target_type == 7">用户未支付归还</div>
  41. </div>
  42. </template>
  43. </el-table-column>
  44. <el-table-column prop="op_days" label="门店剩余天数" align="center">
  45. <template slot-scope="scope">
  46. <div>
  47. {{ scope.row.after_days }}
  48. </div>
  49. </template>
  50. </el-table-column>
  51. <el-table-column prop="ctime" label="时间" align="center">
  52. <template slot-scope="scope">
  53. <div>
  54. {{ scope.row.ctime == '0' ?'': DateFormat(new Date((scope.row.ctime - 0) * 1000), "yyyy-MM-dd HH:mm:ss") }}
  55. </div>
  56. </template>
  57. </el-table-column>
  58. </el-table>
  59. <pagination
  60. :total="count"
  61. :page.sync="searchForm.page"
  62. :limit.sync="searchForm.limit"
  63. :page-sizes.sync="searchForm.page_sizes"
  64. style="margin: 0;"
  65. @pagination="loadDataList" />
  66. <scrollbar
  67. v-if="$refs.multipleTable&&$refs.multipleTable.layout.scrollX"
  68. ref="scrollbar"
  69. v-model="$refs.multipleTable.bodyWrapper.scrollLeft"
  70. :size="$refs.multipleTable?$refs.multipleTable.layout.bodyWidth:0"
  71. :page="$refs.multipleTable?$refs.multipleTable.$el.offsetWidth:0" />
  72. </div>
  73. </el-dialog>
  74. </div>
  75. </template>
  76. <script>
  77. import {
  78. mapGetters
  79. } from 'vuex'
  80. import {
  81. apiUserDaysHistory
  82. } from '@/api/user'
  83. import {
  84. DateFormat
  85. } from '@/lib'
  86. import LazyTree from '@/components/LazyTree'
  87. import Scrollbar from '@/components/Scrollbar'
  88. import Pagination from '@/components/Pagination' // Secondary package based on el-pagination
  89. export default {
  90. name: 'Invite',
  91. components: {
  92. Pagination,
  93. LazyTree,
  94. Scrollbar
  95. },
  96. props: {
  97. showTime: {
  98. type: Number,
  99. default: 0
  100. },
  101. width: {
  102. type: String,
  103. default: '900px'
  104. },
  105. visible: {
  106. type: Boolean,
  107. default: false
  108. },
  109. shopId: {
  110. type: String,
  111. default: '',
  112. required: true
  113. }
  114. },
  115. data() {
  116. return {
  117. isShow: false,
  118. shop_id: '',
  119. count: 0,
  120. loading: false,
  121. dataList: [],
  122. searchForm: {
  123. is_all_level: 1,
  124. page: 1,
  125. limit: 10,
  126. page_sizes: [10, 30, 50, 200]
  127. }
  128. }
  129. },
  130. computed: {
  131. ...mapGetters([
  132. 'userInfo'
  133. ])
  134. },
  135. watch: {
  136. showTime() {
  137. this.loadDataList()
  138. },
  139. shopId: {
  140. deep: true,
  141. handler(val) {
  142. this.searchForm.page = 1
  143. if (val) {
  144. this.shop_id = val
  145. this.loadDataList()
  146. }
  147. }
  148. }
  149. },
  150. created() {
  151. this.DateFormat = DateFormat
  152. },
  153. mounted() {},
  154. beforeDestroy() {},
  155. methods: {
  156. loadDataList() {
  157. this.searchForm.is_all_level = 1
  158. this.searchForm.shop_id = this.shop_id
  159. this.searchForm.time = new Date().getTime()
  160. apiUserDaysHistory(this.searchForm).then(response => {
  161. if (response.data.code === 200) {
  162. this.dataList = response.data.data.list
  163. this.count = response.data.data.total - 0
  164. this.$forceUpdate()
  165. console.log(this.dataList)
  166. } else {
  167. this.$message.error(response.data.msg)
  168. }
  169. this.loading = false
  170. })
  171. },
  172. handleDownload() {
  173. this.downloadLoading = true
  174. import('@/vendor/Export2Excel').then(excel => {
  175. const tHeader = ['订单编号', '设备编号', '门店', '天数变动', '状态', '门店剩余天数', '时间']
  176. const filterVal = ['target_id', 'battery_sn', 'shop_name', 'days', 'target_type', 'after_days', 'ctime']
  177. const list = this.dataList
  178. const data = this.formatJson(filterVal, list)
  179. excel.export_json_to_excel({
  180. header: tHeader,
  181. data,
  182. filename: '设备天数修改记录',
  183. autoWidth: this.autoWidth
  184. })
  185. this.downloadLoading = false
  186. })
  187. },
  188. formatJson(filterVal, jsonData) {
  189. return jsonData.map(v => filterVal.map(j => {
  190. if (j === 'target_type') {
  191. var target_mark = ''
  192. if (v['target_type'] === 1) {
  193. target_mark = '充值'
  194. }
  195. if (v['target_type'] === 2) {
  196. target_mark = '用户租赁扣除'
  197. }
  198. if (v['target_type'] === 3) {
  199. target_mark = '用户提前解绑退回'
  200. }
  201. if (v['target_type'] === 4) {
  202. target_mark = '手动绑定电池扣除'
  203. }
  204. if (v['target_type'] === 5) {
  205. target_mark = '增加租赁过期时间'
  206. }
  207. if (v['target_type'] === 6) {
  208. target_mark = '减少租赁过期时间'
  209. }
  210. if (v['target_type'] === 7) {
  211. target_mark = '用户未支付归还'
  212. }
  213. return target_mark
  214. } else if (j === 'ctime') {
  215. return this.DateFormat(new Date(v[j] * 1000), 'yyyy-MM-dd HH:mm:ss')
  216. } else {
  217. return v[j]
  218. }
  219. }))
  220. }
  221. }
  222. }
  223. </script>
  224. <style scoped>
  225. .label_title {
  226. width: 70px;
  227. margin-left: 10px;
  228. }
  229. .top {
  230. margin-top: 10px;
  231. }
  232. </style>