rapidRepNext.vue 26 KB

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