rapidRep.vue 20 KB

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