AdminMedicalHistoryList3.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  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. <!-- <a-dropdown>-->
  93. <!-- <a class="ant-dropdown-link">更多 <a-icon type="down" /></a>-->
  94. <!-- <a-menu slot="overlay">-->
  95. <!-- <a-menu-item>-->
  96. <!-- <a @click="handleDetail(record)">详情</a>-->
  97. <!-- </a-menu-item>-->
  98. <!-- <a-menu-item>-->
  99. <!-- <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">-->
  100. <!-- <a>删除</a>-->
  101. <!-- </a-popconfirm>-->
  102. <!-- </a-menu-item>-->
  103. <!-- </a-menu>-->
  104. <!-- </a-dropdown>-->
  105. </span>
  106. </a-table>
  107. </div>
  108. <admin-medical-history-modal ref="modalForm" @ok="modalFormOk"></admin-medical-history-modal>
  109. </a-card>
  110. </template>
  111. <script>
  112. import '@/assets/less/TableExpand.less'
  113. import { mixinDevice } from '@/utils/mixin'
  114. import { JeecgListMixin } from '@/mixins/JeecgListMixin'
  115. import AdminMedicalHistoryModal from './modules/AdminMedicalHistoryModal3'
  116. export default {
  117. name: 'AdminMedicalHistoryList3',
  118. mixins: [JeecgListMixin, mixinDevice],
  119. components: {
  120. AdminMedicalHistoryModal
  121. },
  122. data() {
  123. return {
  124. description: '专家审核病例列表',
  125. // 表头
  126. columns: [
  127. {
  128. title: '#',
  129. dataIndex: '',
  130. key: 'rowIndex',
  131. width: 60,
  132. align: 'center',
  133. customRender: function(t, r, index) {
  134. return parseInt(index) + 1
  135. }
  136. },
  137. {
  138. title: '医生账号',
  139. align: 'center',
  140. dataIndex: 'phone'
  141. },
  142. {
  143. title: '医生姓名',
  144. align: 'center',
  145. dataIndex: 'submitterName'
  146. },
  147. {
  148. title: '分类名称',
  149. align: 'center',
  150. dataIndex: 'uploadingName'
  151. },
  152. {
  153. title: '审核人账号',
  154. align: 'center',
  155. dataIndex: 'auditor'
  156. },
  157. {
  158. title: '审核时间',
  159. align: 'center',
  160. dataIndex: 'auditorTime'
  161. },
  162. {
  163. title:'审核备注',
  164. align:"center",
  165. dataIndex: 'remark'
  166. },
  167. {
  168. title: '标题',
  169. align: 'center',
  170. dataIndex: 'title'
  171. },
  172. {
  173. title: '姓名',
  174. align: 'center',
  175. dataIndex: 'name'
  176. },
  177. {
  178. title: '省份',
  179. align: 'center',
  180. dataIndex: 'province'
  181. },
  182. {
  183. title: '城市',
  184. align: 'center',
  185. dataIndex: 'city'
  186. },
  187. {
  188. title: '医院',
  189. align: 'center',
  190. dataIndex: 'hospital'
  191. },
  192. {
  193. title: '病例类型',
  194. align: 'center',
  195. dataIndex: 'caseName'
  196. },
  197. // {
  198. // title:'拍照图片',
  199. // align:"center",
  200. // dataIndex: 'pic',
  201. // scopedSlots: {customRender: 'imgSlot'}
  202. // },
  203. // {
  204. // title:'打码前图片',
  205. // align:"center",
  206. // dataIndex: 'picTwo',
  207. // scopedSlots: {customRender: 'imgSlot'}
  208. // },
  209. // {
  210. // title:'图片识别文字',
  211. // align:"center",
  212. // dataIndex: 'picWordRecognition'
  213. // },
  214. // {
  215. // title:'文件',
  216. // align:"center",
  217. // dataIndex: 'mhFile',
  218. // scopedSlots: {customRender: 'fileSlot'}
  219. // },
  220. // {
  221. // title:'是否通过初审 1没通过 2通过',
  222. // align:"center",
  223. // dataIndex: 'firstTrial_dictText'
  224. // },
  225. // {
  226. // title:'是否二次上传 1没上传 2上传了',
  227. // align:"center",
  228. // dataIndex: 'secondaryUpload_dictText'
  229. // },
  230. {
  231. title:'分配专家名称',
  232. align:"center",
  233. dataIndex: 'allocationZjname'
  234. },
  235. {
  236. title:'状态',
  237. align:"center",
  238. dataIndex: 'type_dictText'
  239. },
  240. {
  241. title: '操作',
  242. dataIndex: 'action',
  243. align: 'center',
  244. fixed: 'right',
  245. width: 147,
  246. scopedSlots: { customRender: 'action' }
  247. }
  248. ],
  249. url: {
  250. list: '/admincasehistory/adminMedicalHistory/list3',
  251. delete: '/admincasehistory/adminMedicalHistory/delete',
  252. deleteBatch: '/admincasehistory/adminMedicalHistory/deleteBatch',
  253. exportXlsUrl: '/admincasehistory/adminMedicalHistory/exportXls3',
  254. importExcelUrl: 'admincasehistory/adminMedicalHistory/importExcel'
  255. },
  256. dictOptions: {},
  257. superFieldList: []
  258. }
  259. },
  260. created() {
  261. this.getSuperFieldList()
  262. },
  263. computed: {
  264. importExcelUrl: function() {
  265. return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`
  266. }
  267. },
  268. methods: {
  269. initDictConfig() {
  270. },
  271. getSuperFieldList() {
  272. let fieldList = []
  273. fieldList.push({ type: 'string', value: 'phone', text: '提交人账号', dictCode: '' })
  274. fieldList.push({ type: 'string', value: 'uploadingName', text: '分类名称', dictCode: '' })
  275. fieldList.push({ type: 'string', value: 'auditor', text: '审核人账号', dictCode: '' })
  276. fieldList.push({ type: 'datetime', value: 'auditorTime', text: '审核时间' })
  277. fieldList.push({ type: 'string', value: 'title', text: '标题', dictCode: '' })
  278. fieldList.push({ type: 'string', value: 'name', text: '姓名', dictCode: '' })
  279. fieldList.push({ type: 'string', value: 'province', text: '省份', dictCode: '' })
  280. fieldList.push({ type: 'string', value: 'city', text: '城市', dictCode: '' })
  281. fieldList.push({ type: 'string', value: 'hospital', text: '医院', dictCode: '' })
  282. fieldList.push({ type: 'string', value: 'caseName', text: '病例类型', dictCode: '' })
  283. fieldList.push({ type: 'string', value: 'pic', text: '拍照图片', dictCode: '' })
  284. fieldList.push({ type: 'string', value: 'picTwo', text: '打码前图片', dictCode: '' })
  285. fieldList.push({ type: 'Text', value: 'picWordRecognition', text: '图片识别文字', dictCode: '' })
  286. fieldList.push({ type: 'string', value: 'mhFile', text: '文件', dictCode: '' })
  287. fieldList.push({ type: 'string', value: 'firstTrial', text: '是否通过初审', dictCode: 'sftgcs' })
  288. fieldList.push({
  289. type: 'string',
  290. value: 'secondaryUpload',
  291. text: '是否二次上传 1没上传 2上传了',
  292. dictCode: 'sfecsc'
  293. })
  294. fieldList.push({
  295. type: 'string',
  296. value: 'type',
  297. text: '专家是否通过 0未审理 1没通过 2通过了',
  298. dictCode: 'zjsftg'
  299. })
  300. fieldList.push({ type: 'string', value: 'createBy', text: '创建人', dictCode: '' })
  301. fieldList.push({ type: 'datetime', value: 'createTime', text: '创建时间' })
  302. fieldList.push({ type: 'string', value: 'updateBy', text: '更新人', dictCode: '' })
  303. fieldList.push({ type: 'datetime', value: 'updateTime', text: '更新时间' })
  304. this.superFieldList = fieldList
  305. }
  306. }
  307. }
  308. </script>
  309. <style scoped>
  310. @import '~@assets/less/common.less';
  311. </style>