rapidRep.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733
  1. <template>
  2. <view class="handler">
  3. <view class="body view-body">
  4. <view class="form_item column">
  5. <view class="title"><text class="required newicon newicon-bitian"></text>故障描述:</view>
  6. <uni-easyinput class="value" type="textarea" v-model="dataInfo.description" placeholder="请输入故障描述" :class="{formRed: isSubmit && !dataInfo.description.trim()}" />
  7. </view>
  8. <!-- <view class="candidate">
  9. <view class="candidate-item" v-for="item in candidateData" :key="item" @click="itemCandidate(item)">{{item.name}}</view>
  10. </view> -->
  11. <view class="form_item" v-if="cmdbRepair.valueconfig==1">
  12. <view class="title select">关联资产:</view>
  13. <input class="item-input" placeholder="请扫描资产卡二维码" v-model="dataInfo.property"/>
  14. <text class="newicon newicon-saoma icon" @click="scanCodes"></text>
  15. </view>
  16. <view class="form_item">
  17. <view class="title">照片录像:</view>
  18. <view class="value">
  19. <uni-file-picker ref="handlerImgRef" v-model="dataInfo.handlerImgList"
  20. limit="4" @success="handlerImgSuccess" file-mediatype="all" mode="grid"
  21. @fail="handlerImgFail" @select="handlerImgSelect" @delete="handlerImgDelete">
  22. </uni-file-picker>
  23. <view class="imgTips">(支持JPG/PNG格式图片,单张大小3M以内,录像支持30秒)</view>
  24. </view>
  25. </view>
  26. <view class="form_item">
  27. <view class="title">录音:</view>
  28. <view class="chunk" v-if="!dataInfo.localId" @longpress="examineRecord($event)" @touchend="recStop($event)">长按录音</view>
  29. <view class="chunk-2" v-if="dataInfo.localId">
  30. <view class="chunk-2-2" @click="playAudio">
  31. <view>播放录音</view>
  32. <image v-if="isPlayOut==1" class="chunk-img" src="../../static/img/audio_play.gif" mode=""></image>
  33. </view>
  34. <icon class="chunk-icon" type="clear" size="22" @click="clearRec"/>
  35. </view>
  36. </view>
  37. </view>
  38. <view class="foot_common_btns">
  39. <button @click="goBackOrToList" type="default" class="cancelButton btn">返回</button>
  40. <button @click="submit" type="default" class="primaryButton btn">下一步</button>
  41. </view>
  42. <view class="mask-class" v-if="isrecordType">
  43. <view class="mask-box">
  44. <image class="mask-img" src="../../static/img/audio_play.gif" mode=""></image>
  45. </view>
  46. <view class="mask-bottom">
  47. <view class="mask-bottom-txt">松开完成</view>
  48. </view>
  49. </view>
  50. </view>
  51. </template>
  52. <script setup>
  53. import { SM } from "@/http/http.js"
  54. import { ref, reactive, computed } from 'vue'
  55. import NumberModal from '@/components/NumberModal.vue';
  56. import { onLoad } from '@dcloudio/uni-app'
  57. import { generateNumberArray } from '@/utils/index.js'
  58. import { api_group, api_incidentDetail, api_getSolution, api_user, api_incidentTask, api_branch, api_dutyDepartment, api_getDictionary, api_querySummaryDoc, api_addSummaryDoc } from "@/http/api.js"
  59. import { defaultColor } from '@/static/js/theme.js'
  60. import { useSetTitle } from '@/share/useSetTitle.js'
  61. import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
  62. import { useUploadFile } from '@/share/useUploadFile.js'
  63. import { useGoBack } from '@/share/useGoBack.js'
  64. import { useLoginUserStore } from '@/stores/loginUser'
  65. import { useHandlerStore } from '@/stores/handler'
  66. import { post } from "@/http/http.js"
  67. import wx from 'weixin-jsapi'
  68. // import Recorder from 'recorder-core';
  69. // import 'recorder-core/src/engine/mp3';
  70. // import 'recorder-core/src/engine/mp3-engine';
  71. // import 'recorder-core/src/engine/wav';
  72. // import 'recorder-core/src/extensions/waveview';
  73. useSetTitle();
  74. const loginUserStore = useLoginUserStore();
  75. const handlerStore = useHandlerStore();
  76. const { makePhoneCall } = useMakePhoneCall();
  77. const { uploadFile } = useUploadFile();
  78. const { goBack } = useGoBack();
  79. let rec = null
  80. let wave = null
  81. // 主题颜色
  82. const primaryColor = ref(defaultColor)
  83. // 数据
  84. const dataInfo = reactive({
  85. tabs: [
  86. // {id: 5, name: '故障处理', value: 'doing', num: ''},
  87. // {id: 6, name: '延期处理', value: 'overtime', num: ''},
  88. ],
  89. tabActiveValue: 0,//当前选择的tab
  90. incidentId: undefined,//事件ID
  91. incidentData: {},//事件对象
  92. description: '',//故障描述
  93. property:'', //资产
  94. assetId:'',//资产id
  95. handlerImgList: [],//处理图片列表
  96. localId:'' ,//录音本地id
  97. serverId:'',//录音服务器id
  98. })
  99. // 故障处理用是否提供备用机
  100. const newProvideBackupMachine = ref(0)
  101. // 知识库id
  102. const solutionId = ref(null)
  103. // 是否提交
  104. const isSubmit = ref(false)
  105. // 处理图片
  106. const handlerImgRef = ref(null)
  107. const ifShow = ref(false)
  108. const listStyles = ref({
  109. // 是否显示边框
  110. border: true,
  111. // 是否显示分隔线
  112. dividline: true,
  113. // 线条样式
  114. borderStyle: {
  115. width:1,
  116. color:'blue',
  117. radius:2
  118. }
  119. })
  120. const candidateData = ref([
  121. {name:'马桶肃杀'},
  122. {name:'马桶肃杀'},
  123. {name:'马桶肃杀'},
  124. {name:'马桶肃杀'},
  125. {name:'马桶肃杀'},
  126. {name:'马桶肃杀'},
  127. {name:'马桶肃杀'},
  128. {name:'马桶肃杀'},
  129. {name:'马桶肃杀'},
  130. ])
  131. const cmdbRepair = ref(null)
  132. const recwave = ref(null);
  133. // 是否播放完毕
  134. const isPlayOut = ref(null);
  135. // 录音状态
  136. const isrecordType = ref(false);
  137. // 上一步或者返回列表
  138. function goBackOrToList(){
  139. uni.setStorageSync('repairData','')
  140. goBack();
  141. }
  142. function itemCandidate(item){
  143. dataInfo.description = item.name
  144. }
  145. // 开始录音
  146. function recOpen() {
  147. let param = {
  148. requestUrl: location.href.split('#')[0]
  149. };
  150. post("/wechat/getJsConfig", param).then(res => {
  151. if (res) {
  152. wx.config({
  153. debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
  154. appId: res.appId, // 必填,企业号的唯一标识,此处填写企业号corpid
  155. timestamp: res.timestamp, // 必填,生成签名的时间戳
  156. nonceStr: res.nonceStr, // 必填,生成签名的随机串
  157. signature: res.signature, // 必填,签名,见附录1
  158. jsApiList: res.jsApiList // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
  159. });
  160. wx.ready(function() {
  161. // 开始录音
  162. wx.startRecord({
  163. success: function() {
  164. isrecordType.value = true
  165. },
  166. cancel: function() {
  167. alert('用户拒绝授权录音');
  168. }
  169. });
  170. // 录音录音自动停止接口
  171. wx.onVoiceRecordEnd({
  172. complete: function (res) {
  173. dataInfo.localId = res.localId;
  174. }
  175. })
  176. // 监听语音播放完毕接口
  177. wx.onVoicePlayEnd({
  178. success: function (res) {
  179. dataInfo.localId = res.localId; // 返回音频的本地ID
  180. isPlayOut.value = 2
  181. },
  182. fail:function(res){
  183. },
  184. complete: function(res) {
  185. dataInfo.localId = res.localId; // 返回音频的本地ID
  186. isPlayOut.value = 2
  187. }
  188. });
  189. });
  190. }
  191. })
  192. }
  193. // 开始录音
  194. function examineRecord(e) {
  195. // uni.vibrateLong({
  196. // success: function () {
  197. // console.log('success');
  198. // }
  199. // });
  200. recOpen()
  201. }
  202. // 结束录音
  203. function recStop(e) {
  204. if(isrecordType.value){
  205. wx.stopRecord({
  206. success: function (res) {
  207. dataInfo.localId = res.localId;
  208. isrecordType.value = false
  209. }
  210. });
  211. }
  212. }
  213. // 播放录音
  214. function playAudio(){
  215. wx.playVoice({
  216. localId: dataInfo.localId, // 需要播放的音频的本地ID,由stopRecord接口获得
  217. success: function (res) {
  218. isPlayOut.value = 1
  219. }
  220. })
  221. }
  222. // 删除录音
  223. function clearRec(){
  224. dataInfo.localId = null
  225. isPlayOut.value = 2
  226. }
  227. // 上传录音
  228. function uploadAudio(){
  229. wx.uploadVoice({
  230. localId: dataInfo.localId, // 需要上传的音频的本地ID,由stopRecord接口获得
  231. isShowProgressTips: 1, // 默认为1,显示进度提示
  232. success: function (res) {
  233. dataInfo.serverId = res.serverId; // 返回音频的服务器端ID
  234. setTimeout(_=>{
  235. uni.setStorageSync('repairData',JSON.stringify(dataInfo))
  236. uni.navigateTo({
  237. url: `/pages/repair/rapidRepNext`,
  238. });
  239. },100)
  240. }
  241. });
  242. }
  243. // 扫码资产码
  244. function scanCodes(){
  245. SM().then((res) => {
  246. dataInfo.assetId = res;
  247. })
  248. }
  249. // 上传处理图片成功
  250. function handlerImgSuccess(e){
  251. dataInfo.handlerImgList.forEach(v => {
  252. v.url = v.path;
  253. })
  254. console.log('上传成功',dataInfo.handlerImgList);
  255. let handlerOrder$ = handlerOrder();
  256. let requestList = [handlerOrder$];
  257. dataInfo.handlerImgList.forEach(v => {
  258. let handlerOrderImg$ = handlerOrderImg(v);
  259. requestList.push(handlerOrderImg$);
  260. })
  261. Promise.all(requestList).then(resList => {
  262. uni.hideLoading();
  263. console.log(resList);
  264. if(resList[0].state == 200){
  265. uni.showToast({
  266. icon: 'none',
  267. title: '处理成功',
  268. mask: true,
  269. });
  270. }else{
  271. uni.showToast({
  272. icon: 'none',
  273. title: resList[0].msg || '请求数据失败!'
  274. });
  275. }
  276. })
  277. }
  278. // 上传处理图片失败
  279. function handlerImgFail(e){
  280. dataInfo.handlerImgList.forEach(v => {
  281. v.url = v.path;
  282. })
  283. console.log(dataInfo.handlerImgList);
  284. }
  285. // 选择上传图片
  286. function handlerImgSelect(e){
  287. console.log(6666,e.tempFiles)
  288. if(e.tempFiles[0].extname=='mp4' ||
  289. e.tempFiles[0].extname=='avi' ||
  290. e.tempFiles[0].extname=='mpeg' ||
  291. e.tempFiles[0].extname=='wmv'){
  292. let item = dataInfo.handlerImgList.findIndex(i=>i.extname==e.tempFiles[0].extname)
  293. if(item!=-1){
  294. uni.showToast({
  295. icon: 'none',
  296. title: '只能上传一个视频文件'
  297. });
  298. dataInfo.handlerImgList = dataInfo.handlerImgList.splice(item,1);
  299. }else{
  300. dataInfo.handlerImgList = dataInfo.handlerImgList.concat(e.tempFiles);
  301. }
  302. }else{
  303. dataInfo.handlerImgList = dataInfo.handlerImgList.concat(e.tempFiles);
  304. if(e.tempFiles[0].extname=='png' ||
  305. e.tempFiles[0].extname=='jpg' ||
  306. e.tempFiles[0].extname=='gif' ||
  307. e.tempFiles[0].extname=='mp4' ||
  308. e.tempFiles[0].extname=='avi' ||
  309. e.tempFiles[0].extname=='mpeg' ||
  310. e.tempFiles[0].extname=='wmv'
  311. ){
  312. }else{
  313. uni.showToast({
  314. icon: 'none',
  315. title: '不支持此类型文件'
  316. });
  317. let item = dataInfo.handlerImgList.findIndex(i=>i.uuid==e.tempFiles[0].uuid)
  318. dataInfo.handlerImgList.splice(item,1);
  319. }
  320. }
  321. }
  322. // 删除上传图片
  323. function handlerImgDelete(e){
  324. dataInfo.handlerImgList = dataInfo.handlerImgList.filter(v => e.tempFile.uuid != v.uuid);
  325. console.log(dataInfo.handlerImgList);
  326. }
  327. // 获取事件详情
  328. function getIncidentDetail(){
  329. if(uni.getStorageSync('repairData')){
  330. let data = JSON.parse(uni.getStorageSync('repairData'))
  331. if(data){
  332. dataInfo.description = data.description
  333. dataInfo.property = data.property
  334. dataInfo.assetId = data.assetId
  335. dataInfo.handlerImgList = data.handlerImgList
  336. dataInfo.recBlob = data.recBlob
  337. }
  338. }
  339. }
  340. // 下一步
  341. function submit(){
  342. isSubmit.value = true;
  343. if(dataInfo.description==''){
  344. uni.showToast({
  345. icon: 'none',
  346. title: '请选择输入故障描述'
  347. });
  348. return;
  349. }
  350. if(dataInfo.localId){
  351. uploadAudio()
  352. }else{
  353. uni.setStorageSync('repairData',JSON.stringify(dataInfo))
  354. uni.navigateTo({
  355. url: `/pages/repair/rapidRepNext`,
  356. });
  357. }
  358. }
  359. // 处理提交事件
  360. function handlerOrder(){
  361. dataInfo.incidentData.returnBackupMachine = dataInfo.returnBackupMachine
  362. let postData = {
  363. incident: dataInfo.incidentData
  364. }
  365. postData.incident.description = dataInfo.description;
  366. postData.incident.assetId = dataInfo.assetId;
  367. return api_incidentTask(dataInfo.tabActiveValue, postData);
  368. }
  369. // 处理图片
  370. function handlerOrderImg(imgObj){
  371. return uploadFile(imgObj, 'wechatRequesterIncident', dataInfo.incidentId)
  372. }
  373. onLoad((option) => {
  374. // let storeData = handlerStore.handler.data
  375. // if(storeData && storeData.type=='rep'){
  376. // solutionId.value = storeData.solutionId
  377. // dataInfo.isSummaryNext = storeData.isSummaryNext
  378. // dataInfo.incidentId = storeData.incidentId;
  379. // }else{
  380. // dataInfo.incidentId = option.incidentId;
  381. // dataInfo.isSummaryNext = option.isSummaryNext == 1;
  382. // }
  383. let data = JSON.parse(uni.getStorageSync('sysData'))
  384. cmdbRepair.value = data.find(i=>i.keyconfig=='cmdbRepair')
  385. getIncidentDetail();
  386. })
  387. </script>
  388. <style lang="scss" scoped>
  389. .mask-class{
  390. position: fixed;
  391. width: 100%;
  392. height: 100%;
  393. top: 0;
  394. left: 0;
  395. background: rgba(0,0,0,0.3);
  396. display: flex;
  397. justify-content: center;
  398. align-items: center;
  399. .mask-box{
  400. height: 160rpx;
  401. padding: 0 25%;
  402. background: #95EC6A;
  403. border-radius: 25rpx;
  404. display: flex;
  405. align-items: center;
  406. .mask-img{
  407. width: 100rpx;
  408. height: 100rpx;
  409. position: relative;
  410. background-color: transparent;
  411. mix-blend-mode: multiply;
  412. }
  413. }
  414. .mask-bottom{
  415. position: absolute;
  416. bottom: 0;
  417. width: 100%;
  418. height: 300rpx;
  419. color: #A5A5A5;
  420. background: #eee;
  421. text-align: center;
  422. border-top-left-radius: 30rpx;
  423. border-top-right-radius: 30rpx;
  424. .mask-bottom-txt{
  425. margin-top: 50rpx;
  426. font-weight: 500;
  427. }
  428. }
  429. }
  430. .handler{
  431. height: 100%;
  432. display: flex;
  433. flex-direction: column;
  434. justify-content: space-between;
  435. padding: 0 30rpx;
  436. .head{
  437. height: 88rpx;
  438. display: flex;
  439. position: fixed;
  440. z-index: 99;
  441. width: 100%;
  442. background-color: #fff;
  443. font-size: 30rpx;
  444. .tab{
  445. flex: 1;
  446. display: flex;
  447. justify-content: center;
  448. align-items: center;
  449. border-bottom: 4rpx solid transparent;
  450. &.active{
  451. color: $uni-primary;
  452. border-color: $uni-primary;
  453. }
  454. }
  455. }
  456. .body{
  457. box-sizing: border-box;
  458. flex: 1;
  459. min-height: 0;
  460. &.bg{
  461. background-color: #F7F7F7;
  462. }
  463. .summaryItem{
  464. &:first-of-type{
  465. .summaryItem_head{
  466. border-bottom: 1rpx solid #DDDDDD;
  467. }
  468. }
  469. .summary_total{
  470. padding: 20rpx 0;
  471. display: flex;
  472. justify-content: center;
  473. align-items: center;
  474. }
  475. .summaryItem_head{
  476. padding: 24rpx;
  477. font-size: 26rpx;
  478. color: #3A3A3A;
  479. }
  480. .summaryItem_body{
  481. font-size: 30rpx;
  482. background-color: #fff;
  483. .summaryItem_bodyItem{
  484. padding: 24rpx;
  485. border-bottom: 1rpx solid #DDDDDD;
  486. .summaryItem_bodyItem_top{
  487. display: flex;
  488. justify-content: space-between;
  489. align-items: center;
  490. .value{
  491. padding-left: 48rpx;
  492. flex-shrink: 0;
  493. }
  494. }
  495. .summaryItem_bodyItem_bottom{
  496. margin-top: 24rpx;
  497. display: flex;
  498. justify-content: space-between;
  499. align-items: center;
  500. .name{
  501. text-align: right;
  502. flex: 1;
  503. }
  504. .value{
  505. width: 240rpx;
  506. text-align: right;
  507. padding-left: 48rpx;
  508. flex-shrink: 0;
  509. }
  510. }
  511. }
  512. }
  513. .summaryItem_foot{
  514. font-size: 30rpx;
  515. background-color: #fff;
  516. &.total{
  517. margin-top: 24rpx;
  518. }
  519. .summaryItem_foot_total{
  520. padding: 24rpx 0;
  521. display: flex;
  522. justify-content: center;
  523. align-items: center;
  524. }
  525. .summaryItem_foot_add{
  526. border-top: 1rpx solid #DDDDDD;
  527. padding: 24rpx 0;
  528. display: flex;
  529. justify-content: center;
  530. align-items: center;
  531. .newicon-icon-test{
  532. font-size: 30rpx;
  533. font-weight: bold;
  534. }
  535. }
  536. }
  537. }
  538. .form_item_column{
  539. padding-top: 24rpx;
  540. min-height: 86rpx;
  541. .form_item{
  542. padding-top: 0;
  543. min-height: auto;
  544. }
  545. }
  546. .candidate{
  547. display: flex;
  548. flex-wrap: wrap;
  549. .candidate-item{
  550. padding: 6rpx 15rpx;
  551. font-size: 26rpx;
  552. color: #949494;
  553. background: #E9E9E9;
  554. border-radius: 50rpx;
  555. margin-right: 20rpx;
  556. margin-top: 15rpx;
  557. }
  558. }
  559. .form_item{
  560. display: flex;
  561. align-items: center;
  562. padding-top: 24rpx;
  563. min-height: 86rpx;
  564. position: relative;
  565. .chunk{
  566. width: 100%;
  567. height: 70rpx;
  568. line-height: 70rpx;
  569. text-align: center;
  570. background: #F7F8FA;
  571. box-shadow: 0px 3px 6px 1px rgba(0,0,0,0.16);
  572. border-radius: 10rpx;
  573. }
  574. .chunk-2{
  575. width: 100%;
  576. height: 70rpx;
  577. display: flex;
  578. align-items: center;
  579. .chunk-2-2{
  580. flex: 1;
  581. height: 70rpx;
  582. display: flex;
  583. align-items: center;
  584. justify-content: center;
  585. background: #F3FAF7;
  586. .chunk-img{
  587. width: 80rpx;
  588. height: 80rpx;
  589. position: relative;
  590. background-color: transparent;
  591. mix-blend-mode: multiply; /* 根据需要选择合适的混合模式 */
  592. }
  593. }
  594. .chunk-icon{
  595. margin-left: 20rpx;
  596. }
  597. }
  598. &.column{
  599. height: auto;
  600. flex-direction: column;
  601. align-items: flex-start;
  602. .import-rep{
  603. padding: 5rpx 10rpx;
  604. border-radius: 50rpx;
  605. background: #d1fcd5;
  606. color: #49b856;
  607. font-size: 24rpx;
  608. }
  609. .title{
  610. margin-right: 0;
  611. }
  612. .title-width{
  613. width: 100%;
  614. }
  615. .title-fl-sb{
  616. display: flex;
  617. justify-content: space-between;
  618. width: 100%;
  619. }
  620. .value{
  621. margin-top: 10rpx;
  622. // padding-left: 20rpx;
  623. box-sizing: border-box;
  624. }
  625. .tips{
  626. padding: 24rpx;
  627. text-align: center;
  628. font-size: 22rpx;
  629. color: #909399;
  630. width: 100%;
  631. box-sizing: border-box;
  632. }
  633. }
  634. .title{
  635. font-size: 26rpx;
  636. display: flex;
  637. align-items: center;
  638. margin-right: 12rpx;
  639. flex-shrink: 0;
  640. &.select{
  641. width: calc(5em + 20rpx);
  642. }
  643. }
  644. .value{
  645. width: 100%;
  646. &.category{
  647. width: 100%;
  648. display: flex;
  649. justify-content: space-between;
  650. align-items: center;
  651. .categoryName{
  652. font-size: 26rpx;
  653. color: #555;
  654. flex: 1;
  655. }
  656. .newicon-weibiaoti2010104{
  657. color: $uni-primary;
  658. margin-left: 24rpx;
  659. }
  660. }
  661. .imgTips{
  662. color: #909399;
  663. font-size: 22rpx;
  664. margin-top: 10rpx;
  665. }
  666. }
  667. .item-input{
  668. border: 1px solid #DBDBDB;
  669. height: 70rpx;
  670. line-height: 70rpx;
  671. padding: 0 10rpx;
  672. border-radius: 4rpx;
  673. width: 100%;
  674. font-size: 14px;
  675. }
  676. .icon{
  677. position: absolute;
  678. right: 20rpx;
  679. color: #49b856;
  680. }
  681. .synergeticNames{
  682. font-size: 26rpx;
  683. margin-right: 24rpx;
  684. }
  685. .synergeticAdd{
  686. flex-shrink: 0;
  687. }
  688. }
  689. }
  690. }
  691. </style>