RemoteOpc.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397
  1. <template>
  2. <a-card :bordered="false">
  3. <div v-show="visible">
  4. <div class="table-page-search-wrapper" @keyup.enter="handleEnter">
  5. <a-form layout="inline">
  6. <a-row :gutter="48" v-show="advanced">
  7. <a-col :md="6" :sm="24">
  8. <a-form-item label="关键字">
  9. <a-input v-model="queryParam.keyword" placeholder="请输入名称/类型名称" />
  10. </a-form-item>
  11. </a-col>
  12. <a-col :md="6" :sm="24">
  13. <a-form-item label="是否模拟量">
  14. <a-select v-model="queryParam.avFlag" placeholder="请选择">
  15. <a-select-option
  16. v-for="(label,value) in yesNoMap"
  17. :key="value"
  18. :label="label"
  19. :value="parseInt(value)">{{ label }}
  20. </a-select-option>
  21. </a-select>
  22. </a-form-item>
  23. </a-col>
  24. <a-col :md="6" :sm="24">
  25. <a-form-item label="opc服务端是否创建">
  26. <a-select v-model="queryParam.createdFlag" placeholder="请选择">
  27. <a-select-option
  28. v-for="(label,value) in yesNoMap"
  29. :key="value"
  30. :label="label"
  31. :value="parseInt(value)">{{ label }}
  32. </a-select-option>
  33. </a-select>
  34. </a-form-item>
  35. </a-col>
  36. </a-row>
  37. <a-row :gutter="48">
  38. <a-col :md="24 || 24" :sm="24" style="text-align: right">
  39. <span class="table-page-search-submitButtons">
  40. <a-button type="primary" @click="$refs.table.refresh(true)">查询</a-button>
  41. <a-button style="margin-left: 8px" @click="resetSearchForm">重置</a-button>
  42. <a @click="()=>{ this.advanced = !this.advanced}" style="margin-left: 8px">
  43. {{ advanced ? '收起' : '展开' }}
  44. <a-icon :type="advanced ? 'up' : 'down'" />
  45. </a>
  46. </span>
  47. </a-col>
  48. </a-row>
  49. </a-form>
  50. </div>
  51. <div class="table-operator" style="margin-bottom: 8px;">
  52. <a-row>
  53. <a-col :md="16">
  54. <a-button v-if="$auth('remote-opcs-add')" type="primary" icon="plus" @click="handleAdd()">新增</a-button>
  55. <a-button
  56. style="margin-left: 8px"
  57. v-if="$auth('remote-opcs-export')"
  58. type="primary"
  59. icon="download"
  60. @click="doExport">导出
  61. </a-button>
  62. <a-button style="margin-left:8px;" type="primary" @click="doImport">
  63. <a-icon type="upload" />
  64. 新增导入
  65. </a-button>
  66. <a-dropdown v-action:edit v-if="selectedRowKeys.length > 0 && $auth('remote-opcs-del')">
  67. <a-menu slot="overlay">
  68. <a-popconfirm title="是否要删除所选数据?" @confirm="batchDelete()">
  69. <a-menu-item key="1">
  70. <a-icon type="delete" />
  71. <a>删除</a>
  72. </a-menu-item>
  73. </a-popconfirm>
  74. <a-popconfirm title="是否要删除所选数据?" @confirm="update(1, 1)">
  75. <a-menu-item key="1">
  76. <a-icon />
  77. <a>模拟量</a>
  78. </a-menu-item>
  79. </a-popconfirm>
  80. <a-popconfirm title="是否要删除所选数据?" @confirm="update(1, 0)">
  81. <a-menu-item key="1">
  82. <a-icon />
  83. <a>数字量</a>
  84. </a-menu-item>
  85. </a-popconfirm>
  86. <a-popconfirm title="是否要删除所选数据?" @confirm="update(2, 1)">
  87. <a-menu-item key="1">
  88. <a-icon />
  89. <a>OPC server已配置</a>
  90. </a-menu-item>
  91. </a-popconfirm>
  92. <a-popconfirm title="是否要删除所选数据?" @confirm="update(2, 0)">
  93. <a-menu-item key="1">
  94. <a-icon />
  95. <a>OPC server未配置</a>
  96. </a-menu-item>
  97. </a-popconfirm>
  98. </a-menu>
  99. <a-button style="margin-left: 8px">
  100. 批量操作
  101. <a-icon type="down" />
  102. </a-button>
  103. </a-dropdown>
  104. </a-col>
  105. </a-row>
  106. </div>
  107. <s-table
  108. ref="table"
  109. size="default"
  110. rowKey="id"
  111. :columns="columns"
  112. :data="loadData"
  113. :alert="options.alert"
  114. :rowSelection="options.rowSelection"
  115. showPagination="auto"
  116. >
  117. <span slot="action" slot-scope="record">
  118. <template>
  119. <a @click="handleView(record)">查看</a>
  120. <operation-button
  121. v-if="$auth('remote-opcs-edit')"
  122. @click="handleEdit(record)"
  123. >修改</operation-button>
  124. <operation-button
  125. v-if="$auth('remote-opcs-del')"
  126. :type="2"
  127. title="是否要删除该条数据?"
  128. @confirm="batchDelete(record.id)">删除</operation-button>
  129. </template>
  130. </span>
  131. </s-table>
  132. </div>
  133. <import-form-add ref="importModal" @ok="handleOk" />
  134. <base-form ref="baseModal" @ok="handleOk" />
  135. <detail ref="detailModal" @ok="handleOk" />
  136. </a-card>
  137. </template>
  138. <script>
  139. import { STable, Ellipsis } from '@/components'
  140. import BaseForm from './modules/BaseForm'
  141. import Detail from './modules/Detail'
  142. import {
  143. getRemoteOpcPage,
  144. deleteRemoteOpcs,
  145. updateRemoteOpcs,
  146. fetchRemoteOpc,
  147. exportRemoteOpc
  148. } from '@/api/remote/opc'
  149. import ImportFormAdd from './modules/ImportFormAdd'
  150. export default {
  151. name: 'RemoteOpcList',
  152. components: {
  153. STable,
  154. Ellipsis,
  155. ImportFormAdd,
  156. BaseForm,
  157. Detail
  158. },
  159. props: {
  160. createdFlag: {
  161. type: Number,
  162. default: 1
  163. }
  164. },
  165. data () {
  166. return {
  167. advanced: false,
  168. visible: true,
  169. map: {},
  170. // 查询参数
  171. queryParam: {
  172. createdFlag: this.createdFlag
  173. },
  174. // 表头
  175. columns: [
  176. {
  177. title: '序号',
  178. dataIndex: 'index',
  179. customRender: (text, record, index) => {
  180. return `${(this.$refs.table.localPagination.current - 1) * this.$refs.table.localPagination.pageSize + index + 1}`
  181. }
  182. },
  183. {
  184. title: '点位',
  185. dataIndex: 'positionNum'
  186. },
  187. {
  188. title: '类型',
  189. dataIndex: 'type',
  190. customRender: (text, record, index) => {
  191. return this.BaseTool.Object.getField(this.map, text)
  192. }
  193. },
  194. {
  195. title: '是否模拟量',
  196. dataIndex: 'avFlag',
  197. customRender: (text, record, index) => {
  198. return this.BaseTool.Object.getField(this.yesNoMap, text)
  199. }
  200. },
  201. {
  202. title: 'opc服务中心是否配置',
  203. dataIndex: 'createdFlag',
  204. customRender: (text, record, index) => {
  205. return this.BaseTool.Object.getField(this.yesNoMap, text)
  206. }
  207. },
  208. {
  209. title: '量程下限',
  210. dataIndex: 'low'
  211. },
  212. {
  213. title: '量程上限',
  214. dataIndex: 'high'
  215. },
  216. {
  217. title: '单位',
  218. dataIndex: 'unit'
  219. },
  220. {
  221. title: '系数',
  222. dataIndex: 'ratio',
  223. customRender: (text, record, index) => {
  224. return this.BaseTool.Amount.formatter(text)
  225. }
  226. },
  227. {
  228. title: '描述',
  229. dataIndex: 'description'
  230. },
  231. {
  232. title: '备注',
  233. dataIndex: 'remark'
  234. },
  235. {
  236. title: '操作',
  237. key: 'action',
  238. width: '200px',
  239. align: 'center',
  240. scopedSlots: { customRender: 'action' }
  241. }
  242. ],
  243. // 下拉框map
  244. // 加载数据方法 必须为 Promise 对象
  245. loadData: parameter => {
  246. parameter = {
  247. ...parameter,
  248. ...this.queryParam,
  249. dataScope: {
  250. sortBy: 'desc',
  251. sortName: 'created_time'
  252. }
  253. }
  254. return getRemoteOpcPage(Object.assign(parameter, this.queryParam))
  255. .then(res => {
  256. return res.data
  257. })
  258. },
  259. selectedRowKeys: [],
  260. selectedRows: [],
  261. yesNoMap: {},
  262. options: {
  263. alert: {
  264. show: true,
  265. clear: () => {
  266. this.selectedRowKeys = []
  267. }
  268. },
  269. rowSelection: {
  270. selectedRowKeys: this.selectedRowKeys,
  271. onChange: this.onSelectChange
  272. }
  273. },
  274. optionAlertShow: false
  275. }
  276. },
  277. created () {
  278. // 下拉框map
  279. this.tableOption()
  280. this.map = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.REMOTE_OPC)
  281. this.yesNoMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.YES_NO)
  282. },
  283. methods: {
  284. tableOption () {
  285. if (!this.optionAlertShow) {
  286. this.options = {
  287. alert: {
  288. show: true,
  289. clear: () => {
  290. this.selectedRowKeys = []
  291. }
  292. },
  293. rowSelection: {
  294. selectedRowKeys: this.selectedRowKeys,
  295. onChange: this.onSelectChange,
  296. getCheckboxProps: record => ({
  297. props: {
  298. disabled: false,
  299. name: record.id
  300. }
  301. })
  302. }
  303. }
  304. this.optionAlertShow = true
  305. } else {
  306. this.options = {
  307. alert: false,
  308. rowSelection: null
  309. }
  310. this.optionAlertShow = false
  311. }
  312. },
  313. batchDelete (id) {
  314. let ids = []
  315. if (this.BaseTool.String.isBlank(id)) {
  316. const length = this.selectedRows.length
  317. if (length === 0) {
  318. this.$message.info('请选择要删除的记录')
  319. return
  320. }
  321. ids = this.selectedRows.map(item => item.id)
  322. } else {
  323. ids = [id]
  324. }
  325. deleteRemoteOpcs(ids).then(res => {
  326. this.$message.info('删除成功')
  327. this.handleOk()
  328. this.$refs.table.clearSelected()
  329. })
  330. },
  331. update (updateType, value) {
  332. let ids = []
  333. const length = this.selectedRows.length
  334. if (length === 0) {
  335. this.$message.info('请选择要修改的数据')
  336. return
  337. }
  338. ids = this.selectedRows.map(item => item.id)
  339. updateRemoteOpcs({ updateType: updateType, value: value, ids: ids }).then(res => {
  340. this.handleOk()
  341. })
  342. },
  343. handleAdd () {
  344. const modal = this.$refs.baseModal
  345. modal.base({
  346. ...this.$route.query
  347. })
  348. },
  349. handleEdit (record) {
  350. fetchRemoteOpc({ id: record.id }).then(res => {
  351. const modal = this.$refs.baseModal
  352. modal.base(res.data)
  353. })
  354. },
  355. handleView (record) {
  356. // this.visible = false
  357. fetchRemoteOpc({ id: record.id }).then(res => {
  358. const modal = this.$refs.detailModal
  359. modal.base(res.data)
  360. })
  361. },
  362. handleOk () {
  363. this.visible = true
  364. this.$refs.table.refresh()
  365. },
  366. onSelectChange (selectedRowKeys, selectedRows) {
  367. this.selectedRowKeys = selectedRowKeys
  368. this.selectedRows = selectedRows
  369. },
  370. resetSearchForm () {
  371. this.queryParam = {
  372. createdFlag: this.createdFlag
  373. }
  374. this.$refs.table.refresh(true)
  375. },
  376. doExport () {
  377. const parameter = {
  378. ...this.queryParam
  379. }
  380. exportRemoteOpc(parameter).then(file => {
  381. this.BaseTool.UPLOAD.downLoadExportExcel(file)
  382. })
  383. },
  384. doImport () {
  385. this.$refs.importModal.base()
  386. },
  387. handleEnter () {
  388. this.$refs.table.refresh(true)
  389. }
  390. }
  391. }
  392. </script>