rapidRepNext.vue 23 KB

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