rapidRepNext.vue 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941
  1. <template>
  2. <view class="handler">
  3. <view class="head">
  4. <view class="tab" :class="{active: tab.value === dataInfo.tabActiveValue}" v-for="tab in dataInfo.tabs" :key="tab.id" @click="clickTab(tab.value)">
  5. {{tab.name}}<text v-if="tab.num !== ''">({{tab.num}})</text>
  6. </view>
  7. </view>
  8. <view class="body view-body page_padding">
  9. <!-- 科内报修 -->
  10. <template v-if="dataInfo.tabActiveValue === 'doing'">
  11. <view class="form_item">
  12. <view class="title select"><text class="required newicon newicon-bitian"></text>院区:</view>
  13. <uni-data-picker class="value" placeholder="请选择院区"
  14. v-model="dataInfo.branch" :localdata="branchData" @change="doingDeptChange"
  15. :clear-icon="false" :class="{formRed: isSubmit && !dataInfo.branch}">
  16. </uni-data-picker>
  17. </view>
  18. <!-- <view class="form_item">
  19. <view class="title select"><text class="required newicon newicon-bitian"></text>报修科室:</view>
  20. <uni-data-picker class="value" placeholder="请选择报修科室"
  21. v-model="dataInfo.department" :localdata="dataInfo.repairTypeList"
  22. :clear-icon="false" :class="{formRed: isSubmit && !dataInfo.department}">
  23. </uni-data-picker>
  24. </view> -->
  25. <view class="form_item">
  26. <view class="title select"><text class="required newicon newicon-bitian"></text>报修科室:</view>
  27. <view class="value category" @click="selectDepartment">
  28. <text class="categoryName ellipsis-multiline">{{dataInfo.departmentName}}</text>
  29. <text class="newicon newicon-weibiaoti2010104"></text>
  30. </view>
  31. </view>
  32. <view class="candidate" v-if="itemUser">
  33. <view class="candidate-item" v-for="(item, index) in itemUser.commonDeptDTO" :key="item" @click="itemCandidate(item)">{{item.dept}}</view>
  34. </view>
  35. <view class="form_item column">
  36. <view class="title"><text class="required newicon newicon-bitian"></text>详细地址:</view>
  37. <uni-easyinput class="value" type="textarea" v-model="dataInfo.address" placeholder="请输入详细地址" :class="{formRed: isSubmit && !dataInfo.address }" />
  38. </view>
  39. <view class="candidate">
  40. <view class="candidate-item" v-for="item in dataInfo.addressList" :key="item.id" @click="itemAddres(item)">{{item.name}}</view>
  41. </view>
  42. <view class="form_item" :class="{formRed: isSubmit && !dataInfo.contacts}">
  43. <view class="title select"><text class="required newicon newicon-bitian"></text>联系人:</view>
  44. <input class="item-input" placeholder="请输入联系人" v-model="dataInfo.contacts" />
  45. </view>
  46. <view class="form_item" :class="{formRed: isSubmit && !dataInfo.contactsInformation}">
  47. <view class="title select"><text class="required newicon newicon-bitian"></text>联系电话:</view>
  48. <input class="item-input" placeholder="请输入联系电话" v-model="dataInfo.contactsInformation"/>
  49. </view>
  50. </template>
  51. <!-- 公共报修 -->
  52. <template v-if="dataInfo.tabActiveValue === 'overtime'">
  53. <view class="form_item" v-if="isRepair.valueconfig==1">
  54. <view class="title select"><text class="required newicon newicon-bitian"></text>院区:</view>
  55. <uni-data-picker class="value" placeholder="请选择院区" @change="overDeptChange"
  56. v-model="dataInfo.branch" :localdata="branchData"
  57. :clear-icon="false" :class="{formRed: isSubmit && !dataInfo.branch}">
  58. </uni-data-picker>
  59. </view>
  60. <view class="form_item" v-if="isRepair.valueconfig==1">
  61. <view class="title select"><text class="required newicon newicon-bitian"></text>楼栋:</view>
  62. <uni-data-picker class="value" placeholder="请选择楼栋" @change="areaChange"
  63. v-model="dataInfo.areaId" :localdata="dataInfo.buildingTypeList"
  64. :clear-icon="false" :class="{formRed: isSubmit && !dataInfo.areaId}">
  65. </uni-data-picker>
  66. </view>
  67. <view class="form_item" v-if="isRepair.valueconfig==1">
  68. <view class="title select"><text class="required newicon newicon-bitian"></text>楼层:</view>
  69. <uni-data-picker class="value" placeholder="请选择楼层"
  70. v-model="dataInfo.placeId" :localdata="dataInfo.placeTypeList"
  71. :clear-icon="false" :class="{formRed: isSubmit && !dataInfo.placeId}">
  72. </uni-data-picker>
  73. </view>
  74. <view class="form_item column" v-if="isRepair.valueconfig==1">
  75. <view class="title"><text class="required newicon newicon-bitian"></text>详细地址:</view>
  76. <uni-easyinput class="value" type="textarea" v-model="dataInfo.address" placeholder="请输入详细地址" :class="{formRed: isSubmit && !dataInfo.address}" />
  77. </view>
  78. <view class="form_item" :class="{formRed: isSubmit && !dataInfo.contacts}">
  79. <view class="title select"><text class="required newicon newicon-bitian"></text>联系人:</view>
  80. <input class="item-input value" placeholder="请输入联系人" v-model="dataInfo.contacts"/>
  81. </view>
  82. <view class="form_item" :class="{formRed: isSubmit && !dataInfo.contactsInformation}">
  83. <view class="title select"><text class="required newicon newicon-bitian"></text>联系电话:</view>
  84. <input class="item-input value" placeholder="请输入联系电话" v-model="dataInfo.contactsInformation"/>
  85. </view>
  86. </template>
  87. </view>
  88. <view class="foot_common_btns">
  89. <button @click="goBackOrToList" type="default" class="primaryButton btn">上一步</button>
  90. <button @click="submit" type="default" class="primaryButton btn">提交</button>
  91. </view>
  92. <NumberModal v-if="dataInfo.isNumber" @cancelEmit="cancelNumber" @confirmEmit="conformNumber" @removeEmit="removeNumber" :selectData="dataInfo.selectData" :selectType="dataInfo.selectType" :evtNumber="dataInfo.evtNumber" showRemove></NumberModal>
  93. </view>
  94. </template>
  95. <script setup>
  96. import { ref, reactive, computed } from 'vue'
  97. import NumberModal from '@/components/NumberModal.vue';
  98. import { onLoad } from '@dcloudio/uni-app'
  99. import { generateNumberArray } from '@/utils/index.js'
  100. import { api_getDictionary, api_sj,api_request, getFetchDataList, api_place, api_getSolution, api_area, api_user, api_incidentTask, api_branch, api_dutyDepartment, api_department, api_querySummaryDoc, api_addSummaryDoc, api_departmentDetail } from "@/http/api.js"
  101. import { defaultColor } from '@/static/js/theme.js'
  102. import { useSetTitle } from '@/share/useSetTitle.js'
  103. import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
  104. import { useUploadFile } from '@/share/useUploadFile.js'
  105. import { useGoBack } from '@/share/useGoBack.js'
  106. import { useLoginUserStore } from '@/stores/loginUser'
  107. import { useHandlerStore } from '@/stores/handler'
  108. useSetTitle();
  109. const loginUserStore = useLoginUserStore();
  110. const handlerStore = useHandlerStore();
  111. const { makePhoneCall } = useMakePhoneCall();
  112. const { uploadFile } = useUploadFile();
  113. const { goBack } = useGoBack();
  114. // 主题颜色
  115. const primaryColor = ref(defaultColor)
  116. // 备用机选项
  117. const machineData = ref([
  118. {
  119. text:'是',
  120. value:1
  121. },
  122. {
  123. text:'否',
  124. value:0
  125. },
  126. ])
  127. const isDept = ref({})
  128. const isRepair = ref({})
  129. const branchData = ref([])
  130. const candidateData = ref(loginUserStore.loginUser.user)
  131. const repairIncident = ref(null)
  132. // 数据
  133. const dataInfo = reactive({
  134. tabs: [
  135. {id: 5, name: '科内报修', value: 'doing', num: ''},
  136. {id: 6, name: '公共报修', value: 'overtime', num: ''},
  137. ],
  138. tabActiveValue: 'doing',//当前选择的tab
  139. incidentId: undefined,//事件ID
  140. incidentData: {
  141. repairIncidentType:{
  142. id:''
  143. },
  144. department:{
  145. id:''
  146. }
  147. },//事件对象
  148. repairTypeList:[],//科室数据
  149. buildingTypeList:[],//楼栋数据
  150. placeTypeList:[],//楼层数据
  151. department:'',//报修科室id
  152. departmentName:'',//报修科室
  153. address:'',//详细地址
  154. contacts:'',//联系人
  155. contactsInformation:'',//手机
  156. areaId:'',//楼栋
  157. placeId:'',//楼层
  158. branch:'', //院区
  159. addressList: [], //科室地点
  160. })
  161. // 故障处理用是否提供备用机
  162. const newProvideBackupMachine = ref(0)
  163. // 知识库id
  164. const solutionId = ref(null)
  165. // 是否提交
  166. const isSubmit = ref(false)
  167. // 处理图片
  168. const handlerImgRef = ref(null)
  169. // 用户信息
  170. const itemUser = ref(null)
  171. // 是否进入汇总单
  172. const isInSummaryOrder = computed(() => {
  173. return dataInfo.tabActiveValue === 'doing' && dataInfo.incidentData.duty && dataInfo.incidentData.duty.addSummary == 1 && (dataInfo.incidentData.handlingPersonnelUser.id == loginUserStore.loginUser.user.id);
  174. })
  175. // 上一步或者返回列表
  176. function goBackOrToList(){
  177. uni.setStorageSync('rapidRepNext',JSON.stringify(dataInfo))
  178. uni.navigateTo({
  179. url: `/pages/repair/rapidRep`
  180. })
  181. }
  182. // 重置
  183. function reset(){
  184. // dataInfo.department = '',//报修科室
  185. dataInfo.address = '',//详细地址
  186. // dataInfo.contacts = '',//联系人
  187. // dataInfo.contactsInformation = ''//手机
  188. dataInfo.areaId = ''//楼栋
  189. dataInfo.placeId = '' //院区
  190. dataInfo.placeTypeList = []
  191. }
  192. // 初始化表单
  193. function initForm(){
  194. if(dataInfo.tabActiveValue === 'doing'){
  195. // getRepairTypes()
  196. getUserInfo()
  197. }else if(dataInfo.tabActiveValue === 'overtime'){
  198. getbuildingList()
  199. }
  200. }
  201. function itemCandidate(item){
  202. // console.log(55,index)
  203. // let arr = loginUserStore.loginUser.user.commonDept.split(',')
  204. // console.log(66,arr)
  205. dataInfo.department = item.id
  206. dataInfo.departmentName = item.dept
  207. }
  208. function itemAddres(item){
  209. dataInfo.address = item.name
  210. }
  211. function getUserInfo(){
  212. let user = loginUserStore.loginUser.user
  213. let postData = {
  214. idx: 0,
  215. sum: 999,
  216. user: {
  217. hospital:{
  218. id:user.currentHospital.id
  219. },
  220. name: user.name,
  221. }
  222. }
  223. api_user(postData).then(res => {
  224. if(res.status == 200){
  225. let user = loginUserStore.loginUser.user
  226. if(uni.getStorageSync('rapidRepNext')){
  227. let data = JSON.parse(uni.getStorageSync('rapidRepNext'))
  228. if(data){
  229. dataInfo.departmentName = data.departmentName
  230. dataInfo.department = data.department
  231. }
  232. }else{
  233. dataInfo.departmentName = res.list[0].dept.dept
  234. dataInfo.department = res.list[0].dept.id
  235. }
  236. itemUser.value = res.list.find(i=>i.id==user.id)
  237. }else{
  238. uni.showToast({
  239. icon: 'none',
  240. title: res.msg || '请求数据失败!'
  241. });
  242. }
  243. })
  244. }
  245. // 点击tab
  246. function clickTab(tabValue){
  247. if(dataInfo.tabActiveValue == tabValue){
  248. return;
  249. }
  250. dataInfo.tabActiveValue = tabValue;
  251. isSubmit.value = false;
  252. reset();
  253. if(tabValue=='doing'){
  254. let user = loginUserStore.loginUser.user
  255. if(user){
  256. dataInfo.department = user.dept.id
  257. }
  258. }else{
  259. dataInfo.department = ''
  260. }
  261. dataInfo.category = dataInfo.incidentData.category || {};
  262. dataInfo.synergetic = dataInfo.incidentData.synergetic || [];
  263. newProvideBackupMachine.value = dataInfo.incidentData.provideBackupMachine
  264. initForm();
  265. }
  266. // 获取事件详情
  267. function getIncidentDetail(){
  268. let user = loginUserStore.loginUser.user
  269. if(uni.getStorageSync('rapidRepNext')){
  270. let data = JSON.parse(uni.getStorageSync('rapidRepNext'))
  271. if(data){
  272. dataInfo.department = data.department//报修科室
  273. dataInfo.departmentName = data.departmentName//报修科室
  274. dataInfo.address = data.address//详细地址
  275. dataInfo.contacts = data.contacts//联系人
  276. dataInfo.contactsInformation = data.contactsInformation//手机
  277. dataInfo.branch = Number(data.branch)//院区
  278. dataInfo.areaId = data.areaId//楼栋
  279. // getRepairTypes()
  280. }
  281. }else if(user){
  282. if(user.currentHospital.parent){
  283. dataInfo.branch = user.currentHospital.parent.id
  284. }else{
  285. dataInfo.branch = user.currentHospital.id
  286. }
  287. dataInfo.contacts = user.name
  288. dataInfo.contactsInformation = user.phone
  289. dataInfo.department = user.dept.id
  290. dataInfo.departmentName = user.dept.dept
  291. // getRepairTypes()
  292. }
  293. if(uni.getStorageSync('repairData')){
  294. let data = JSON.parse(uni.getStorageSync('repairData'))
  295. if(data){
  296. dataInfo.description = data.description
  297. dataInfo.handlerImgList = data.handlerImgList
  298. dataInfo.serverId = data.serverId
  299. dataInfo.assetId = data.assetId
  300. }
  301. }
  302. let data = JSON.parse(uni.getStorageSync('sysData'))
  303. isDept.value = data.find(i=>i.keyconfig=='deptRepair')
  304. isRepair.value = data.find(i=>i.keyconfig=='publicRepair')
  305. if(isDept.value.valueconfig==1 && isRepair.value.valueconfig==1){
  306. dataInfo.tabs = [
  307. {id: 5, name: '科内报修', value: 'doing', num: ''},
  308. {id: 6, name: '公共报修', value: 'overtime', num: ''},
  309. ]
  310. dataInfo.tabActiveValue = 'doing'
  311. }else if(isDept.value.valueconfig==1){
  312. dataInfo.tabs = [
  313. {id: 5, name: '科内报修', value: 'doing', num: ''},
  314. ]
  315. dataInfo.tabActiveValue = 'doing'
  316. }else if(isRepair.value.valueconfig==1){
  317. dataInfo.tabs = [
  318. {id: 6, name: '公共报修', value: 'overtime', num: ''},
  319. ]
  320. dataInfo.tabActiveValue = 'overtime'
  321. getbuildingList()
  322. }
  323. let postData = {
  324. "key": 'repair_incident_type',
  325. "type": "list",
  326. };
  327. api_getDictionary(postData).then(res => {
  328. res = res || [];
  329. repairIncident.value = res
  330. })
  331. getBranch()
  332. }
  333. // 获取院区列表
  334. function getBranch(){
  335. let arr = loginUserStore.loginUser.hospital.filter(i=>i.parent==undefined)
  336. branchData.value = arr.map(v => ({
  337. text: v.hosName,
  338. value: v.id,
  339. }));
  340. }
  341. // 科内报修选择院区
  342. function doingDeptChange(){
  343. dataInfo.department = ''
  344. dataInfo.departmentName = ''
  345. // getRepairTypes()
  346. }
  347. // 公区报修选择院区
  348. function overDeptChange(){
  349. getbuildingList()
  350. }
  351. // 跳转到搜索报修科室
  352. function selectDepartment(){
  353. uni.setStorageSync('rapidRepNext',JSON.stringify(dataInfo))
  354. uni.navigateTo({
  355. url: `/pages/searchDept/searchDept?type=repair&branchId=${dataInfo.branch}`
  356. })
  357. }
  358. // 获取报修科室列表
  359. function getRepairTypes(){
  360. uni.showLoading({
  361. title: "加载中",
  362. mask: true,
  363. });
  364. let postData = {
  365. department: {
  366. hospital: dataInfo.branch,
  367. },
  368. idx:0,
  369. sum:9999
  370. }
  371. api_department(postData).then(res => {
  372. uni.hideLoading();
  373. res = res.list || [];
  374. dataInfo.repairTypeList = res.map(v => ({
  375. text: v.dept,
  376. value: v.id,
  377. floor: v.floor
  378. }));
  379. let isDeptId = dataInfo.repairTypeList.filter(i=>i.value==dataInfo.department)
  380. if(isDeptId.length==0){
  381. dataInfo.department = ''
  382. }
  383. })
  384. }
  385. // 获取楼栋
  386. function getbuildingList(){
  387. uni.showLoading({
  388. title: "加载中",
  389. mask: true,
  390. });
  391. let postData = {
  392. idx: 0,
  393. sum: 9999,
  394. building:{
  395. hosId: dataInfo.branch,
  396. }
  397. };
  398. getFetchDataList("simple/data", "building", postData)
  399. .then((res) => {
  400. uni.hideLoading();
  401. res = res.list || [];
  402. dataInfo.buildingTypeList = res.map(v => ({
  403. text: v.buildingName,
  404. value: v.id
  405. }));
  406. });
  407. }
  408. // 获取科室地点
  409. function getAddressList(){
  410. uni.showLoading({
  411. title: "加载中",
  412. mask: true,
  413. });
  414. let postData = {
  415. idx: 0,
  416. sum: 10,
  417. qrCode:{
  418. deptId: dataInfo.department,
  419. }
  420. };
  421. getFetchDataList("simple/data", "qrCode", postData)
  422. .then((res) => {
  423. uni.hideLoading();
  424. dataInfo.addressList = res.list || [];
  425. });
  426. }
  427. function areaChange(e){
  428. getPlaceList(dataInfo.areaId)
  429. }
  430. // 获取楼层
  431. function getPlaceList(e){
  432. let postData = {
  433. idx: 0,
  434. sum: 9999,
  435. floor: {
  436. buildId:e,
  437. hosId:dataInfo.branch
  438. }
  439. };
  440. getFetchDataList("simple/data", "floor", postData)
  441. .then((res) => {
  442. uni.hideLoading();
  443. res = res.list || [];
  444. dataInfo.placeTypeList = res.map(v => ({
  445. text: v.floorName,
  446. value: v.id
  447. }));
  448. });
  449. }
  450. // 提交
  451. function submit(){
  452. isSubmit.value = true;
  453. submitHandler()
  454. }
  455. // 处理提交事件
  456. async function handlerOrder(){
  457. let postData = {
  458. incident: dataInfo.incidentData,
  459. serverId: ''
  460. }
  461. postData.incident.place = {}
  462. if(dataInfo.tabActiveValue === 'doing'){
  463. let data = repairIncident.value.find(i=>i.value=='dept')
  464. dataInfo.incidentData.repairIncidentType.id = data.id
  465. let result = await api_departmentDetail(dataInfo.department);
  466. let deptDTO = result.data || {};
  467. postData.incident.place.id = deptDTO.floor ? deptDTO.floor.id : undefined;
  468. }else if(dataInfo.tabActiveValue === 'overtime'){
  469. let data = repairIncident.value.find(i=>i.value=='public')
  470. dataInfo.incidentData.repairIncidentType.id = data.id
  471. postData.incident.place.id = dataInfo.placeId;
  472. }
  473. dataInfo.incidentData.department.id = dataInfo.department
  474. postData.incident.description = dataInfo.description;
  475. if(dataInfo.serverId){
  476. postData.serverId = dataInfo.serverId;
  477. }else{
  478. delete postData.serverId
  479. }
  480. postData.incident.assetId = dataInfo.assetId;
  481. postData.incident.houseNumber = dataInfo.address;
  482. postData.incident.contacts = dataInfo.contacts;
  483. postData.incident.contactsInformation = dataInfo.contactsInformation;
  484. postData.incident.hosId = dataInfo.branch;
  485. let repairsType = uni.getStorageSync('repairsType')
  486. // postData.incident.buildId = dataInfo.areaId; //areaId:楼栋
  487. // postData.incident.floorId = dataInfo.placeId;//placeId:楼层
  488. // buildId
  489. // floorId
  490. api_getDictionary({
  491. key: "incident_source",
  492. type: "list"
  493. }).then(res1=>{
  494. let incidentSourceList = res1 || [];
  495. let im = incidentSourceList.find(v => v.value === 'im');
  496. // api_sj().then(res2=>{
  497. // postData.incident.incidentsign = res2.data;
  498. postData.incident.source = im;
  499. postData.incident.fromWx = true;
  500. postData.incident.requester = loginUserStore.loginUser.user;
  501. postData.incident.acceptUser = loginUserStore.loginUser.user;
  502. postData.incident.deleteFlag = 0
  503. api_request(postData).then(res=>{
  504. if(res.state == 200){
  505. dataInfo.incidentId = res.data.id
  506. let handlerOrder$ = res.data;
  507. let requestList = [handlerOrder$];
  508. if(dataInfo.handlerImgList.length){ // 有图片
  509. dataInfo.handlerImgList.forEach(v => {
  510. let handlerOrderImg$ = handlerOrderImg(v);
  511. requestList.push(handlerOrderImg$);
  512. })
  513. console.log(9999,requestList);
  514. Promise.all(requestList).then(resList => {
  515. uni.hideLoading();
  516. console.log(9999,resList);
  517. // if(resList[0].state == 200){
  518. uni.showToast({
  519. icon: 'none',
  520. title: '报修成功',
  521. mask: true,
  522. });
  523. setTimeout(() => {
  524. uni.setStorageSync('rapidRepNext','')
  525. uni.setStorageSync('repairData','')
  526. if(repairsType=='home'){
  527. uni.reLaunch({
  528. url: '/pages/repair/home',
  529. })
  530. }else{
  531. uni.navigateTo({
  532. url: `/pages/myRepair/myRepair?type=1`
  533. })
  534. }
  535. }, 1500)
  536. // }else{
  537. // uni.showToast({
  538. // icon: 'none',
  539. // title: resList[0].msg || '请求数据失败!'
  540. // });
  541. // }
  542. })
  543. }else{
  544. uni.showToast({
  545. icon: 'none',
  546. title: '报修成功',
  547. mask: true,
  548. });
  549. setTimeout(() => {
  550. uni.setStorageSync('rapidRepNext','')
  551. uni.setStorageSync('repairData','')
  552. if(repairsType=='home'){
  553. uni.reLaunch({
  554. url: '/pages/repair/home',
  555. })
  556. }else{
  557. uni.navigateTo({
  558. url: `/pages/myRepair/myRepair?type=1`
  559. })
  560. }
  561. }, 1500)
  562. }
  563. }else{
  564. uni.showToast({
  565. icon: 'none',
  566. title: res.msg || '请求数据失败!'
  567. });
  568. }
  569. })
  570. // })
  571. })
  572. }
  573. // 处理图片
  574. function handlerOrderImg(imgObj){
  575. let allData = null
  576. if(imgObj.extname=='mp4' ||
  577. imgObj.extname=='avi' ||
  578. imgObj.extname=='mpeg' ||
  579. imgObj.extname=='wmv'){
  580. allData = uploadFile(imgObj, 'wechatIncidentVideo', dataInfo.incidentId)
  581. }else{
  582. allData = uploadFile(imgObj, 'wechatRequesterIncident', dataInfo.incidentId)
  583. }
  584. return allData
  585. }
  586. // 处理提交
  587. function submitHandler(){
  588. console.log(dataInfo);
  589. if(dataInfo.tabActiveValue=='doing'){
  590. if(dataInfo.department==''){
  591. uni.showToast({
  592. icon: 'none',
  593. title: '请选择报修科室'
  594. });
  595. return;
  596. }
  597. }else{
  598. if(dataInfo.branch==''){
  599. uni.showToast({
  600. icon: 'none',
  601. title: '请选择院区'
  602. });
  603. return;
  604. }
  605. if(dataInfo.areaId==''){
  606. uni.showToast({
  607. icon: 'none',
  608. title: '请选择楼栋'
  609. });
  610. return;
  611. }
  612. if(dataInfo.placeId==''){
  613. uni.showToast({
  614. icon: 'none',
  615. title: '请选择楼层'
  616. });
  617. return;
  618. }
  619. }
  620. if(dataInfo.address==''){
  621. uni.showToast({
  622. icon: 'none',
  623. title: '请输入详细地址'
  624. });
  625. return;
  626. }
  627. if(dataInfo.contacts==''){
  628. uni.showToast({
  629. icon: 'none',
  630. title: '请输入联系人'
  631. });
  632. return;
  633. }
  634. if(dataInfo.contactsInformation==''){
  635. uni.showToast({
  636. icon: 'none',
  637. title: '请输入联系电话'
  638. });
  639. return;
  640. }
  641. console.log(dataInfo.handlerImgList)
  642. uni.showLoading({
  643. title: "加载中",
  644. mask: true,
  645. });
  646. handlerOrder()
  647. }
  648. // 获取文本内容
  649. function getHtml(html) {
  650. const tempDiv = document.createElement('div');
  651. tempDiv.innerHTML = html;
  652. return tempDiv.textContent || tempDiv.innerText || '';
  653. }
  654. onLoad((option) => {
  655. initForm()
  656. getIncidentDetail();
  657. getAddressList();
  658. })
  659. </script>
  660. <style lang="scss" scoped>
  661. .handler{
  662. height: 100%;
  663. display: flex;
  664. flex-direction: column;
  665. justify-content: space-between;
  666. .head{
  667. height: 88rpx;
  668. display: flex;
  669. position: fixed;
  670. z-index: 99;
  671. width: 100%;
  672. background-color: #fff;
  673. font-size: 30rpx;
  674. .tab{
  675. flex: 1;
  676. display: flex;
  677. justify-content: center;
  678. align-items: center;
  679. border-bottom: 4rpx solid transparent;
  680. &.active{
  681. color: $uni-primary;
  682. border-color: $uni-primary;
  683. }
  684. }
  685. }
  686. .body{
  687. margin-top: 88rpx;
  688. box-sizing: border-box;
  689. flex: 1;
  690. min-height: 0;
  691. &.bg{
  692. background-color: #F7F7F7;
  693. }
  694. .summaryItem{
  695. &:first-of-type{
  696. .summaryItem_head{
  697. border-bottom: 1rpx solid #DDDDDD;
  698. }
  699. }
  700. .summary_total{
  701. padding: 20rpx 0;
  702. display: flex;
  703. justify-content: center;
  704. align-items: center;
  705. }
  706. .summaryItem_head{
  707. padding: 24rpx;
  708. font-size: 26rpx;
  709. color: #3A3A3A;
  710. }
  711. .summaryItem_body{
  712. font-size: 30rpx;
  713. background-color: #fff;
  714. .summaryItem_bodyItem{
  715. padding: 24rpx;
  716. border-bottom: 1rpx solid #DDDDDD;
  717. .summaryItem_bodyItem_top{
  718. display: flex;
  719. justify-content: space-between;
  720. align-items: center;
  721. .value{
  722. padding-left: 48rpx;
  723. flex-shrink: 0;
  724. }
  725. }
  726. .summaryItem_bodyItem_bottom{
  727. margin-top: 24rpx;
  728. display: flex;
  729. justify-content: space-between;
  730. align-items: center;
  731. .name{
  732. text-align: right;
  733. flex: 1;
  734. }
  735. .value{
  736. width: 240rpx;
  737. text-align: right;
  738. padding-left: 48rpx;
  739. flex-shrink: 0;
  740. }
  741. }
  742. }
  743. }
  744. .summaryItem_foot{
  745. font-size: 30rpx;
  746. background-color: #fff;
  747. &.total{
  748. margin-top: 24rpx;
  749. }
  750. .summaryItem_foot_total{
  751. padding: 24rpx 0;
  752. display: flex;
  753. justify-content: center;
  754. align-items: center;
  755. }
  756. .summaryItem_foot_add{
  757. border-top: 1rpx solid #DDDDDD;
  758. padding: 24rpx 0;
  759. display: flex;
  760. justify-content: center;
  761. align-items: center;
  762. .newicon-icon-test{
  763. font-size: 30rpx;
  764. font-weight: bold;
  765. }
  766. }
  767. }
  768. }
  769. .form_item_column{
  770. padding-top: 24rpx;
  771. min-height: 86rpx;
  772. .form_item{
  773. padding-top: 0;
  774. min-height: auto;
  775. }
  776. }
  777. .candidate{
  778. display: flex;
  779. flex-wrap: wrap;
  780. .candidate-item{
  781. padding: 6rpx 15rpx;
  782. font-size: 26rpx;
  783. color: #949494;
  784. background: #E9E9E9;
  785. border-radius: 50rpx;
  786. margin-right: 20rpx;
  787. margin-top: 15rpx;
  788. }
  789. }
  790. .form_item{
  791. display: flex;
  792. align-items: center;
  793. padding-top: 24rpx;
  794. min-height: 86rpx;
  795. &.column{
  796. height: auto;
  797. flex-direction: column;
  798. align-items: flex-start;
  799. .import-rep{
  800. padding: 5rpx 10rpx;
  801. border-radius: 50rpx;
  802. background: #d1fcd5;
  803. color: #49b856;
  804. font-size: 24rpx;
  805. }
  806. .title{
  807. margin-right: 0;
  808. }
  809. .title-width{
  810. width: 100%;
  811. }
  812. .title-fl-sb{
  813. display: flex;
  814. justify-content: space-between;
  815. width: 100%;
  816. }
  817. .value{
  818. margin-top: 10rpx;
  819. padding-left: 20rpx;
  820. box-sizing: border-box;
  821. }
  822. .tips{
  823. padding: 24rpx;
  824. text-align: center;
  825. font-size: 22rpx;
  826. color: #909399;
  827. width: 100%;
  828. box-sizing: border-box;
  829. }
  830. }
  831. .title{
  832. font-size: 26rpx;
  833. display: flex;
  834. align-items: center;
  835. margin-right: 12rpx;
  836. flex-shrink: 0;
  837. &.select{
  838. width: calc(5em + 20rpx);
  839. }
  840. }
  841. .value{
  842. width: 100%;
  843. &.category{
  844. width: 100%;
  845. display: flex;
  846. justify-content: space-between;
  847. align-items: center;
  848. .categoryName{
  849. font-size: 26rpx;
  850. color: #555;
  851. flex: 1;
  852. }
  853. .newicon-weibiaoti2010104{
  854. color: $uni-primary;
  855. margin-left: 24rpx;
  856. }
  857. }
  858. .imgTips{
  859. color: #909399;
  860. font-size: 22rpx;
  861. }
  862. }
  863. .item-input{
  864. border: 1px solid #DBDBDB;
  865. height: 70rpx;
  866. line-height: 70rpx;
  867. padding: 0 10rpx;
  868. border-radius: 4rpx;
  869. width: 100%;
  870. font-size: 14px;
  871. }
  872. .synergeticNames{
  873. font-size: 26rpx;
  874. margin-right: 24rpx;
  875. }
  876. .synergeticAdd{
  877. flex-shrink: 0;
  878. }
  879. }
  880. }
  881. }
  882. </style>