index.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  1. <template>
  2. <div style="display: flex; position: relative">
  3. <el-card style="width: 18%; margin-right: 18px; border-radius: 6px">
  4. <el-tree
  5. :data="dataTree"
  6. :props="defaultProps"
  7. node-key="hospId"
  8. :current-node-key="currentNodeKey"
  9. ref="tree1"
  10. highlight-current="true"
  11. @node-click="handleNodeClick"
  12. default-expand-all="true"
  13. style="margin-top: 10px"
  14. v-loading="dataTreeloading"
  15. >
  16. <span class="custom-tree-node" slot-scope="{ node, data }">
  17. <div>{{ node.label }}</div>
  18. <div class="redTit">{{ data.wslnum }}</div>
  19. </span>
  20. </el-tree>
  21. </el-card>
  22. <div class="common-box" style="width: 82%">
  23. <el-form :model="listQuery" ref="queryForm" :inline="true">
  24. <el-form-item label="订单号" prop="id">
  25. <el-input
  26. v-model="listQuery.id"
  27. placeholder="请输入订单号"
  28. ></el-input>
  29. </el-form-item>
  30. <el-form-item label="制单时间" prop="docmkDate">
  31. <el-date-picker
  32. v-model="listQuery.docmkDate"
  33. type="daterange"
  34. range-separator="至"
  35. :editable="false"
  36. value-format="yyyy-MM-dd"
  37. start-placeholder="开始时间"
  38. end-placeholder="结束时间"
  39. style="width: 230px"
  40. />
  41. </el-form-item>
  42. <el-form-item label="采购方" prop="orgId">
  43. <el-cascader
  44. v-model="listQuery.orgId"
  45. :options="options"
  46. :show-all-levels="false"
  47. :props="{
  48. expandTrigger: 'hover',
  49. value: 'orgId',
  50. label: 'orgName',
  51. children: 'child',
  52. checkStrictly: true,
  53. emitPath: false
  54. }"
  55. clearable
  56. @change="handleChange"
  57. >
  58. </el-cascader>
  59. </el-form-item>
  60. <el-form-item label="当前状态" prop="stas">
  61. <el-select v-model="listQuery.stas" placeholder="请选择" clearable>
  62. <el-option
  63. v-for="item in stasOptions"
  64. :key="item.value"
  65. :label="item.lable"
  66. :value="item.value"
  67. ></el-option>
  68. </el-select>
  69. </el-form-item>
  70. <el-form-item>
  71. <el-button type="primary" @click="getData('search')">查询</el-button>
  72. <el-button @click="reset">重置</el-button>
  73. </el-form-item>
  74. </el-form>
  75. <el-table
  76. v-loading="listLoading"
  77. element-loading-text="加载中"
  78. :data="list"
  79. height="500"
  80. fit
  81. stripe
  82. border
  83. >
  84. <template slot="empty">
  85. <img src="@/assets/nopage.png" alt />
  86. <p>暂无数据</p>
  87. </template>
  88. <el-table-column type="index" label="序号" width="60" />
  89. <el-table-column label="采购单号" prop="id" />
  90. <el-table-column label="计划类型" prop="planType" />
  91. <el-table-column label="品规数" prop="detlCnt" />
  92. <el-table-column label="金额" prop="purcAmt" />
  93. <el-table-column label="采购方" prop="orgName" />
  94. <!-- <el-table-column label="制单人" prop="docmker" /> -->
  95. <el-table-column label="制单时间" prop="docmkDate" />
  96. <el-table-column label="当前状态" prop="stas">
  97. <template #default="{ row }">
  98. <el-tag v-if="row.stas == 'A'" type="info">未受理</el-tag>
  99. <el-tag v-if="row.stas == 'B'" type="success">已受理</el-tag>
  100. <el-tag v-if="row.stas == 'R'" type="danger">被驳回</el-tag>
  101. <el-tag v-if="row.stas == 'C'" type="success">已出库</el-tag>
  102. <el-tag v-if="row.stas == 'D'">部分出库</el-tag>
  103. <el-tag v-if="row.stas == 'Y'" type="success">已入库</el-tag>
  104. <el-tag v-if="row.stas == 'P'">部分入库</el-tag>
  105. </template>
  106. </el-table-column>
  107. <el-table-column
  108. label="部门名称"
  109. prop="deptName"
  110. v-if="hospIdWrong == '3'"
  111. />
  112. <el-table-column
  113. label="采购方上级"
  114. prop="prntOrgName"
  115. v-if="hospIdWrong == '4'"
  116. />
  117. <el-table-column label="操作" width="100">
  118. <template slot-scope="scope">
  119. <el-button type="text" @click="handleDetail(scope.row)"
  120. >详情</el-button
  121. >
  122. </template>
  123. </el-table-column>
  124. </el-table>
  125. <!--分页-->
  126. <yl-pagination
  127. v-show="total > 0"
  128. :total="total"
  129. :page.sync="listQuery.current"
  130. :limit.sync="listQuery.size"
  131. @pagination="getData"
  132. />
  133. </div>
  134. </div>
  135. </template>
  136. <script>
  137. import ylPagination from "@/components/yl-pagination";
  138. // import { deleteEmptyGroup } from "@/utils/utils";
  139. // import {
  140. // getOrdPageSpler,
  141. // getALLOrgTree,
  142. // QueryHospList,
  143. // } from "@/api/orderManage-sup/index";
  144. export default {
  145. components: {
  146. ylPagination
  147. },
  148. data() {
  149. return {
  150. listQuery: {
  151. current: 1,
  152. size: 5,
  153. id: "",
  154. hospId: "",
  155. docmkDateStart: "",
  156. docmkDateEnd: "",
  157. docmkDate: [],
  158. stas: "A",
  159. orgId: ""
  160. },
  161. stasOptions: [
  162. { value: "A", lable: "未受理" },
  163. // { value: "B", lable: "已受理" },
  164. { value: "R", lable: "被驳回" }
  165. // { value: "C", lable: "已出库" },
  166. // { value: "D", lable: "部分出库" },
  167. // { value: "Y", lable: "已入库" },
  168. // { value: "P", lable: "部分入库" }
  169. ],
  170. options: [],
  171. listLoading: false,
  172. list: [],
  173. total: 0,
  174. dataTree: "",
  175. activeName: "org",
  176. hospId: null,
  177. currentNodeKey: "",
  178. defaultProps: {
  179. children: "children",
  180. label: "hospName"
  181. },
  182. // itemsPerPage:5
  183. hospIdWrong: null, //用于判断只有万荣要的部门名称
  184. dataTreeloading: false
  185. };
  186. },
  187. created() {
  188. if (this.$route.params.hospId) {
  189. this.listQuery.current = this.$route.params.current;
  190. this.handleNodeClick(this.$route.params.hospId);
  191. }
  192. if (localStorage.sizeaccept) {
  193. this.listQuery.size = Number(localStorage.sizeaccept);
  194. }
  195. },
  196. mounted() {
  197. this.dataTreeloading = true;
  198. QueryHospList()
  199. .then(res => {
  200. this.listQuery.hospId = res.data[0].hospId;
  201. this.dataTree = res.data;
  202. this.dataTreeloading = false;
  203. this.$nextTick(() => {
  204. this.$refs.tree1.setCurrentKey(this.currentNodeKey);
  205. });
  206. })
  207. .catch(() => {
  208. this.dataTreeloading = false;
  209. });
  210. },
  211. methods: {
  212. tabClick(tab) {
  213. if (tab.label == "按机构") {
  214. QueryHospList().then(res => {
  215. console.log(res, "shu");
  216. this.dataTree = res.data;
  217. });
  218. this.defaultProps.label = "hospName";
  219. } else if (tab.label == "按分类") {
  220. this.dataTree = [];
  221. // this.defaultProps.label = 'orgGrpName'
  222. // this.listQuery.type = 'grp';
  223. }
  224. },
  225. getData(type) {
  226. if (type == "search") {
  227. this.listQuery.current = 1;
  228. }
  229. this.listLoading = true;
  230. this.listQuery.docmkDateStart = this.listQuery.docmkDate[0];
  231. this.listQuery.docmkDateEnd = this.listQuery.docmkDate[1];
  232. // this.listQuery.hospId = this.hospId;
  233. getOrdPageSpler(this.listQuery)
  234. .then(res => {
  235. if (res.success == true) {
  236. this.list = res.data.records;
  237. this.total = res.data.total;
  238. this.listLoading = false;
  239. localStorage.setItem(
  240. "sizeaccept",
  241. JSON.stringify(this.listQuery.size)
  242. );
  243. }
  244. })
  245. .catch(err => {
  246. this.listLoading = false;
  247. });
  248. },
  249. // 点击获取医院药品列表
  250. handleNodeClick(data) {
  251. this.hospIdWrong = data.hospId;
  252. this.listQuery.spdId = data.spdId;
  253. this.listLoading = true;
  254. if (data.hospId) {
  255. this.listQuery.hospId = data.hospId;
  256. this.hospId = data.hospId;
  257. this.currentNodeKey = data.hospId;
  258. // this.$store.commit("user/SET_HOSPID", data.hospId);
  259. } else {
  260. this.listQuery.hospId = data;
  261. this.currentNodeKey = data;
  262. // this.$store.commit("user/SET_HOSPID", data);
  263. }
  264. getOrdPageSpler(this.listQuery)
  265. .then(res => {
  266. this.list = res.data.records;
  267. this.total = res.data.total;
  268. this.listLoading = false;
  269. })
  270. .catch(err => {
  271. this.listLoading = false;
  272. });
  273. getALLOrgTree().then(res => {
  274. this.options = res.data;
  275. deleteEmptyGroup(this.options);
  276. });
  277. },
  278. reset() {
  279. this.$refs.queryForm.resetFields();
  280. this.getData();
  281. },
  282. // 详情
  283. handleDetail(row) {
  284. this.$router.push({
  285. name: "acceptDetail",
  286. query: {
  287. id: row.id,
  288. detlCnt: row.detlCnt,
  289. orgName: row.orgName,
  290. docmker: row.docmker,
  291. docmkDate: row.docmkDate,
  292. stas: row.stas,
  293. docmkerConinfo: row.docmkerConinfo,
  294. hospId: this.currentNodeKey,
  295. current: this.listQuery.current,
  296. ifCustomer: row.ifCustomer,
  297. spdId: this.listQuery.spdId,
  298. prntOrgName: row.prntOrgName
  299. }
  300. });
  301. }
  302. }
  303. };
  304. </script>
  305. <style lang="scss" scoped>
  306. ::v-deep .el-card__body {
  307. padding: 6px;
  308. }
  309. ::v-deep .el-tabs__nav {
  310. width: 99%;
  311. }
  312. ::v-deep .el-tabs__item {
  313. width: 49.5%;
  314. }
  315. ::v-deep .el-badge__content.is-fixed {
  316. top: 8px;
  317. right: 22px;
  318. }
  319. .custom-tree-node {
  320. display: flex;
  321. flex-direction: row;
  322. justify-content: space-between;
  323. }
  324. .custom-tree-node ::v-deep .redTit {
  325. min-width: 30px;
  326. background-color: #f56c6c;
  327. min-height: 1px;
  328. border-radius: 10px;
  329. text-align: center;
  330. margin-left: 10px;
  331. padding: 1px;
  332. color: #fff;
  333. }
  334. </style>