index.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. <template>
  2. <div class="dashboard-container">
  3. <div class="demo-input-size">
  4. <el-input
  5. v-model="deviceCode"
  6. size="mini"
  7. placeholder="请输入设备编号"
  8. />
  9. <el-input
  10. v-model="deviceType"
  11. size="mini"
  12. placeholder="请输入设备型号"
  13. />
  14. <el-input
  15. v-model="region"
  16. size="mini"
  17. placeholder="请输入设备地区"
  18. />
  19. <el-input
  20. v-model="address"
  21. size="mini"
  22. placeholder="请输入设备地址"
  23. />
  24. <el-date-picker
  25. v-model="gmtCreated"
  26. size="mini"
  27. type="date"
  28. placeholder="选择设备安装日期"
  29. format="yyyy 年 MM 月 dd 日"
  30. value-format="timestamp"
  31. />
  32. <el-button type="primary" size="mini" style="float: right;" @click="search">查询</el-button>
  33. </div>
  34. <el-table
  35. :data="deviceData"
  36. style="width: 100%"
  37. >
  38. <el-table-column
  39. label="设备安装时间"
  40. prop="gmtCreated"
  41. />
  42. <el-table-column
  43. label="设备编号"
  44. prop="deviceCode"
  45. />
  46. <el-table-column
  47. label="设备尺寸"
  48. prop="deviceSize"
  49. />
  50. <el-table-column
  51. label="设备型号"
  52. prop="deviceType"
  53. />
  54. <el-table-column
  55. label="设备地区"
  56. prop="region"
  57. />
  58. <el-table-column
  59. label="设备地址"
  60. prop="address"
  61. />
  62. <el-table-column
  63. align="right"
  64. >
  65. <template slot-scope="scope">
  66. <el-button
  67. v-show="type === '0'"
  68. size="mini"
  69. style="float: left; margin: 0 10px 0 0;"
  70. @click="handleInstall(scope.$index, scope.row)"
  71. >
  72. 安装信息
  73. </el-button>
  74. <el-button
  75. size="mini"
  76. style="float: left; margin: 0 10px 0 0;"
  77. @click="handleMaintainMessage(scope.$index, scope.row)"
  78. >
  79. 维护信息
  80. </el-button>
  81. <el-button
  82. v-show="type === '2'"
  83. size="mini"
  84. style="float: left; margin: 0 10px 0 0;"
  85. @click="handleMaintain(scope.$index, scope.row)"
  86. >
  87. 立即维护
  88. </el-button>
  89. <el-button
  90. v-show="type === '0'"
  91. size="mini"
  92. style="float: left; margin: 0 10px 0 0;"
  93. @click="handleUse(scope.$index, scope.row)"
  94. >
  95. 使用日志
  96. </el-button>
  97. </template>
  98. </el-table-column>
  99. </el-table>
  100. <el-dialog :title="gridTile" :visible.sync="dialogTableVisible">
  101. <el-table :data="gridData">
  102. <el-table-column
  103. v-for="item in information"
  104. :key="item.label"
  105. :label="item.label"
  106. :prop="item.type"
  107. />
  108. </el-table>
  109. </el-dialog>
  110. <el-dialog
  111. title="安装信息"
  112. :visible.sync="dialogVisible"
  113. width="60%"
  114. >
  115. <div class="install">
  116. 安装日期: {{ gridData.length > 0 ? gridData[0].deviceLog.gmtCreated : '' }}
  117. </div>
  118. <div class="install">
  119. 安装人员: {{ gridData.length > 0 ? gridData[0].deviceModifier.name : '' }}
  120. </div>
  121. <div class="install">
  122. 安装地区: {{ gridData.length > 0 ? gridData[0].deviceLog.region : '' }}
  123. </div>
  124. <div class="install">
  125. 安装地址: {{ gridData.length > 0 ? gridData[0].deviceLog.address : '' }}
  126. </div>
  127. <div class="install">
  128. 备注信息: {{ gridData.length > 0 ? gridData[0].deviceLog.description : '' }}
  129. </div>
  130. </el-dialog>
  131. <el-dialog title="立即维护" :visible.sync="dialogFormVisible">
  132. <el-form :model="solveForm" label-width="80px">
  133. <el-form-item label="解决方案">
  134. <el-input v-model="solveForm.description" type="textarea" />
  135. </el-form-item>
  136. </el-form>
  137. <div slot="footer" class="dialog-footer">
  138. <el-button @click="dialogFormVisible = false">取 消</el-button>
  139. <el-button type="primary" @click="handSolve">确 定</el-button>
  140. </div>
  141. </el-dialog>
  142. </div>
  143. </template>
  144. <script>
  145. import { mapGetters } from 'vuex'
  146. import { getToken, getType } from '@/utils/auth'
  147. export default {
  148. name: 'Device',
  149. data() {
  150. return {
  151. dialogTableVisible: false,
  152. dialogVisible: false,
  153. gridData: [],
  154. gridTile: '',
  155. type: getType(),
  156. uid: getToken(),
  157. information: [],
  158. deviceCode: '',
  159. deviceType: '',
  160. region: '',
  161. address: '',
  162. gmtCreated: '',
  163. dialogFormVisible: false,
  164. solveForm: {
  165. deviceCode: '',
  166. deviceId: '',
  167. opType: 'MODIFIED',
  168. description: ''
  169. }
  170. }
  171. },
  172. computed: {
  173. ...mapGetters(['deviceData'])
  174. },
  175. created() {
  176. console.log(111, this.type)
  177. if (this.type === '2') {
  178. this.$store.dispatch('admin/getDeviceData', {
  179. modifier: this.uid
  180. })
  181. } else {
  182. this.$store.dispatch('admin/getDeviceData')
  183. }
  184. },
  185. methods: {
  186. search() {
  187. if (this.type === '2') {
  188. this.$store.dispatch('admin/getDeviceData', {
  189. deviceCode: this.deviceCode,
  190. deviceType: this.deviceType,
  191. region: this.region,
  192. address: this.address,
  193. gmtCreated: this.gmtCreated,
  194. modifier: this.uid
  195. })
  196. } else {
  197. this.$store.dispatch('admin/getDeviceData', {
  198. deviceCode: this.deviceCode,
  199. deviceType: this.deviceType,
  200. region: this.region,
  201. address: this.address,
  202. gmtCreated: this.gmtCreated
  203. })
  204. }
  205. },
  206. handleInstall(index, row) {
  207. this.$store.dispatch('admin/queryLogData', {
  208. deviceId: row.id,
  209. deviceCode: row.deviceCode,
  210. opType: 'INSTALL'
  211. }).then(() => {
  212. this.gridData = this.$store.getters.logData
  213. // this.gridData.push(row)
  214. this.dialogVisible = true
  215. })
  216. },
  217. handleMaintainMessage(index, row) {
  218. this.$store.dispatch('admin/queryLogData', {
  219. deviceId: row.id,
  220. deviceCode: row.deviceCode,
  221. opType: 'MODIFIED'
  222. }).then(() => {
  223. this.gridData = this.$store.getters.logData
  224. this.gridTile = '维护信息'
  225. this.information = [{
  226. label: '报修日期',
  227. type: 'deviceLog[gmtCreated]'
  228. }, {
  229. label: '维护人员',
  230. type: 'deviceModifier[name]'
  231. }, {
  232. label: '申请人员',
  233. type: 'deviceLog[gmtCreated]'
  234. }, {
  235. label: '解决日期',
  236. type: 'deviceLog[gmtCreated]'
  237. }, {
  238. label: '解决方案',
  239. type: 'deviceLog[description]'
  240. }]
  241. this.dialogTableVisible = true
  242. })
  243. },
  244. handleMaintain(index, row) {
  245. this.solveForm.deviceCode = row.deviceCode
  246. this.solveForm.deviceId = row.id
  247. this.dialogFormVisible = true
  248. },
  249. handleUse(index, row) {
  250. console.log(index, row)
  251. this.$store.dispatch('admin/queryLogData', {
  252. deviceId: row.id,
  253. deviceCode: row.deviceCode,
  254. opType: 'USE'
  255. }).then(() => {
  256. this.gridData = this.$store.getters.logData
  257. // this.gridData.push(row)
  258. this.gridTile = '使用日志'
  259. this.information = [{
  260. label: '设备连接时间',
  261. type: 'deviceLog[gmtCreated]'
  262. }, {
  263. label: '设备连接日期',
  264. type: 'deviceModifier[name]'
  265. }]
  266. this.dialogTableVisible = true
  267. })
  268. // this.gridData = []
  269. // this.gridData.push(row)
  270. // this.gridTile = '使用日志'
  271. // this.dialogTableVisible = true
  272. },
  273. handSolve() {
  274. this.$store.dispatch('install/addDeviceLog', this.solveForm)
  275. this.dialogFormVisible = false
  276. }
  277. }
  278. }
  279. </script>
  280. <style lang="scss" scoped>
  281. .dashboard {
  282. &-container {
  283. margin: 30px;
  284. }
  285. &-text {
  286. font-size: 30px;
  287. line-height: 46px;
  288. }
  289. }
  290. .el-input {
  291. width: auto;
  292. }
  293. .install {
  294. margin-bottom: 10px;
  295. }
  296. </style>