rapidRep.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779
  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" disabled 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格式图片,单张大小10M以内,录像支持30秒)</view>
  24. </view>
  25. </view>
  26. <view class="form_item">
  27. <view class="title">录音:</view>
  28. <view class="chunk" v-if="!dataInfo.localId" @touchstart.stop="examineRecord($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" @click.stop="recStop($event)">结束录音</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_repairScanCode, 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:null,//资产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. const longPressTimer = ref(null); // 长按定时器
  138. const touchStartTime = ref(0); // 触摸开始时间
  139. // 上一步或者返回列表
  140. function goBackOrToList(){
  141. uni.setStorageSync('repairData','')
  142. uni.switchTab({
  143. url: `/pages/repair/home`
  144. })
  145. }
  146. function itemCandidate(item){
  147. dataInfo.description = item.name
  148. }
  149. // 开始录音
  150. function recOpen() {
  151. let param = {
  152. requestUrl: location.href.split('#')[0]
  153. };
  154. post("/wechat/getJsConfig", param).then(res => {
  155. if (res) {
  156. wx.config({
  157. debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
  158. appId: res.appId, // 必填,企业号的唯一标识,此处填写企业号corpid
  159. timestamp: res.timestamp, // 必填,生成签名的时间戳
  160. nonceStr: res.nonceStr, // 必填,生成签名的随机串
  161. signature: res.signature, // 必填,签名,见附录1
  162. jsApiList: res.jsApiList // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
  163. });
  164. wx.ready(function() {
  165. // 开始录音
  166. wx.startRecord({
  167. success: function(res) {
  168. isrecordType.value = true
  169. },
  170. cancel: function() {
  171. alert('用户拒绝授权录音');
  172. }
  173. });
  174. // 录音录音自动停止接口
  175. wx.onVoiceRecordEnd({
  176. complete: function (res) {
  177. dataInfo.localId = res.localId;
  178. }
  179. })
  180. // 监听语音播放完毕接口
  181. wx.onVoicePlayEnd({
  182. success: function (res) {
  183. dataInfo.localId = res.localId; // 返回音频的本地ID
  184. isPlayOut.value = 2
  185. },
  186. fail:function(res){
  187. },
  188. complete: function(res) {
  189. dataInfo.localId = res.localId; // 返回音频的本地ID
  190. isPlayOut.value = 2
  191. }
  192. });
  193. });
  194. }
  195. })
  196. }
  197. // 开始录音
  198. function examineRecord(e) {
  199. // touchStartTime.value = e.timeStamp;
  200. // 设置长按定时器
  201. // longPressTimer.value = setTimeout(() => {
  202. // 长按事件处理
  203. recOpen()
  204. // }, 300);
  205. }
  206. // 结束录音
  207. function recStop(e) {
  208. // clearTimeout(longPressTimer.value);
  209. // 如果手指松开时间太短,则不是长按
  210. // const touchEndTime = e.timeStamp;
  211. // if (touchEndTime - touchStartTime.value < 1000) {
  212. // // 处理快速点击
  213. // uni.showToast({
  214. // icon: 'none',
  215. // title: '长按时间太短'
  216. // });
  217. // return
  218. // }
  219. if(isrecordType.value){
  220. wx.stopRecord({
  221. success: function (res) {
  222. dataInfo.localId = res.localId;
  223. isrecordType.value = false
  224. }
  225. });
  226. }
  227. }
  228. // 播放录音
  229. function playAudio(){
  230. wx.playVoice({
  231. localId: dataInfo.localId, // 需要播放的音频的本地ID,由stopRecord接口获得
  232. success: function (res) {
  233. isPlayOut.value = 1
  234. }
  235. })
  236. }
  237. // 删除录音
  238. function clearRec(){
  239. dataInfo.localId = null
  240. isPlayOut.value = 2
  241. }
  242. // 上传录音
  243. function uploadAudio(){
  244. wx.uploadVoice({
  245. localId: dataInfo.localId, // 需要上传的音频的本地ID,由stopRecord接口获得
  246. isShowProgressTips: 1, // 默认为1,显示进度提示
  247. success: function (res) {
  248. dataInfo.serverId = res.serverId; // 返回音频的服务器端ID
  249. setTimeout(_=>{
  250. uni.setStorageSync('repairData',JSON.stringify(dataInfo))
  251. uni.navigateTo({
  252. url: `/pages/repair/rapidRepNext`,
  253. });
  254. },100)
  255. }
  256. });
  257. }
  258. // 扫码资产码
  259. function scanCodes(){
  260. uni.showLoading({
  261. title: "加载中",
  262. mask: true,
  263. });
  264. SM().then((res) => {
  265. api_repairScanCode({
  266. code:res
  267. }).then((res2) => {
  268. uni.hideLoading();
  269. if (res2.state == 200) {
  270. dataInfo.property = res2.data.name
  271. dataInfo.assetId = res2.data.id
  272. } else {
  273. uni.showToast({
  274. icon: 'none',
  275. title: res2.msg || '请求数据失败!'
  276. });
  277. }
  278. });
  279. })
  280. }
  281. // 上传处理图片成功
  282. function handlerImgSuccess(e){
  283. dataInfo.handlerImgList.forEach(v => {
  284. v.url = v.path;
  285. })
  286. console.log('上传成功',dataInfo.handlerImgList);
  287. let handlerOrder$ = handlerOrder();
  288. let requestList = [handlerOrder$];
  289. dataInfo.handlerImgList.forEach(v => {
  290. let handlerOrderImg$ = handlerOrderImg(v);
  291. requestList.push(handlerOrderImg$);
  292. })
  293. Promise.all(requestList).then(resList => {
  294. uni.hideLoading();
  295. console.log(resList);
  296. if(resList[0].state == 200){
  297. uni.showToast({
  298. icon: 'none',
  299. title: '处理成功',
  300. mask: true,
  301. });
  302. }else{
  303. uni.showToast({
  304. icon: 'none',
  305. title: resList[0].msg || '请求数据失败!'
  306. });
  307. }
  308. })
  309. }
  310. // 上传处理图片失败
  311. function handlerImgFail(e){
  312. dataInfo.handlerImgList.forEach(v => {
  313. v.url = v.path;
  314. })
  315. console.log(dataInfo.handlerImgList);
  316. }
  317. // 选择上传图片
  318. function handlerImgSelect(e){
  319. console.log(6666,e.tempFiles)
  320. // 10*1024*1024 //10M
  321. if(e.tempFiles[0].extname=='mp4' ||
  322. e.tempFiles[0].extname=='avi' ||
  323. e.tempFiles[0].extname=='mpeg' ||
  324. e.tempFiles[0].extname=='wmv' ||
  325. e.tempFiles[0].extname=='mov' ||
  326. e.tempFiles[0].extname=='3gp' ||
  327. e.tempFiles[0].extname=='flv' ||
  328. e.tempFiles[0].extname=='mkv'
  329. ){
  330. let item = dataInfo.handlerImgList.findIndex(i=>i.extname==e.tempFiles[0].extname)
  331. if(item!=-1){
  332. uni.showToast({
  333. icon: 'none',
  334. title: '只能上传一个视频文件'
  335. });
  336. dataInfo.handlerImgList = dataInfo.handlerImgList.splice(item,1);
  337. }else{
  338. dataInfo.handlerImgList = dataInfo.handlerImgList.concat(e.tempFiles);
  339. }
  340. }else{
  341. dataInfo.handlerImgList = dataInfo.handlerImgList.concat(e.tempFiles);
  342. if(e.tempFiles[0].extname=='png' ||
  343. e.tempFiles[0].extname=='jpg' ||
  344. e.tempFiles[0].extname=='gif' ||
  345. e.tempFiles[0].extname=='mp4' ||
  346. e.tempFiles[0].extname=='avi' ||
  347. e.tempFiles[0].extname=='mpeg' ||
  348. e.tempFiles[0].extname=='wmv' ||
  349. e.tempFiles[0].extname=='mov' ||
  350. e.tempFiles[0].extname=='3gp' ||
  351. e.tempFiles[0].extname=='flv' ||
  352. e.tempFiles[0].extname=='mkv'
  353. ){
  354. }else{
  355. uni.showToast({
  356. icon: 'none',
  357. title: '不支持此类型文件'
  358. });
  359. let item = dataInfo.handlerImgList.findIndex(i=>i.uuid==e.tempFiles[0].uuid)
  360. dataInfo.handlerImgList.splice(item,1);
  361. }
  362. }
  363. }
  364. // 删除上传图片
  365. function handlerImgDelete(e){
  366. dataInfo.handlerImgList = dataInfo.handlerImgList.filter(v => e.tempFile.uuid != v.uuid);
  367. console.log(dataInfo.handlerImgList);
  368. }
  369. // 获取事件详情
  370. function getIncidentDetail(){
  371. if(uni.getStorageSync('repairData')){
  372. let data = JSON.parse(uni.getStorageSync('repairData'))
  373. if(data){
  374. dataInfo.description = data.description
  375. dataInfo.property = data.property
  376. dataInfo.assetId = data.assetId
  377. dataInfo.handlerImgList = data.handlerImgList
  378. dataInfo.recBlob = data.recBlob
  379. }
  380. }
  381. }
  382. // 下一步
  383. function submit(){
  384. isSubmit.value = true;
  385. if(dataInfo.description==''){
  386. uni.showToast({
  387. icon: 'none',
  388. title: '请选择输入故障描述'
  389. });
  390. return;
  391. }
  392. if(dataInfo.localId){
  393. uploadAudio()
  394. }else{
  395. uni.setStorageSync('repairData',JSON.stringify(dataInfo))
  396. uni.navigateTo({
  397. url: `/pages/repair/rapidRepNext`,
  398. });
  399. }
  400. }
  401. // 处理提交事件
  402. function handlerOrder(){
  403. dataInfo.incidentData.returnBackupMachine = dataInfo.returnBackupMachine
  404. let postData = {
  405. incident: dataInfo.incidentData
  406. }
  407. postData.incident.description = dataInfo.description;
  408. if(dataInfo.assetId){
  409. postData.incident.assetId = dataInfo.assetId;
  410. }else{
  411. delete postData.incident.assetId
  412. }
  413. return api_incidentTask(dataInfo.tabActiveValue, postData);
  414. }
  415. // 处理图片
  416. function handlerOrderImg(imgObj){
  417. return uploadFile(imgObj, 'wechatRequesterIncident', dataInfo.incidentId)
  418. }
  419. onLoad((option) => {
  420. let data = JSON.parse(uni.getStorageSync('sysData'))
  421. cmdbRepair.value = data.find(i=>i.keyconfig=='cmdbRepair')
  422. if(option){
  423. if(option.property && option.assetId){
  424. dataInfo.property = option.property
  425. dataInfo.assetId = option.assetId
  426. }
  427. }
  428. getIncidentDetail();
  429. })
  430. </script>
  431. <style lang="scss" scoped>
  432. .mask-class{
  433. position: fixed;
  434. width: 100%;
  435. height: 100%;
  436. top: 0;
  437. left: 0;
  438. background: rgba(0,0,0,0.3);
  439. display: flex;
  440. justify-content: center;
  441. align-items: center;
  442. .mask-box{
  443. height: 160rpx;
  444. padding: 0 25%;
  445. background: #95EC6A;
  446. border-radius: 25rpx;
  447. display: flex;
  448. align-items: center;
  449. .mask-img{
  450. width: 100rpx;
  451. height: 100rpx;
  452. position: relative;
  453. background-color: transparent;
  454. mix-blend-mode: multiply;
  455. }
  456. }
  457. .mask-bottom{
  458. position: absolute;
  459. bottom: 0;
  460. width: 100%;
  461. height: 300rpx;
  462. color: #A5A5A5;
  463. background: #eee;
  464. text-align: center;
  465. border-top-left-radius: 30rpx;
  466. border-top-right-radius: 30rpx;
  467. .mask-bottom-txt{
  468. margin-top: 50rpx;
  469. font-weight: 500;
  470. }
  471. }
  472. }
  473. .handler{
  474. height: 100%;
  475. display: flex;
  476. flex-direction: column;
  477. justify-content: space-between;
  478. padding: 0 30rpx;
  479. .head{
  480. height: 88rpx;
  481. display: flex;
  482. position: fixed;
  483. z-index: 99;
  484. width: 100%;
  485. background-color: #fff;
  486. font-size: 30rpx;
  487. .tab{
  488. flex: 1;
  489. display: flex;
  490. justify-content: center;
  491. align-items: center;
  492. border-bottom: 4rpx solid transparent;
  493. &.active{
  494. color: $uni-primary;
  495. border-color: $uni-primary;
  496. }
  497. }
  498. }
  499. .body{
  500. box-sizing: border-box;
  501. flex: 1;
  502. min-height: 0;
  503. &.bg{
  504. background-color: #F7F7F7;
  505. }
  506. .summaryItem{
  507. &:first-of-type{
  508. .summaryItem_head{
  509. border-bottom: 1rpx solid #DDDDDD;
  510. }
  511. }
  512. .summary_total{
  513. padding: 20rpx 0;
  514. display: flex;
  515. justify-content: center;
  516. align-items: center;
  517. }
  518. .summaryItem_head{
  519. padding: 24rpx;
  520. font-size: 26rpx;
  521. color: #3A3A3A;
  522. }
  523. .summaryItem_body{
  524. font-size: 30rpx;
  525. background-color: #fff;
  526. .summaryItem_bodyItem{
  527. padding: 24rpx;
  528. border-bottom: 1rpx solid #DDDDDD;
  529. .summaryItem_bodyItem_top{
  530. display: flex;
  531. justify-content: space-between;
  532. align-items: center;
  533. .value{
  534. padding-left: 48rpx;
  535. flex-shrink: 0;
  536. }
  537. }
  538. .summaryItem_bodyItem_bottom{
  539. margin-top: 24rpx;
  540. display: flex;
  541. justify-content: space-between;
  542. align-items: center;
  543. .name{
  544. text-align: right;
  545. flex: 1;
  546. }
  547. .value{
  548. width: 240rpx;
  549. text-align: right;
  550. padding-left: 48rpx;
  551. flex-shrink: 0;
  552. }
  553. }
  554. }
  555. }
  556. .summaryItem_foot{
  557. font-size: 30rpx;
  558. background-color: #fff;
  559. &.total{
  560. margin-top: 24rpx;
  561. }
  562. .summaryItem_foot_total{
  563. padding: 24rpx 0;
  564. display: flex;
  565. justify-content: center;
  566. align-items: center;
  567. }
  568. .summaryItem_foot_add{
  569. border-top: 1rpx solid #DDDDDD;
  570. padding: 24rpx 0;
  571. display: flex;
  572. justify-content: center;
  573. align-items: center;
  574. .newicon-icon-test{
  575. font-size: 30rpx;
  576. font-weight: bold;
  577. }
  578. }
  579. }
  580. }
  581. .form_item_column{
  582. padding-top: 24rpx;
  583. min-height: 86rpx;
  584. .form_item{
  585. padding-top: 0;
  586. min-height: auto;
  587. }
  588. }
  589. .candidate{
  590. display: flex;
  591. flex-wrap: wrap;
  592. .candidate-item{
  593. padding: 6rpx 15rpx;
  594. font-size: 26rpx;
  595. color: #949494;
  596. background: #E9E9E9;
  597. border-radius: 50rpx;
  598. margin-right: 20rpx;
  599. margin-top: 15rpx;
  600. }
  601. }
  602. .form_item{
  603. display: flex;
  604. align-items: center;
  605. padding-top: 24rpx;
  606. min-height: 86rpx;
  607. position: relative;
  608. .chunk{
  609. width: 100%;
  610. height: 70rpx;
  611. line-height: 70rpx;
  612. text-align: center;
  613. background: #F7F8FA;
  614. box-shadow: 0px 3px 6px 1px rgba(0,0,0,0.16);
  615. border-radius: 10rpx;
  616. }
  617. .chunk-2{
  618. width: 100%;
  619. height: 70rpx;
  620. display: flex;
  621. align-items: center;
  622. .chunk-2-2{
  623. flex: 1;
  624. height: 70rpx;
  625. display: flex;
  626. align-items: center;
  627. justify-content: center;
  628. background: #F3FAF7;
  629. .chunk-img{
  630. width: 80rpx;
  631. height: 80rpx;
  632. position: relative;
  633. background-color: transparent;
  634. mix-blend-mode: multiply; /* 根据需要选择合适的混合模式 */
  635. }
  636. }
  637. .chunk-icon{
  638. margin-left: 20rpx;
  639. }
  640. }
  641. &.column{
  642. height: auto;
  643. flex-direction: column;
  644. align-items: flex-start;
  645. .import-rep{
  646. padding: 5rpx 10rpx;
  647. border-radius: 50rpx;
  648. background: #d1fcd5;
  649. color: #49b856;
  650. font-size: 24rpx;
  651. }
  652. .title{
  653. margin-right: 0;
  654. }
  655. .title-width{
  656. width: 100%;
  657. }
  658. .title-fl-sb{
  659. display: flex;
  660. justify-content: space-between;
  661. width: 100%;
  662. }
  663. .value{
  664. margin-top: 10rpx;
  665. // padding-left: 20rpx;
  666. box-sizing: border-box;
  667. }
  668. .tips{
  669. padding: 24rpx;
  670. text-align: center;
  671. font-size: 22rpx;
  672. color: #909399;
  673. width: 100%;
  674. box-sizing: border-box;
  675. }
  676. }
  677. .title{
  678. font-size: 26rpx;
  679. display: flex;
  680. align-items: center;
  681. margin-right: 12rpx;
  682. flex-shrink: 0;
  683. &.select{
  684. width: calc(5em + 20rpx);
  685. }
  686. }
  687. .value{
  688. width: 100%;
  689. &.category{
  690. width: 100%;
  691. display: flex;
  692. justify-content: space-between;
  693. align-items: center;
  694. .categoryName{
  695. font-size: 26rpx;
  696. color: #555;
  697. flex: 1;
  698. }
  699. .newicon-weibiaoti2010104{
  700. color: $uni-primary;
  701. margin-left: 24rpx;
  702. }
  703. }
  704. .imgTips{
  705. color: #909399;
  706. font-size: 22rpx;
  707. margin-top: 10rpx;
  708. }
  709. }
  710. .item-input{
  711. border: 1px solid #DBDBDB;
  712. height: 70rpx;
  713. line-height: 70rpx;
  714. padding: 0 10rpx;
  715. border-radius: 4rpx;
  716. width: 100%;
  717. font-size: 14px;
  718. }
  719. .icon{
  720. position: absolute;
  721. right: 20rpx;
  722. color: #49b856;
  723. }
  724. .synergeticNames{
  725. font-size: 26rpx;
  726. margin-right: 24rpx;
  727. }
  728. .synergeticAdd{
  729. flex-shrink: 0;
  730. }
  731. }
  732. }
  733. }
  734. </style>