Nav apraksta

index.vue 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  1. <template>
  2. <div class="app-container">
  3. <div class="filter-container" style="margin-bottom:20px">
  4. <el-input style="width: 200px;" class="filter-item" placeholder="所属桥梁编号" v-model="listQuery.bcode">
  5. </el-input>
  6. <el-input style="width: 200px;" class="filter-item" placeholder="服务器编号" v-model="listQuery.code">
  7. </el-input>
  8. <el-button v-waves class="filter-item" style="margin-left: 10px;" @click="handleFilter" type="primary" icon="el-icon-search">查找</el-button>
  9. <el-button v-waves class="filter-item" style="margin-left: 10px;" @click="handleCreate" type="primary" icon="el-icon-edit">添加服务器</el-button>
  10. </div>
  11. <el-table :key='tableKey' :data="list" v-loading="listLoading" border fit highlight-current-row
  12. style="width: 100%;min-height:550px;">
  13. <el-table-column width="150px" align="center" label="服务器编号" prop="code"></el-table-column>
  14. <el-table-column width="150px" align="center" label="采集盒数量" prop="devices"></el-table-column>
  15. <el-table-column min-width="150px" align="center" label="所属桥梁" prop="bridgeName"></el-table-column>
  16. <el-table-column min-width="200px" align="center" label="备注信息" prop="remark"></el-table-column>
  17. <el-table-column align="center" label="操作" width="230" class-name="small-padding fixed-width">
  18. <template slot-scope="scope">
  19. <el-button v-waves type="primary" size="mini" @click="handleUpdate(scope.row)">编辑</el-button>
  20. <el-button v-waves size="mini" type="danger" @click="handleModifyStatus(scope.row,'deleted')">删除
  21. </el-button>
  22. </template>
  23. </el-table-column>
  24. </el-table>
  25. <el-dialog title="采集服务器配置" ref="ruleForm" :visible.sync="dialogTableVisible" width="860px" @close='closed'>
  26. <el-form :model="ruleForm2" :rules="rules2" ref="ruleForm2" class="form-main" label-position='right' status-icon>
  27. <el-row>
  28. <el-col :span="12">
  29. <el-form-item label="服务器编号" prop="code">
  30. <el-input placeholder="请输入服务器编号" v-model="ruleForm2.code"></el-input>
  31. </el-form-item>
  32. </el-col>
  33. <el-col :span="12">
  34. <el-form-item label="采集盒数量" prop="devices">
  35. <el-input placeholder="请输入采集盒数量" v-model="ruleForm2.devices"></el-input>
  36. </el-form-item>
  37. </el-col>
  38. <el-col :span="12">
  39. <el-form-item label="所属桥梁" prop="bridge">
  40. <el-autocomplete
  41. v-model="ruleForm2.bridge"
  42. :fetch-suggestions="querySearchAsync"
  43. placeholder="请选择所属桥梁"
  44. @select="handleSelect">
  45. </el-autocomplete>
  46. </el-form-item>
  47. </el-col>
  48. <el-col :span="12">
  49. <el-form-item label="内部编号" prop="seq">
  50. <el-input placeholder="请输入内部编号" v-model="ruleForm2.seq"></el-input>
  51. </el-form-item>
  52. </el-col>
  53. <el-col :span="24" >
  54. <el-form-item label="备注" prop="remark">
  55. <el-input type="textarea" maxlength=100 v-model="ruleForm2.remark" rows=4></el-input>
  56. </el-form-item>
  57. </el-col>
  58. <el-col :span="24" class="el-btn-col">
  59. <div class="el-btn-col-box">
  60. <el-button v-waves type="primary" @click="submitForm('ruleForm2')">确认</el-button>
  61. <el-button v-waves type="info" @click="resetForm('ruleForm2')">返回</el-button>
  62. </div>
  63. </el-col>
  64. </el-row>
  65. </el-form>
  66. </el-dialog>
  67. <div class="pagination-container" style="text-align:center;">
  68. <el-pagination background @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page="listQuery.pageNo" :page-size="listQuery.pageSize" layout="prev, pager, next, jumper" :total="total">
  69. </el-pagination>
  70. </div>
  71. </div>
  72. </template>
  73. <script>
  74. import { addDevice, updateDevice, deleteDevice, pageQueryDevice, DeviceOfservice, checkDeviceCode, checkDeviceInternalCode } from '@/api/server'
  75. import waves from '@/directive/waves'
  76. import queryBase from '@/utils/queryBase'
  77. export default {
  78. name: 'complexTable',
  79. directives: {
  80. waves
  81. },
  82. data() {
  83. var bridge = (rule, value, callback) => {
  84. const that = this
  85. setTimeout(function() {
  86. if (that.ruleForm2.bridge === '' || that.ruleForm2.bridgeId === '') {
  87. callback(new Error('请选择所属桥梁'))
  88. } else {
  89. callback()
  90. }
  91. }, 300)
  92. }
  93. var seq = (rule, value, callback) => {
  94. if (value === '') {
  95. callback(new Error('请输入内部编号'))
  96. } else {
  97. if (!this.ruleForm2.bridgeId) {
  98. callback('请先选择所属桥梁')
  99. return
  100. }
  101. if (this.edit) {
  102. checkDeviceInternalCode({ seq: value, id: this.edit, bridgeId: this.ruleForm2.bridgeId, active: 1 }).then(response => {
  103. if (response.data) {
  104. callback(new Error('内部编号已存在,请重新输入'))
  105. } else {
  106. callback()
  107. }
  108. })
  109. } else {
  110. checkDeviceInternalCode({ seq: value, bridgeId: this.ruleForm2.bridgeId, active: 1 }).then(response => {
  111. if (response.data) {
  112. callback(new Error('内部编号已存在,请重新输入'))
  113. } else {
  114. callback()
  115. }
  116. })
  117. }
  118. }
  119. }
  120. var code = (rule, value, callback) => {
  121. if (value === '') {
  122. callback(new Error('请输入服务器编号'))
  123. } else {
  124. if (this.edit) {
  125. checkDeviceCode({ code: value, id: this.edit, active: 1 }).then(response => {
  126. if (response.data) {
  127. callback(new Error('服务器编号已存在,请重新输入'))
  128. } else {
  129. callback()
  130. }
  131. })
  132. } else {
  133. checkDeviceCode({ code: value, active: 1 }).then(response => {
  134. if (response.data) {
  135. callback(new Error('服务器编号已存在,请重新输入'))
  136. } else {
  137. callback()
  138. }
  139. })
  140. }
  141. }
  142. }
  143. return {
  144. edit: '',
  145. ruleForm2: {
  146. code: '',
  147. bridge: '',
  148. seq: '',
  149. bridgeId: '',
  150. remark: '',
  151. devices: ''
  152. },
  153. rules2: {
  154. code: [
  155. { required: true, validator: code, trigger: 'blur' }
  156. ],
  157. bridge: [
  158. { required: true, validator: bridge, trigger: 'blur' }
  159. ],
  160. devices: [
  161. { required: true, message: '请输入采集盒数量', trigger: 'blur' }
  162. ],
  163. seq: [
  164. { required: true, validator: seq, trigger: 'blur' }
  165. ]
  166. },
  167. timeout: null,
  168. dialogTableVisible: false,
  169. tableKey: 0,
  170. list: null,
  171. total: null,
  172. listLoading: true,
  173. listQuery: {
  174. bcode: '',
  175. code: '',
  176. active: 1,
  177. pageSize: 10,
  178. pageNo: 1
  179. }
  180. }
  181. },
  182. filters: {
  183. typeFilter(type) {
  184. }
  185. },
  186. created() {
  187. this.getList()
  188. },
  189. methods: {
  190. submitForm(formName) {
  191. const that = this
  192. this.$refs[formName].validate((valid) => {
  193. if (valid) {
  194. if (!this.edit) {
  195. addDevice(this.ruleForm2).then(response => {
  196. if (response.success) {
  197. this.getList()
  198. setTimeout(function() {
  199. that.pop('已成功添加服务器')
  200. }, 1000)
  201. this.resetForm('ruleForm2')
  202. this.dialogTableVisible = false
  203. }
  204. }).catch(error => {
  205. console.log(error)
  206. })
  207. } else {
  208. const par = this.ruleForm2
  209. par.id = this.edit
  210. updateDevice(par).then(response => {
  211. if (response.success) {
  212. setTimeout(function() {
  213. that.pop('已成功更新服务器')
  214. }, 1000)
  215. this.resetForm('ruleForm2')
  216. this.getList()
  217. this.dialogTableVisible = false
  218. this.edit = ''
  219. this.ruleForm2 = {
  220. code: '',
  221. bridge: '',
  222. seq: '',
  223. bridgeId: '',
  224. devices: '',
  225. remark: ''
  226. }
  227. }
  228. })
  229. }
  230. }
  231. })
  232. },
  233. resetForm(formName) {
  234. this.dialogTableVisible = false
  235. this.$refs[formName].resetFields()
  236. this.edit = ''
  237. },
  238. closed() {
  239. this.$refs['ruleForm2'].resetFields()
  240. this.edit = ''
  241. },
  242. getList() {
  243. var that = this
  244. this.listLoading = true
  245. pageQueryDevice(this.listQuery).then(response => {
  246. if (response.success) {
  247. const $data = response.data.data
  248. var hdata = { num: 1, data: $data }
  249. for (let i = 0; i < $data.length; i++) {
  250. hdata.num++
  251. const str = $data[i]
  252. queryBase.getBridge(str.bridgeId, function(sc, value) {
  253. if (sc) {
  254. str.bridgeName = value.shortName
  255. hdata.num--
  256. if (hdata.num === 0) {
  257. that.list = hdata.data
  258. }
  259. }
  260. })
  261. }
  262. hdata.num--
  263. if (hdata.num === 0) {
  264. that.list = hdata.data
  265. }
  266. that.total = response.data.total
  267. setTimeout(() => {
  268. that.listLoading = false
  269. }, 1.5 * 1000)
  270. }
  271. })
  272. },
  273. handleFilter() {
  274. this.listQuery.pageNo = 1
  275. this.getList()
  276. },
  277. handleSizeChange(val) {
  278. this.listQuery.pageSize = val
  279. this.getList()
  280. },
  281. handleCurrentChange(val) {
  282. this.listQuery.pageNo = val
  283. this.getList()
  284. },
  285. handleModifyStatus(row, status) {
  286. this.$confirm('确实要删除:服务器' + row.code + '吗?', '提示', {
  287. confirmButtonText: '确定',
  288. cancelButtonText: '取消',
  289. type: 'warning',
  290. center: true
  291. }).then(() => {
  292. deleteDevice({ id: row.id }).then(response => {
  293. if (response.success) {
  294. this.getList()
  295. this.pop('已成功删除该服务器')
  296. }
  297. })
  298. }).catch(() => {
  299. })
  300. },
  301. pop($par) {
  302. this.$confirm($par, '提示', {
  303. confirmButtonText: '确定',
  304. cancelButtonText: '取消',
  305. type: 'success',
  306. showCancelButton: false,
  307. center: true
  308. }).then(() => {
  309. }).catch(() => {
  310. })
  311. },
  312. resetTemp(row) {
  313. this.ruleForm2 = {
  314. code: row.code,
  315. bridge: row.bridgeName,
  316. seq: row.seq,
  317. bridgeId: row.bridgeId,
  318. devices: row.devices,
  319. remark: row.remark
  320. }
  321. this.edit = row.id
  322. },
  323. handleCreate() {
  324. this.dialogTableVisible = true
  325. },
  326. handleUpdate(row) {
  327. const that = this
  328. setTimeout(function() {
  329. that.resetTemp(row)
  330. }, 500)
  331. this.dialogTableVisible = true
  332. },
  333. querySearchAsync(queryString, cb) {
  334. this.ruleForm2.bridgeId = ''
  335. clearTimeout(this.timeout)
  336. this.timeout = setTimeout(() => {
  337. DeviceOfservice({ key: this.ruleForm2.bridge, active: 1 }).then(response => {
  338. const $info = response.data
  339. if ($info.length) {
  340. const $data = $info.map(item => {
  341. return { 'value': item.shortName, 'id': item.id }
  342. })
  343. cb($data)
  344. if ($info.length === 1 && this.ruleForm2.bridge === $info[0].shortName) {
  345. this.ruleForm2.bridgeId = $info[0].id
  346. } else {
  347. this.ruleForm2.bridgeId = ''
  348. }
  349. } else {
  350. cb([])
  351. }
  352. })
  353. }, 3000 * Math.random())
  354. },
  355. handleSelect(item) {
  356. this.ruleForm2.bridgeId = item.id
  357. }
  358. }
  359. }
  360. </script>
  361. <style rel="stylesheet/scss" lang="scss" scoped>
  362. .el-autocomplete{
  363. display: block
  364. }
  365. .el-btn-col{
  366. margin-top: 45px
  367. }
  368. .el-form-item{
  369. margin: 0px 10px
  370. }
  371. .el-select{
  372. width: 100%
  373. }
  374. .el-col{
  375. margin-bottom: 15px
  376. }
  377. .el-form-item__label{
  378. padding: 0px
  379. }
  380. </style>