buildIncident.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538
  1. <template>
  2. <view class="buildIncident">
  3. <!-- 原来的scroll-view -->
  4. <view class="body view-body">
  5. <view class="form_item">
  6. <view class="title select"><text class="required newicon newicon-bitian"></text>院区:</view>
  7. <!-- <uni-data-select class="value" v-model="incidentData.branch" :localdata="dataInfo.branchList" :clear="false" placeholder="请选择院区" :class="{formRed: isSubmit && !incidentData.branch}" @change="changeBranch"></uni-data-select> -->
  8. <!-- <uni-data-picker class="value" placeholder="请选择院区"
  9. :localdata="dataInfo.branchList" v-model="incidentData.branch" :clear-icon="false"
  10. :class="{formRed: isSubmit && !incidentData.branch}" @change="changeBranch">
  11. </uni-data-picker> -->
  12. <view class="value size-14">
  13. {{loginUserStore.loginUser.user.currentHospital.parent?
  14. loginUserStore.loginUser.user.currentHospital.parent.hosName:
  15. loginUserStore.loginUser.user.currentHospital.hosName}}
  16. </view>
  17. </view>
  18. <view class="form_item">
  19. <view class="title"><text class="required newicon newicon-bitian"></text>报修科室:</view>
  20. <view class="value category" @click="selectDepartment">
  21. <text class="categoryName ellipsis-multiline">{{incidentData.department ? incidentData.department.dept : ''}}</text>
  22. <text class="newicon newicon-weibiaoti2010104"></text>
  23. </view>
  24. </view>
  25. <view class="form_item">
  26. <view class="title"><text class="required newicon newicon-bitian transparent"></text>报修人:</view>
  27. <view class="value category" @click="selectRequester">
  28. <text class="categoryName ellipsis-multiline">{{incidentData.requester ? incidentData.requester.name : ''}}</text>
  29. <text class="newicon newicon-weibiaoti2010104"></text>
  30. </view>
  31. </view>
  32. <view class="form_item">
  33. <view class="title select"><text class="required newicon newicon-bitian transparent"></text>联系人:</view>
  34. <uni-easyinput class="value" v-model="incidentData.contacts" placeholder="请输入联系人" />
  35. </view>
  36. <view class="form_item">
  37. <view class="title select"><text class="required newicon newicon-bitian"></text>联系电话:</view>
  38. <uni-easyinput class="value" v-model="incidentData.contactsInformation" placeholder="请输入联系电话" :class="{formRed: isSubmit && !incidentData.contactsInformation.trim()}" />
  39. </view>
  40. <view class="form_item">
  41. <view class="title"><text class="required newicon newicon-bitian transparent"></text>楼栋楼层:</view>
  42. <view class="value category" @click="selectAreaPlace">
  43. <text class="categoryName ellipsis-multiline" v-if="incidentData.place">{{incidentData.place ? incidentData.place.building.buildingName:''}} {{ incidentData.place&&incidentData.place.floor?incidentData.place.floor.floorName : incidentData.place.floorName}}</text>
  44. <text class="newicon newicon-weibiaoti2010104"></text>
  45. </view>
  46. </view>
  47. <view class="form_item">
  48. <view class="title select"><text class="required newicon newicon-bitian transparent"></text>详细地址:</view>
  49. <uni-easyinput class="value" v-model="incidentData.houseNumber" placeholder="请输入详细地址" />
  50. </view>
  51. <view class="form_item">
  52. <view class="title"><text class="required newicon newicon-bitian"></text>故障现象:</view>
  53. <view class="value category" @click="selectCategory">
  54. <text class="categoryName ellipsis-multiline">{{incidentData.category ? incidentData.category.mutiCategory : ''}}</text>
  55. <text class="newicon newicon-weibiaoti2010104"></text>
  56. </view>
  57. </view>
  58. <view class="form_item">
  59. <view class="title select"><text class="required newicon newicon-bitian"></text>故障来源:</view>
  60. <!-- <uni-data-select readonly class="value" v-model="incidentData.source" :localdata="dataInfo.sourceList" placeholder="请选择故障来源" :class="{formRed: isSubmit && !incidentData.source}"></uni-data-select> -->
  61. <uni-data-picker class="value" placeholder="请选择故障来源"
  62. :localdata="dataInfo.sourceList" v-model="incidentData.source"
  63. :clear-icon="false" :class="{formRed: isSubmit && !incidentData.source}">
  64. </uni-data-picker>
  65. </view>
  66. <view class="form_item">
  67. <view class="title select"><text class="required newicon newicon-bitian"></text>优先级:</view>
  68. <!-- <uni-data-select placement="top" readonly class="value" v-model="incidentData.priority" :localdata="dataInfo.priorityList" placeholder="请选择优先级" :class="{formRed: isSubmit && !incidentData.priority}"></uni-data-select> -->
  69. <uni-data-picker placement="top" class="value" placeholder="请选择优先级"
  70. :localdata="dataInfo.priorityList" v-model="incidentData.priority"
  71. :clear-icon="false" :class="{formRed: isSubmit && !incidentData.priority}">
  72. </uni-data-picker>
  73. </view>
  74. <view class="form_item column">
  75. <view class="title select"><text class="required newicon newicon-bitian"></text>故障描述:</view>
  76. <uni-easyinput class="value" type="textarea" v-model="incidentData.description" placeholder="请输入故障描述" :class="{formRed: isSubmit && !incidentData.description.trim()}" />
  77. </view>
  78. <view class="form_item_column">
  79. <view class="form_item">
  80. <view class="title"><text class="required newicon newicon-bitian transparent"></text>报修图片:</view>
  81. <view class="value">
  82. <uni-file-picker ref="handlerImgRef" v-model="incidentData.repairImgList" limit="3" @success="handlerImgSuccess" @fail="handlerImgFail" @select="handlerImgSelect" @delete="handlerImgDelete"></uni-file-picker>
  83. </view>
  84. </view>
  85. <view class="form_item">
  86. <view class="title transparent"><text class="required newicon newicon-bitian transparent"></text>报修图片:</view>
  87. <view class="value">
  88. <text class="imgTips ellipsis">(支持JPG/PNG格式图片,单张大小10M以内)</text>
  89. </view>
  90. </view>
  91. </view>
  92. </view>
  93. <view class="foot_common_btns">
  94. <button @click="goBack" type="default" class="cancelButton btn">返回</button>
  95. <button @click="submit" type="default" class="primaryButton btn">下一步</button>
  96. </view>
  97. </view>
  98. </template>
  99. <script setup>
  100. import { ref, reactive } from 'vue'
  101. import { onLoad } from '@dcloudio/uni-app'
  102. import { api_branch, api_getDictionary, getFetchDataList, api_incidentTask } from "@/http/api.js"
  103. import { defaultColor } from '@/static/js/theme.js'
  104. import { useSetTitle } from '@/share/useSetTitle.js'
  105. import { useGoBack } from '@/share/useGoBack.js'
  106. import { useLoginUserStore } from '@/stores/loginUser'
  107. import { useIncidentBuildStore } from '@/stores/incidentBuild'
  108. import { useHandlerStore } from '@/stores/handler'
  109. import { useUploadFile } from '@/share/useUploadFile.js'
  110. useSetTitle();
  111. const loginUserStore = useLoginUserStore();
  112. const incidentBuildStore = useIncidentBuildStore();
  113. const handlerStore = useHandlerStore();
  114. const { uploadFile } = useUploadFile();
  115. const { goBack } = useGoBack();
  116. // 主题颜色
  117. const primaryColor = ref(defaultColor)
  118. // 工单对象
  119. const incidentData = reactive({
  120. "deleteFlag": 0,
  121. "duty": undefined,
  122. "department": undefined,
  123. "contactsInformation": '',
  124. "contacts": '',
  125. "branch": undefined,
  126. "area": undefined,
  127. "place": undefined,
  128. "houseNumber": '',
  129. "category": undefined,
  130. "priority": undefined,
  131. "source": undefined,
  132. "title": '',
  133. "description": '',
  134. "repairType": undefined,
  135. "requester":undefined,
  136. "acceptUser": loginUserStore.loginUser.user,
  137. repairImgList: [],//报修图片列表
  138. })
  139. // 报修图片
  140. const handlerImgRef = ref(null)
  141. // 数据
  142. const dataInfo = reactive({
  143. branchList: [], //院区列表
  144. sourceList: [], //故障来源列表
  145. priorityList: [], //优先级列表
  146. })
  147. // 是否提交
  148. const isSubmit = ref(false)
  149. // 上传报修图片成功
  150. function handlerImgSuccess(e){
  151. incidentData.repairImgList.forEach(v => {
  152. v.url = v.path;
  153. })
  154. console.log(incidentData.repairImgList);
  155. }
  156. // 上传报修图片失败
  157. function handlerImgFail(e){
  158. incidentData.repairImgList.forEach(v => {
  159. v.url = v.path;
  160. })
  161. console.log(incidentData.repairImgList);
  162. }
  163. // 选择上传图片
  164. function handlerImgSelect(e){
  165. incidentData.repairImgList = incidentData.repairImgList.concat(e.tempFiles);
  166. console.log(incidentData.repairImgList);
  167. }
  168. // 删除上传图片
  169. function handlerImgDelete(e){
  170. incidentData.repairImgList = incidentData.repairImgList.filter(v => e.tempFile.uuid != v.uuid);
  171. console.log(incidentData.repairImgList);
  172. }
  173. // 选择故障现象
  174. function selectCategory(){
  175. incidentBuildStore.setIncidentBuildData(incidentData, 'buildIncident');
  176. uni.navigateTo({
  177. url: `/pages/categoryOne/categoryOne`
  178. })
  179. }
  180. // 选择楼栋楼层
  181. function selectAreaPlace(){
  182. incidentBuildStore.setIncidentBuildData(incidentData, 'buildIncident', 'area');
  183. uni.navigateTo({
  184. url: `/pages/searchArea/searchArea`
  185. })
  186. }
  187. // 跳转到搜索报修科室
  188. function selectDepartment(){
  189. incidentBuildStore.setIncidentBuildData(incidentData, 'buildIncident', 'department');
  190. uni.navigateTo({
  191. url: `/pages/searchDept/searchDept`
  192. })
  193. }
  194. // 跳转到搜索报修人
  195. function selectRequester(){
  196. incidentBuildStore.setIncidentBuildData(incidentData, 'buildIncident', 'requester');
  197. uni.navigateTo({
  198. url: `/pages/searchUser/searchUser`
  199. })
  200. }
  201. // 获取院区列表
  202. function getBranchs(){
  203. if(loginUserStore.loginUser.user.currentHospital.parent){
  204. incidentData.branch = loginUserStore.loginUser.user.currentHospital.parent.id
  205. }else{
  206. incidentData.branch = loginUserStore.loginUser.user.currentHospital.id
  207. }
  208. // uni.showLoading({
  209. // title: "加载中",
  210. // mask: true,
  211. // });
  212. // let postData = {
  213. // "idx": 0,
  214. // "sum": 9999,
  215. // parent:{id:loginUserStore.loginUser.user.currentHospital.id}
  216. // };
  217. // api_branch(postData).then(res => {
  218. // uni.hideLoading();
  219. // if(res.status == 200){
  220. // res.list = res.list || [];
  221. // dataInfo.branchList = res.list.map(v => ({
  222. // text: v.hosName,
  223. // value: v.id,
  224. // }));
  225. // if(!incidentBuildStore.incidentBuild.data){
  226. // if(loginUserStore.loginUser.user.duty){
  227. // // 当前的所属责任科室
  228. // incidentData.branch = loginUserStore.loginUser.user.duty.branch;
  229. // }else if(loginUserStore.loginUser.user.branch){
  230. // // 当前的所属院区
  231. // incidentData.branch = loginUserStore.loginUser.user.branch.id;
  232. // }
  233. // }
  234. // }else{
  235. // uni.showToast({
  236. // icon: 'none',
  237. // title: res.msg || '请求数据失败!'
  238. // });
  239. // }
  240. // })
  241. }
  242. // 获取故障来源列表
  243. function getSources(){
  244. uni.showLoading({
  245. title: "加载中",
  246. mask: true,
  247. });
  248. let postData = {
  249. "key": 'incident_source',
  250. "type": "list",
  251. };
  252. api_getDictionary(postData).then(res => {
  253. uni.hideLoading();
  254. res = res || [];
  255. dataInfo.sourceList = res.map(v => ({
  256. text: v.name,
  257. value: v.id,
  258. key: v.value,
  259. }));
  260. let discover = dataInfo.sourceList.find(v => v.key === 'leader');
  261. if(discover){
  262. incidentData.source = discover.value;
  263. }
  264. })
  265. }
  266. // 获取优先级列表
  267. function getPrioritys(){
  268. uni.showLoading({
  269. title: "加载中",
  270. mask: true,
  271. });
  272. let postData = {
  273. priority: {},
  274. idx: 0,
  275. sum: 9999,
  276. };
  277. getFetchDataList("simple/data", "priority", postData)
  278. .then((data) => {
  279. uni.hideLoading();
  280. dataInfo.priorityList = data.list.map(v => ({
  281. text: v.name,
  282. value: v.id,
  283. }));
  284. });
  285. }
  286. // 选择院区
  287. function changeBranch(){
  288. incidentData.department = undefined;
  289. incidentData.contactsInformation = '';
  290. incidentData.place = undefined;
  291. incidentData.houseNumber = undefined;
  292. }
  293. // 处理提交事件
  294. function handlerOrder(){
  295. let postData = {
  296. incident: dataInfo.incidentData,
  297. }
  298. postData.incident.handleDescription = dataInfo.handleDescription;
  299. postData.incident.handleCategory = {id: dataInfo.handleCategory};
  300. postData.incident.closecode = {id: dataInfo.closecode};
  301. postData.incident.category = dataInfo.category;
  302. postData.incident.synergetic = dataInfo.synergetic;
  303. return api_incidentTask('accept', postData);
  304. }
  305. // 报修图片
  306. function handlerOrderImg(imgObj){
  307. return uploadFile(imgObj, 'incident', dataInfo.incidentId)
  308. }
  309. // 获取优先级
  310. function getPriorityData(){
  311. let postData = {
  312. idx: 0,
  313. sum: 9999,
  314. incidentCategoryConfig: {
  315. categoryId: incidentData.category.id,
  316. dutyId: loginUserStore.loginUser.user.currentHospital.id,
  317. },
  318. };
  319. getFetchDataList("simple/data", "incidentCategoryConfig", postData).then(res => {
  320. let item = res.list.find(i=>i.categoryId == incidentData.category.id)
  321. incidentData.priority = item.priority
  322. })
  323. }
  324. // 提交
  325. function submit(){
  326. isSubmit.value = true;
  327. if(!incidentData.branch){
  328. uni.showToast({
  329. icon: 'none',
  330. title: '请选择院区'
  331. });
  332. return;
  333. }
  334. if(!incidentData.department){
  335. uni.showToast({
  336. icon: 'none',
  337. title: '请选择报修科室'
  338. });
  339. return;
  340. }
  341. if(!incidentData.contactsInformation.trim()){
  342. uni.showToast({
  343. icon: 'none',
  344. title: '请填写联系电话'
  345. });
  346. return;
  347. }
  348. if(!incidentData.category){
  349. uni.showToast({
  350. icon: 'none',
  351. title: '请选择故障现象'
  352. });
  353. return;
  354. }
  355. if(!incidentData.source){
  356. uni.showToast({
  357. icon: 'none',
  358. title: '请选择故障来源'
  359. });
  360. return;
  361. }
  362. if(!incidentData.priority){
  363. uni.showToast({
  364. icon: 'none',
  365. title: '请选择优先级'
  366. });
  367. return;
  368. }
  369. if(!incidentData.description.trim()){
  370. uni.showToast({
  371. icon: 'none',
  372. title: '请填写故障描述'
  373. });
  374. return;
  375. }
  376. // 处理责任科室
  377. if(incidentData.category.branchType == 1){
  378. // 分院区
  379. if(incidentData.branch){
  380. let dutyConfig = incidentData.category.branchUserGroups.find(v=>v.branchId == incidentData.branch);
  381. if(dutyConfig && dutyConfig.dutyId && dutyConfig.dutyName){
  382. incidentData.duty = {id:dutyConfig.dutyId,dept:dutyConfig.dutyName};
  383. }else{
  384. incidentData.duty = undefined;
  385. }
  386. }else{
  387. incidentData.duty = undefined;
  388. }
  389. }else{
  390. // 不分院区
  391. incidentData.duty = incidentData.category.dutyDepartment;
  392. }
  393. incidentData.title = incidentData.category.category;
  394. incidentBuildStore.setIncidentBuildData(incidentData, 'buildIncident');
  395. uni.navigateTo({
  396. url: '/pages/assign/assign'
  397. })
  398. }
  399. onLoad((option) => {
  400. handlerStore.clearHandlerData();
  401. if(incidentBuildStore.incidentBuild.data){
  402. Object.assign(
  403. incidentData,
  404. incidentBuildStore.incidentBuild.data,
  405. {
  406. priority: incidentBuildStore.incidentBuild.data.category ? (incidentBuildStore.incidentBuild.data.category.priority ? incidentBuildStore.incidentBuild.data.category.priority.id : undefined) : undefined,
  407. description: incidentBuildStore.incidentBuild.data.category ? incidentBuildStore.incidentBuild.data.category.mutiCategory : undefined,
  408. },
  409. );
  410. // 修改报修科室,则回显楼栋,楼层,详细地址,联系电话
  411. if(incidentBuildStore.incidentBuild.sign === 'department'){
  412. if(incidentData.department){
  413. incidentData.place = incidentData.department || undefined;
  414. incidentData.houseNumber = incidentData.department.address || '';
  415. incidentData.contactsInformation = incidentData.department.manyPhone ? incidentData.department.manyPhone.split(',')[0] : '';
  416. }
  417. }
  418. if(incidentData.category && incidentData.category.id){
  419. getPriorityData()
  420. }
  421. }
  422. getBranchs();
  423. getSources();
  424. getPrioritys();
  425. })
  426. </script>
  427. <style lang="scss" scoped>
  428. .buildIncident{
  429. height: 100%;
  430. display: flex;
  431. flex-direction: column;
  432. justify-content: space-between;
  433. .body{
  434. padding: 0 24rpx;
  435. box-sizing: border-box;
  436. flex: 1;
  437. min-height: 0;
  438. .form_item{
  439. display: flex;
  440. align-items: center;
  441. padding-top: 24rpx;
  442. min-height: 86rpx;
  443. &.column{
  444. height: auto;
  445. flex-direction: column;
  446. align-items: flex-start;
  447. .title{
  448. margin-right: 0;
  449. }
  450. .value{
  451. margin-top: 10rpx;
  452. padding-left: 20rpx;
  453. box-sizing: border-box;
  454. }
  455. .tips{
  456. padding: 24rpx;
  457. text-align: center;
  458. font-size: 22rpx;
  459. color: #909399;
  460. width: 100%;
  461. box-sizing: border-box;
  462. }
  463. }
  464. .title{
  465. font-size: 26rpx;
  466. display: flex;
  467. align-items: center;
  468. margin-right: 12rpx;
  469. flex-shrink: 0;
  470. &.select{
  471. width: calc(5em + 20rpx);
  472. }
  473. }
  474. .value{
  475. width: 100%;
  476. &.category{
  477. width: 100%;
  478. display: flex;
  479. justify-content: space-between;
  480. align-items: center;
  481. .categoryName{
  482. font-size: 26rpx;
  483. color: #555;
  484. flex: 1;
  485. }
  486. .newicon-weibiaoti2010104{
  487. color: $uni-primary;
  488. margin-left: 24rpx;
  489. }
  490. }
  491. .imgTips{
  492. color: #909399;
  493. font-size: 22rpx;
  494. }
  495. }
  496. .size-14{
  497. font-size: 26rpx;
  498. }
  499. }
  500. }
  501. }
  502. </style>