AdminMedicalHistoryList2.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. <template>
  2. <a-card :bordered="false">
  3. <!-- 查询区域 -->
  4. <div class="table-page-search-wrapper">
  5. <a-form layout="inline" @keyup.enter.native="searchQuery">
  6. <a-row :gutter="24">
  7. <a-col :xl="6" :lg="7" :md="8" :sm="24">
  8. <a-form-item label="标题">
  9. <a-input placeholder="请输入标题" v-model="queryParam.sstitle"></a-input>
  10. </a-form-item>
  11. </a-col>
  12. <a-col :xl="6" :lg="7" :md="8" :sm="24">
  13. <a-form-item label="医生姓名">
  14. <a-input placeholder="请输入医生姓名" v-model="queryParam.ssname"></a-input>
  15. </a-form-item>
  16. </a-col>
  17. <a-col :xl="6" :lg="7" :md="8" :sm="24">
  18. <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
  19. <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
  20. <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
  21. <!-- <a @click="handleToggleSearch" style="margin-left: 8px">-->
  22. <!-- {{ toggleSearchStatus ? '收起' : '展开' }}-->
  23. <!-- <a-icon :type="toggleSearchStatus ? 'up' : 'down'"/>-->
  24. <!-- </a>-->
  25. </span>
  26. </a-col>
  27. </a-row>
  28. </a-form>
  29. </div>
  30. <!-- 查询区域-END -->
  31. <!-- 操作按钮区域 -->
  32. <div class="table-operator">
  33. <!-- <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>-->
  34. <a-button type="primary" icon="download" @click="handleExportXls('病例管理')">导出</a-button>
  35. <!-- <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">-->
  36. <!-- <a-button type="primary" icon="import">导入</a-button>-->
  37. <!-- </a-upload>-->
  38. <!-- 高级查询区域 -->
  39. <j-super-query :fieldList="superFieldList" ref="superQueryModal"
  40. @handleSuperQuery="handleSuperQuery"></j-super-query>
  41. <!-- <a-dropdown v-if="selectedRowKeys.length > 0">-->
  42. <!-- <a-menu slot="overlay">-->
  43. <!-- <a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>-->
  44. <!-- </a-menu>-->
  45. <!-- <a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button>-->
  46. <!-- </a-dropdown>-->
  47. </div>
  48. <!-- table区域-begin -->
  49. <div>
  50. <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
  51. <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a
  52. style="font-weight: 600">{{ selectedRowKeys.length }}</a>项
  53. <a style="margin-left: 24px" @click="onClearSelected">清空</a>
  54. </div>
  55. <a-table
  56. ref="table"
  57. size="middle"
  58. :scroll="{x:true}"
  59. bordered
  60. rowKey="id"
  61. :columns="columns"
  62. :dataSource="dataSource"
  63. :pagination="ipagination"
  64. :loading="loading"
  65. :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
  66. class="j-table-force-nowrap"
  67. @change="handleTableChange">
  68. <template slot="htmlSlot" slot-scope="text">
  69. <div v-html="text"></div>
  70. </template>
  71. <template slot="imgSlot" slot-scope="text">
  72. <span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span>
  73. <img v-else :src="getImgView(text)" height="25px" alt=""
  74. style="max-width:80px;font-size: 12px;font-style: italic;" />
  75. </template>
  76. <template slot="fileSlot" slot-scope="text">
  77. <span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
  78. <a-button
  79. v-else
  80. :ghost="true"
  81. type="primary"
  82. icon="download"
  83. size="small"
  84. @click="downloadFile(text)">
  85. 下载
  86. </a-button>
  87. </template>
  88. <span slot="action" slot-scope="text, record">
  89. <!-- <a @click="handleEdit(record)">编辑</a>-->
  90. <a @click="handleDetail(record)">详情</a>
  91. <a-divider type="vertical" />
  92. <!-- v-if="record.isSecondaryUpload =='1'"-->
  93. <a @click="isSecondaryUpload(record.id,'2')">用户需要二次上传</a>
  94. <a-divider type="vertical" />
  95. <a @click="isSecondaryUpload(record.id,'3')">用户不需要二次上传</a>
  96. <!-- <a-dropdown>-->
  97. <!-- <a class="ant-dropdown-link">更多 <a-icon type="down" /></a>-->
  98. <!-- <a-menu slot="overlay">-->
  99. <!-- <a-menu-item>-->
  100. <!-- <a @click="handleDetail(record)">详情</a>-->
  101. <!-- </a-menu-item>-->
  102. <!-- <a-menu-item>-->
  103. <!-- <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">-->
  104. <!-- <a>删除</a>-->
  105. <!-- </a-popconfirm>-->
  106. <!-- </a-menu-item>-->
  107. <!-- </a-menu>-->
  108. <!-- </a-dropdown>-->
  109. </span>
  110. </a-table>
  111. </div>
  112. <admin-medical-history-modal ref="modalForm" @ok="modalFormOk"></admin-medical-history-modal>
  113. </a-card>
  114. </template>
  115. <script>
  116. import '@/assets/less/TableExpand.less'
  117. import { mixinDevice } from '@/utils/mixin'
  118. import { JeecgListMixin } from '@/mixins/JeecgListMixin'
  119. import AdminMedicalHistoryModal from './modules/AdminMedicalHistoryModal2'
  120. import { httpAction } from '@api/manage'
  121. export default {
  122. name: 'AdminMedicalHistoryList2',
  123. mixins: [JeecgListMixin, mixinDevice],
  124. components: {
  125. AdminMedicalHistoryModal
  126. },
  127. data() {
  128. return {
  129. description: '初审通过病例列表',
  130. // 表头
  131. columns: [
  132. {
  133. title: '#',
  134. dataIndex: '',
  135. key: 'rowIndex',
  136. width: 60,
  137. align: 'center',
  138. customRender: function(t, r, index) {
  139. return parseInt(index) + 1
  140. }
  141. },
  142. {
  143. title: '医生账号',
  144. align: 'center',
  145. dataIndex: 'phone'
  146. },
  147. {
  148. title: '医生姓名',
  149. align: 'center',
  150. dataIndex: 'submitterName'
  151. },
  152. {
  153. title: '分类名称',
  154. align: 'center',
  155. dataIndex: 'uploadingName'
  156. },
  157. {
  158. title: '审核人账号',
  159. align: 'center',
  160. dataIndex: 'auditor'
  161. },
  162. {
  163. title: '审核时间',
  164. align: 'center',
  165. dataIndex: 'auditorTime'
  166. },
  167. {
  168. title:'审核备注',
  169. align:"center",
  170. dataIndex: 'remark'
  171. },
  172. {
  173. title: '标题',
  174. align: 'center',
  175. dataIndex: 'title'
  176. },
  177. {
  178. title: '姓名',
  179. align: 'center',
  180. dataIndex: 'name'
  181. },
  182. {
  183. title: '省份',
  184. align: 'center',
  185. dataIndex: 'province'
  186. },
  187. {
  188. title: '城市',
  189. align: 'center',
  190. dataIndex: 'city'
  191. },
  192. {
  193. title: '医院',
  194. align: 'center',
  195. dataIndex: 'hospital'
  196. },
  197. {
  198. title: '病例类型',
  199. align: 'center',
  200. dataIndex: 'caseName'
  201. },
  202. // {
  203. // title:'拍照图片',
  204. // align:"center",
  205. // dataIndex: 'pic',
  206. // scopedSlots: {customRender: 'imgSlot'}
  207. // },
  208. // {
  209. // title:'打码前图片',
  210. // align:"center",
  211. // dataIndex: 'picTwo',
  212. // scopedSlots: {customRender: 'imgSlot'}
  213. // },
  214. // {
  215. // title:'图片识别文字',
  216. // align:"center",
  217. // dataIndex: 'picWordRecognition'
  218. // },
  219. // {
  220. // title:'文件',
  221. // align:"center",
  222. // dataIndex: 'mhFile',
  223. // scopedSlots: {customRender: 'fileSlot'}
  224. // },
  225. // {
  226. // title:'是否通过初审 1没通过 2通过',
  227. // align:"center",
  228. // dataIndex: 'firstTrial_dictText'
  229. // },
  230. // {
  231. // title:'是否二次上传',
  232. // align:"center",
  233. // dataIndex: 'secondaryUpload_dictText'
  234. // },
  235. {
  236. title:'是否需要二次上传',
  237. align:"center",
  238. customRender:function (record) {
  239. if (record.isSecondaryUpload == null){
  240. return "不需要"
  241. }else {
  242. if (record.isSecondaryUpload == "1"){
  243. return "需要"
  244. }
  245. if (record.isSecondaryUpload == "2"){
  246. return "通知过了"
  247. }
  248. if (record.isSecondaryUpload == "3"){
  249. return "不需要"
  250. }
  251. }
  252. }
  253. },
  254. // {
  255. // title:'专家是否通过 0未审理 1没通过 2通过了',
  256. // align:"center",
  257. // dataIndex: 'type_dictText'
  258. // },
  259. {
  260. title: '操作',
  261. dataIndex: 'action',
  262. align: 'center',
  263. fixed: 'right',
  264. width: 147,
  265. scopedSlots: { customRender: 'action' }
  266. }
  267. ],
  268. url: {
  269. list: '/admincasehistory/adminMedicalHistory/list2',
  270. delete: '/admincasehistory/adminMedicalHistory/delete',
  271. deleteBatch: '/admincasehistory/adminMedicalHistory/deleteBatch',
  272. exportXlsUrl: '/admincasehistory/adminMedicalHistory/exportXls2',
  273. importExcelUrl: 'admincasehistory/adminMedicalHistory/importExcel',
  274. edit: 'admincasehistory/adminMedicalHistory/edit'
  275. },
  276. dictOptions: {},
  277. superFieldList: []
  278. }
  279. },
  280. created() {
  281. this.getSuperFieldList()
  282. },
  283. computed: {
  284. importExcelUrl: function() {
  285. return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`
  286. }
  287. },
  288. methods: {
  289. isSecondaryUpload(id,isSecondaryUpload){
  290. httpAction(this.url.edit, {id:id,isSecondaryUpload:isSecondaryUpload}, 'post').then((res) => {
  291. if (res.success) {
  292. this.$message.success(res.message)
  293. this.loadData()
  294. } else {
  295. this.$message.warning(res.message)
  296. }
  297. }).finally(() => {
  298. })
  299. },
  300. initDictConfig() {
  301. },
  302. getSuperFieldList() {
  303. let fieldList = []
  304. fieldList.push({ type: 'string', value: 'phone', text: '提交人账号', dictCode: '' })
  305. fieldList.push({ type: 'string', value: 'uploadingName', text: '分类名称', dictCode: '' })
  306. fieldList.push({ type: 'string', value: 'auditor', text: '审核人账号', dictCode: '' })
  307. fieldList.push({ type: 'datetime', value: 'auditorTime', text: '审核时间' })
  308. fieldList.push({ type: 'string', value: 'title', text: '标题', dictCode: '' })
  309. fieldList.push({ type: 'string', value: 'name', text: '姓名', dictCode: '' })
  310. fieldList.push({ type: 'string', value: 'province', text: '省份', dictCode: '' })
  311. fieldList.push({ type: 'string', value: 'city', text: '城市', dictCode: '' })
  312. fieldList.push({ type: 'string', value: 'hospital', text: '医院', dictCode: '' })
  313. fieldList.push({ type: 'string', value: 'caseName', text: '病例类型', dictCode: '' })
  314. fieldList.push({ type: 'string', value: 'pic', text: '拍照图片', dictCode: '' })
  315. fieldList.push({ type: 'string', value: 'picTwo', text: '打码前图片', dictCode: '' })
  316. fieldList.push({ type: 'Text', value: 'picWordRecognition', text: '图片识别文字', dictCode: '' })
  317. fieldList.push({ type: 'string', value: 'mhFile', text: '文件', dictCode: '' })
  318. fieldList.push({ type: 'string', value: 'firstTrial', text: '是否通过初审', dictCode: 'sftgcs' })
  319. fieldList.push({
  320. type: 'string',
  321. value: 'secondaryUpload',
  322. text: '是否二次上传 1没上传 2上传了',
  323. dictCode: 'sfecsc'
  324. })
  325. fieldList.push({
  326. type: 'string',
  327. value: 'type',
  328. text: '专家是否通过 0未审理 1没通过 2通过了',
  329. dictCode: 'zjsftg'
  330. })
  331. fieldList.push({ type: 'string', value: 'createBy', text: '创建人', dictCode: '' })
  332. fieldList.push({ type: 'datetime', value: 'createTime', text: '创建时间' })
  333. fieldList.push({ type: 'string', value: 'updateBy', text: '更新人', dictCode: '' })
  334. fieldList.push({ type: 'datetime', value: 'updateTime', text: '更新时间' })
  335. this.superFieldList = fieldList
  336. }
  337. }
  338. }
  339. </script>
  340. <style scoped>
  341. @import '~@assets/less/common.less';
  342. </style>