DetailSbCheck.vue 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. <template>
  2. <div v-show="visible">
  3. <a-row :gutter="48" slot="extra">
  4. <a-col :md="48" :sm="48">
  5. <span class="table-page-search-submitButtons" style="float: right">
  6. <a-button style="margin-left: 8px" @click="handleCancel()">返回</a-button>
  7. </span>
  8. </a-col>
  9. </a-row>
  10. <title-divider title="设备信息" width="90px"></title-divider>
  11. <detail-list title="" :col="3">
  12. <detail-list-item term="设备新号">{{ model.no }}</detail-list-item>
  13. <detail-list-item term="设备型号">{{ model.model }}</detail-list-item>
  14. <detail-list-item term="设备名称">{{ model.name }}</detail-list-item>
  15. <detail-list-item term="检定日期">{{ model.checkDate }}</detail-list-item>
  16. <detail-list-item term="检定周期">{{ model.checkPeriod }}个月</detail-list-item>
  17. <detail-list-item term="检定有效期">{{ model.nextCheckDate }}</detail-list-item>
  18. <!-- <detail-list-item term="准确度等级">{{ model.fdjxh }}</detail-list-item>-->
  19. <detail-list-item term="预警天数">{{ model.seatNumber }}天</detail-list-item>
  20. <!-- <detail-list-item term="管理状态"> <badge
  21. :status="DictCache.COLOR.SB_MEASURE_STATUS[model.status]"
  22. :text="statusMap[model.status]" /></detail-list-item>-->
  23. </detail-list>
  24. <title-divider title="检定信息" width="90px"></title-divider>
  25. <div class="table-operator" style="margin-bottom: 8px;">
  26. <a-button type="primary" @click="handleAdd">
  27. <a-icon type="plus"/>
  28. 添加
  29. </a-button>
  30. </div>
  31. <a-table
  32. :data-source="data"
  33. :columns="columns"
  34. tableLayout="auto"
  35. rowKey="id">
  36. <span slot="action" slot-scope="record">
  37. <template>
  38. <a v-if="$auth('sb-infos-edit')" @click="handleView(record)">查看</a>
  39. <a-divider type="vertical" />
  40. <a v-if="$auth('sb-infos-edit')" @click="handleEdit(record)">修改</a>
  41. <a-divider type="vertical" />
  42. <a-popconfirm v-if="$auth('sb-infos-del')" title="是否要删除该条数据?" @confirm="batchDelete(record.id)">
  43. <a>删除</a>
  44. </a-popconfirm>
  45. </template>
  46. </span>
  47. </a-table>
  48. <base-form ref="baseModal" :type="1" @ok="handleOk"/>
  49. <base-form-insert ref="baseModalInsert" @ok="handleOk"/>
  50. <detail ref="detailModal"/>
  51. </div>
  52. </template>
  53. <script>
  54. import DetailList from '@/components/tools/DetailList'
  55. import {
  56. queryCheckStandard,
  57. deleteCheckStandards,
  58. exportCheckStandard,
  59. fetchCheckStandard
  60. } from '@/api/sb/measurelog'
  61. import BaseForm from './BaseForm'
  62. import BaseFormInsert from './BaseFormInsert'
  63. import Detail from './Detail'
  64. import { fetchSbInfo } from '@/api/sb/info'
  65. const DetailListItem = DetailList.Item
  66. export default {
  67. name: 'DetailSbMeasure',
  68. components: {
  69. DetailList,
  70. DetailListItem,
  71. BaseForm,
  72. Detail,
  73. BaseFormInsert
  74. },
  75. props: {
  76. },
  77. data () {
  78. return {
  79. confirmLoading: false,
  80. mdl: {},
  81. model: {
  82. 'id': null,
  83. 'modelId': null,
  84. 'no': null,
  85. 'zbh': null,
  86. 'name': null,
  87. 'nameModel': null,
  88. 'unit': null,
  89. 'level': null,
  90. 'useType': null
  91. },
  92. modalTitle: null,
  93. visible: false,
  94. typeMap: {},
  95. statusMap: {},
  96. // 表头
  97. columns: [
  98. {
  99. title: '序号',
  100. dataIndex: 'index',
  101. customRender: (text, record, index) => {
  102. return index + 1
  103. }
  104. },
  105. {
  106. title: '检定单号',
  107. dataIndex: 'no'
  108. },
  109. {
  110. title: '检定人',
  111. dataIndex: 'name'
  112. },
  113. {
  114. title: '检定单位',
  115. dataIndex: 'requirement'
  116. },
  117. {
  118. title: '检定日期',
  119. dataIndex: 'lastDate'
  120. },
  121. {
  122. title: '操作',
  123. key: 'action',
  124. checked: true,
  125. align: 'center',
  126. // fixed: 'right',
  127. scopedSlots: { customRender: 'action' }
  128. }
  129. ],
  130. data: []
  131. }
  132. },
  133. created () {
  134. // 下拉框map
  135. this.typeMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.CHECK_STANDARD_TYPE)
  136. this.statusMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SB_MEASURE_STATUS)
  137. this.actionTypeMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.CHECK_PLAN_ACTION_TYPE)
  138. },
  139. methods: {
  140. base (record) {
  141. this.visible = true
  142. this.model = record
  143. this.modalTitle = '详情2'
  144. queryCheckStandard({ sbId: record.id }).then(res => {
  145. this.data = res.data
  146. })
  147. },
  148. handleOk () {
  149. queryCheckStandard({ sbId: this.model.id }).then(res => {
  150. this.data = res.data
  151. })
  152. fetchSbInfo({ id: this.model.id }).then(res => {
  153. this.model = res.data
  154. })
  155. },
  156. handleAdd () {
  157. const modal = this.$refs.baseModal
  158. modal.base(null, this.model)
  159. },
  160. handleView (record) {
  161. fetchCheckStandard({ id: record.id }).then(res => {
  162. const modal = this.$refs.detailModal
  163. res.data.partName = record.partName
  164. modal.base(res.data)
  165. })
  166. },
  167. handleEdit (record) {
  168. fetchCheckStandard({ id: record.id }).then(res => {
  169. const modal = this.$refs.baseModal
  170. modal.base(res.data)
  171. })
  172. },
  173. handleCopy (record) {
  174. const modal = this.$refs.baseModal
  175. const data = record
  176. data.id = null
  177. modal.base(data)
  178. },
  179. handleGenerate (record) {
  180. const modal = this.$refs.baseModalInsert
  181. modal.base(null, record.id)
  182. },
  183. handleCancel () {
  184. this.visible = false
  185. this.confirmLoading = false
  186. this.$emit('ok')
  187. },
  188. batchDelete (id) {
  189. let ids = []
  190. if (this.BaseTool.String.isBlank(id)) {
  191. if (length === 0) {
  192. this.$message.info('请选择要删除的记录')
  193. return
  194. }
  195. ids = this.selectedRows.map(item => item.id)
  196. } else {
  197. ids = [id]
  198. }
  199. deleteCheckStandards(ids).then(res => {
  200. this.$message.info('删除成功')
  201. this.handleOk()
  202. })
  203. },
  204. doExport () {
  205. const parameter = {
  206. ...this.queryParam
  207. }
  208. parameter.modelId = this.model.id
  209. exportCheckStandard(parameter).then(file => {
  210. this.BaseTool.UPLOAD.downLoadExportExcel(file)
  211. })
  212. }
  213. /* handleSbSelect () {
  214. this.$refs.sbInfoSelectModal.base()
  215. },
  216. handleSbSelectd (keys, rows) {
  217. const [ key ] = keys
  218. const [ row ] = rows
  219. // 日期处理
  220. copy({ sbId: this.model.id, copySbId: row.id })
  221. .then((response) => {
  222. this.$message.info(response.data)
  223. this.handleOk()
  224. }).catch(() => {
  225. this.confirmLoading = false
  226. })
  227. } */
  228. }
  229. }
  230. </script>