review.vue 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947
  1. <template>
  2. <view class="main">
  3. <uni-nav-bar dark :fixed="true" background-color="#18C7B0" status-bar left-icon="left" height="62.5rpx" width="750rpx"
  4. title="复核详情" @clickLeft="handleBack"
  5. />
  6. <view class="content">
  7. <view class="header">
  8. <view class="ti">
  9. <view class="left">
  10. <view class="baracode">
  11. <w-barcode :options="preseObj"></w-barcode>
  12. <view class="barnum">{{v.preNo}}</view>
  13. </view>
  14. </view>
  15. <view class="mid">
  16. <text class="title">中药处方笺</text>
  17. </view>
  18. <view class="rig"><text class="title">{{v.type=='1'?"中药处方":v.type=='1'?"中药制剂":""}}</text></view>
  19. </view>
  20. <view class="patiinfo">
  21. <view class="r1">
  22. <view class="row"><span class="we">姓名:</span>{{v.name}}</view>
  23. <view class="row"><span class="we">性别:</span>{{v.sex}}</view>
  24. <view class="row"><span class="we">年龄:</span>{{v.age}}岁</view>
  25. <view class="row"><span class="we">电话:</span>{{v.contactNumber}}</view>
  26. <view class="row"><span class="we">当前处方状态:</span>{{v.state=="1"?"配药":v.state=="2"?"煎药":v.state=="3"?"发药":v.state=="4"?"配送":""}}</view>
  27. </view>
  28. <view class="r2">
  29. <view class="row"><span class="we">就诊科室:</span>{{v.department}}</view>
  30. <view class="row"><span class="we">临床诊断:</span>{{v.disName}}—{{v.symName}}</view>
  31. <view class="row"><span class="we">开方时间:</span>{{v.prescriptionTime}}</view>
  32. </view>
  33. <view class="r3"><span class="we">联系地址:</span>{{v.address}}</view>
  34. </view>
  35. </view>
  36. <view class="rp">
  37. <view class="title">
  38. <text class="text">Rp:</text>
  39. </view>
  40. <view class="lists">
  41. <view class="item" v-for="(x, i) in v.rp" :key="i">
  42. <view class="le tag-view">
  43. <uni-tag :inverted="!selectRps.includes(x)" :text="x.matName+x.matDose+x.matUnitName" @click="handleGetRps(x)" />
  44. </view>
  45. <view class="rig">
  46. <view class="up"> {{x.matUsageName}}</view>
  47. <view class="do"> {{x.sign}}</view>
  48. </view>
  49. </view>
  50. </view>
  51. <view class="footer">
  52. <view class="js">
  53. 剂数:{{v.number}}
  54. <view v-if="v.daijianCost!==''" class="pies_tips">
  55. (代煎)
  56. </view>
  57. </view>
  58. <view class="js">{{v.dosageForm}}</view>
  59. <view class="js">{{v.prescriptionUsage}}</view>
  60. <view class="js">每次{{v.concentration}}</view>
  61. <view class="js">{{v.frequency}}</view>
  62. <view class="freque">{{v.medicationTime}}</view>
  63. </view>
  64. <view class="rp-tips">{{v.entrust}}</view>
  65. </view>
  66. <view class="amountarea">
  67. <view class="amount">
  68. <view class="r1">
  69. <view class="pijw">药品金额:{{v.prescriptionSum}}</view>
  70. </view>
  71. <view class="r2">
  72. <view class="jyf">煎药费:{{v.daijianCost}}</view>
  73. <view class="psf">配送费:{{v.distributionCost}}</view>
  74. </view>
  75. <view class="r3">
  76. 总金额:{{v.prescriptionTotalSum}}
  77. <!-- <view class="zjw"></view> -->
  78. </view>
  79. </view>
  80. <view class="service">
  81. <view class="kf"><span class="we">开方:</span>{{v.operateList[0].operater || ''}}</view>
  82. <view class="kf"><span class="we">审核:</span>{{v.operateList[1].operater || ''}}</view>
  83. <view class="kf"><span class="we">调配:</span>{{v.operateList[2].operater || ''}}</view>
  84. <view class="kf"><span class="we">复核:</span>{{v.operateList[3].operater || ''}}</view>
  85. <view class="kf"><span class="we">浸泡:</span>{{v.operateList[4].operater || ''}}</view>
  86. <view class="kf"><span class="we">煎煮:</span>{{v.operateList[5].operater || ''}}</view>
  87. <view class="kf"><span class="we">打包:</span>{{v.operateList[6].operater || ''}}</view>
  88. <view class="kf"><span class="we">发药:</span>{{v.operateList[7].operater || ''}}</view>
  89. </view>
  90. </view>
  91. <view class="comment">
  92. <view class="z">注:</view>
  93. <text>{{v.entrust1111}}</text>
  94. </view>
  95. </view>
  96. <view class="upload">
  97. <view class="title">上传照片</view>
  98. <uni-file-picker
  99. :image-styles = "imageStyles"
  100. fileMediatype="image"
  101. mode="grid"
  102. :limit="3"
  103. :del-icon="false"
  104. :auto-upload="false"
  105. @select="selectUpload"
  106. />
  107. </view>
  108. <view class="weight">
  109. <view class="title">复核重量</view>
  110. <view class="tex">
  111. <input class="uni-input" type="number" :value="v.weight" placeholder="请输入" @input="handleOnblur" auto-blur= /> g
  112. </view>
  113. </view>
  114. <view class="cooment">
  115. <view class="title">备注内容</view>
  116. <view class="tex">
  117. <textarea placeholder="请输入备注内容" v-model="editForm.comments" placeholder-style="font-size: 15rpx;" height="60rpx" @input="bindTextInput" class="input" ></textarea>
  118. </view>
  119. </view>
  120. <view class="submit">
  121. <button type="primary" class="bu" @click="handleSubmit">上传</button>
  122. </view>
  123. <uni-popup ref="alertDialog" type="dialog">
  124. <uni-popup-dialog type="success" cancelText="返回首页" confirmText="继续扫码" title="温馨提示" content="上传成功!" @confirm="dialogConfirm"
  125. @close="dialogClose"></uni-popup-dialog>
  126. </uni-popup>
  127. </view>
  128. </template>
  129. <script>
  130. export default {
  131. name: ''
  132. }
  133. </script>
  134. <script setup>
  135. import { onMounted, ref, getCurrentInstance, computed } from 'vue'
  136. import { selectOrderDetail, upload, sendToUser } from "@/static/js/request.js"
  137. import { saveReview } from '@/static/js/api.js'
  138. import { onLoad } from '@dcloudio/uni-app'
  139. const urlConfig = ref('http://zhongyao.fscuc.cn')
  140. // const preseId = ref(11220822134401)
  141. const preseObj = ref({
  142. code: '',
  143. color:['#000'], // 条形码的颜色
  144. bgColor: '#FFFFFF', // 背景色
  145. width: 200, // 宽度
  146. height: 50 // 高度
  147. })
  148. const {proxy} = getCurrentInstance()
  149. const imageStyles =ref({
  150. width:112.5,
  151. height:112.5,
  152. border:{
  153. color:"#DDDDDD",
  154. width:1,
  155. style:'solid',
  156. radius:'4px'
  157. }
  158. })
  159. const depolyImage = ref([])
  160. const barOpations = ref({
  161. height: 80,
  162. displayValue: false
  163. })
  164. const selectRps = ref([])
  165. const isPrint = ref(true)
  166. const photos = ref([])
  167. const v=ref({
  168. preNo:'11220822134401',
  169. presType:'普通处方',
  170. name:'李某',
  171. sex:'男',
  172. age:35,
  173. contactNumber:'13888888888',
  174. state: '发药',
  175. department:'中医内科',
  176. disName:'胃脘痛病',
  177. symName:'脾胃虚寒证',
  178. prescriptionTime:'2023-06-01 15:58',
  179. address:'浙江省某某事某某去某某事中医院门诊楼三楼302是',
  180. rp:[
  181. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'包煎',sign:'医生签名'},
  182. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'先煎',sign:'医生签名'},
  183. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'包煎',sign:'医生签名'},
  184. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'包煎',sign:'医生签名'},
  185. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'先煎',sign:'医生签名'},
  186. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'包煎',sign:'医生签名'},
  187. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'',sign:''},
  188. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'',sign:''},
  189. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'',sign:''},
  190. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'先煎',sign:''},
  191. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'包煎',sign:'医生签名'},
  192. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'先煎',sign:'医生签名'},
  193. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'包煎',sign:'医生签名'},
  194. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'包煎',sign:'医生签名'},
  195. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'先煎',sign:'医生签名'},
  196. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'包煎',sign:'医生签名'},
  197. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'',sign:''},
  198. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'',sign:''},
  199. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'',sign:''},
  200. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'先煎',sign:''},
  201. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'包煎',sign:'医生签名'},
  202. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'先煎',sign:'医生签名'},
  203. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'包煎',sign:'医生签名'},
  204. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'包煎',sign:'医生签名'},
  205. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'先煎',sign:'医生签名'},
  206. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'包煎',sign:'医生签名'},
  207. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'',sign:''},
  208. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'',sign:''},
  209. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'',sign:''},
  210. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'先煎',sign:''},
  211. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'包煎',sign:'医生签名'},
  212. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'先煎',sign:'医生签名'},
  213. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'包煎',sign:'医生签名'},
  214. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'包煎',sign:'医生签名'},
  215. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'先煎',sign:'医生签名'},
  216. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'包煎',sign:'医生签名'},
  217. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'',sign:''},
  218. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'',sign:''},
  219. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'',sign:''},
  220. {matName:'车前子',matDose:'6',matUnitName:'g',tips:'先煎',sign:''}
  221. ],
  222. number:3,
  223. weight: '0',
  224. pies_tips:'待见',
  225. dosageForm:'汤剂',
  226. prescriptionUsage:'煎服',
  227. concentration:'200ml',
  228. frequency:'一日三次',
  229. medicationTime:'饭后服',
  230. entrust:'注意多休息,饮食清单。',
  231. prescriptionSum: '187.00',
  232. daijianCost:'30.00',
  233. distributionCost:'10.00',
  234. prescriptionTotleSum: '227.00',
  235. yljgName:'杭州某某高级中医院',
  236. operateList:[
  237. {py:'kf',title:'开方',operater:''},
  238. {py:'sh',title:'审核',operater:''},
  239. {py:'tp',title:'调配',operater:''},
  240. {py:'fh',title:'复核',operater:''},
  241. {py:'jp',title:'浸泡',operater:''},
  242. {py:'jz',title:'煎煮',operater:''},
  243. {py:'db',title:'打包',operater:''},
  244. {py:'fy',title:'发药',operater:''},
  245. ],
  246. entrust1111:'1、本处方当日有效\n 2、取药时请您当面核对药品名称、规格、数量 \n 3、延长处方用量时间原因:慢性病 其他老年病 外地 其他'
  247. })
  248. const editForm =ref({
  249. urls:[],
  250. userId:uni.getStorageSync('userId'),
  251. comments:'',
  252. weight:v.value.weight,
  253. coreId: v.value.preNo
  254. })
  255. onMounted(() => {
  256. })
  257. const handleRemove = (file, uploadFiles) => {
  258. console.log(file, uploadFiles)
  259. }
  260. const handlePreview = (uploadFile) => {
  261. console.log(uploadFile)
  262. }
  263. const bindTextInput = (e)=>{
  264. console.log(e.detail.value)
  265. }
  266. onLoad(async(options) => {
  267. console.log('options', options)
  268. const userId = uni.getStorageSync('userId')
  269. const params = {
  270. token: uni.getStorageSync('token'),
  271. data: {
  272. id: options.id || '',
  273. preNo: options.preNo || '',
  274. depolyStatus: options.deployState || ''
  275. }
  276. }
  277. console.log("params",params)
  278. const {data:res} = await selectOrderDetail(params)
  279. if (res.code === 200) {
  280. v.prescriptionTime = res.data.prescriptionTime,
  281. v.value.name = res.data.name,
  282. v.value.sex = res.data.sex,
  283. v.value.age = res.data.age,
  284. v.value.contactNumber = res.data.contactNumber
  285. v.value.address = res.data.address
  286. v.value.concentration = res.data.concentration
  287. v.value.frequency = res.data.frequency
  288. v.value.medicationTime = res.data.medicationTime
  289. v.value.disName = res.data.disName,
  290. v.value.symName = res.data.symName,
  291. v.value.preNo = res.data.preNo,
  292. console.log('onLoad v.value.preNo', v.value.preNo)
  293. preseObj.value.code = v.value.preNo
  294. v.value.department = res.data.department,
  295. v.value.dosageForm = res.data.dosageForm,
  296. v.value.prescriptionUsage = res.data.prescriptionUsage,
  297. v.value.number = res.data.number,
  298. v.value.prescriptionSum = res.data.prescriptionSum,
  299. v.value.prescriptionTotalSum = res.data.prescriptionTotalSum,
  300. v.value.daijianCost = res.data.daijianCost,
  301. v.value.distributionCost = res.data.distributionCost,
  302. v.value.prescriptionTotleSum = res.data.prescriptionTotleSum,
  303. v.value.entrust = res.data.entrust,
  304. v.value.rp = res.data.detailList
  305. v.value.yljgName = res.data.yljgName || ''
  306. v.value.state = res.data.state,
  307. console.log('res.data.state',res.data.state)
  308. switch (res.data.state) {
  309. case '1':
  310. v.value.state = '配药'
  311. break
  312. case '2':
  313. v.value.state = '煎药'
  314. break
  315. case '3':
  316. v.value.state = '发药'
  317. break
  318. case '4':
  319. v.value.state = '配送'
  320. break
  321. case '5':
  322. v.value.state = '已分配'
  323. break
  324. case '6':
  325. v.value.state = '已传送'
  326. break
  327. default:
  328. v.value.state = '配药'
  329. }
  330. v.value.operateList[0].operater = res.data.doctor || ''
  331. v.value.operateList[1].operater = res.data.checkBy || ''
  332. v.value.operateList[2].operater = res.data.tiaopeiName || ''
  333. // 循环operateList
  334. const length = res.data.operateList
  335. if(length > 0){
  336. res.data.operateList.forEach((item)=>{
  337. switch(item.type){
  338. case '2':
  339. v.value.operateList[3].operater = item.createBy
  340. break
  341. case '3':
  342. v.value.operateList[4].operater = item.createBy
  343. break
  344. case '4':
  345. v.value.operateList[5].operater = item.createBy
  346. break
  347. case '5':
  348. v.value.operateList[6].operater = item.createBy
  349. break
  350. case '6':
  351. v.value.operateList[7].operater = item.createBy
  352. break
  353. defalut:console.log('处方签res.data.operateList数据异常',item.type)
  354. }
  355. })
  356. }
  357. const leng = v.rp.length
  358. console.log('rprprpprprpr',leng)
  359. let weight = 0
  360. if(leng > 0 ){
  361. for(let i = 0; i <len; i++){
  362. weight = weight+parseInt(v.rp[i].matDose)
  363. }
  364. }
  365. v.value.weight = weight +''
  366. console.log('weigiht>>>', v.value.weight)
  367. }
  368. })
  369. const handleGetRps = (v)=>{
  370. console.log('handleGetRps', v)
  371. if(!selectRps.value.includes(v)) {
  372. selectRps.value.push(v)
  373. } else {
  374. selectRps.value.splice(selectRps.value.indexOf(v), 1)
  375. }
  376. }
  377. const handleChange = ()=>{
  378. isPrint.value = !isPrint.value
  379. console.log('handleChange', isPrint.value)
  380. }
  381. const handleBack =()=>{
  382. uni.navigateBack({
  383. delta: 1
  384. })
  385. }
  386. const handleSubmit = async()=>{
  387. console.log('handleSubmit>>>',editForm.value)
  388. const {data:res} = await saveReview({
  389. token: uni.getStorageSync('token'),
  390. data: JSON.stringify(editForm.value)
  391. })
  392. if(res.code===200){
  393. console.log('depoly success>>>')
  394. proxy.$refs.alertDialog.open()
  395. }
  396. }
  397. const selectUpload = (e)=>{
  398. uni.showLoading({
  399. title: "上传中"
  400. });
  401. const tempFilePaths = e.tempFilePaths;
  402. for (var i = 0; i < tempFilePaths.length; i++) {
  403. const tempFile = e.tempFiles[i];
  404. uni.uploadFile({
  405. url: urlConfig.value + '/common/upload',
  406. header: {
  407. 'Authorization': 'Bearer '+uni.getStorageSync('token')
  408. },
  409. formData: {
  410. secretFlag: 'N',
  411. fileLocation: 5
  412. },
  413. filePath: tempFilePaths[i],
  414. name: 'file',
  415. success: (uploadFileRes) => {
  416. uni.hideLoading();
  417. console.log('upload success>>',uploadFileRes)
  418. const back = JSON.parse(uploadFileRes.data);
  419. console.log('upload success back >>',back)
  420. if (back.code == 200) {
  421. editForm.value.urls.push(back.url)
  422. }
  423. },
  424. fail: () => {
  425. uni.hideLoading();
  426. uni.showToast("上传失败,请联系开发!")
  427. },
  428. complete: function() {
  429. uni.hideLoading();
  430. }
  431. });
  432. }
  433. }
  434. const handleOnblur = (e)=>{
  435. console.log('eeeeee',e.detail.value)
  436. editForm.value.weight = e.detail.value
  437. console.log('eeeeee editForm.value.weight',editForm.value.weight)
  438. }
  439. const dialogConfirm = ()=>{
  440. uni.scanCode({
  441. scanType: ['barCode'],
  442. success: function (res) {
  443. console.log('条码类型:' + res.scanType);
  444. console.log('条码内容:' + res.result);
  445. if(res.result) {
  446. uni.navigateTo({
  447. url:`/pages/review/review?preNo=${res.result}&depolyStatus=2`
  448. })
  449. }
  450. }
  451. });
  452. }
  453. const dialogClose = ()=>{
  454. uni.redirectTo({
  455. url:"/pages/index/index"
  456. })
  457. }
  458. </script>
  459. <style lang="scss">
  460. .main {
  461. display: flex;
  462. flex-direction:column;
  463. justify-content:flex-start;
  464. width: 750rpx;
  465. :deep(.uni-nav-bar-text){
  466. font-size: 20px;
  467. }
  468. :deep(.uni-navbar-btn-text){
  469. font-size: 16px;
  470. }
  471. .content{
  472. margin: 5rpx;
  473. background-color: #fff;
  474. flex-direction:column;
  475. align-items: center;
  476. .header{
  477. display: flex;
  478. flex-direction:column;
  479. margin:16rpx 16rpx 0;
  480. .ti{
  481. display: flex;
  482. flex-direction:row;
  483. justify-content: space-between;
  484. margin-top: 15.22rpx;
  485. .left{
  486. align-items: flex-start;
  487. .baracode{
  488. display: flex;
  489. flex-direction:column;
  490. .barnum{
  491. font-size: 15rpx;
  492. display: flex;
  493. justify-content:center;
  494. align-items: center;
  495. letter-spacing: 0.3em;
  496. }
  497. }
  498. }
  499. .mid{
  500. display: flex;
  501. margin-right: 160rpx;
  502. .title{
  503. font-size: 23.75rpx;
  504. font-weight: 800;
  505. }
  506. }
  507. .rig{
  508. display: flex;
  509. .title{
  510. font-size: 16rpx;
  511. width: 40rpx;
  512. font-weight: 300;
  513. }
  514. }
  515. }
  516. .patiinfo{
  517. display: flex;
  518. flex-direction:column;
  519. margin-top: 25.2rpx;
  520. padding-bottom: 21.45rpx;
  521. border-bottom: 1px solid #979797;
  522. .r1{
  523. display: flex;
  524. flex-direction:row;
  525. margin-bottom:15rpx;
  526. .row{
  527. font-size: 15rpx;
  528. font-weight: 400;
  529. margin-right: 30rpx;
  530. }
  531. .we{
  532. color:#999999;
  533. }
  534. }
  535. .r2{
  536. display: flex;
  537. flex-direction:row;
  538. margin-bottom:15rpx;
  539. .row{
  540. font-size: 15rpx;
  541. font-weight: 400;
  542. margin-right: 30rpx;
  543. }
  544. .we{
  545. color:#999999;
  546. }
  547. }
  548. .r3{
  549. display: flex;
  550. flex-direction:row;
  551. font-size: 15rpx;
  552. .we{
  553. color:#999999;
  554. }
  555. }
  556. }
  557. }
  558. .rp{
  559. display: flex;
  560. flex-direction:column;
  561. margin:22.39rpx 17.36rpx 0;
  562. border-bottom: 1px solid #979797;
  563. .title{
  564. font-size: 22rpx;
  565. margin-bottom: 10rpx;
  566. }
  567. .lists{
  568. display: flex;
  569. flex-wrap: wrap;
  570. flex-direction: row;
  571. justify-content:flex-start;
  572. align-content:flex-start;
  573. margin-left:20rpx;
  574. height: 545rpx;
  575. .item{
  576. display: flex;
  577. justify-content:center;
  578. align-items: center;
  579. width: 161rpx;
  580. margin: 0 10rpx 20rpx 0;
  581. // position: relative;
  582. .le{
  583. display: flex;
  584. font-size: 12rpx;
  585. width: 100rpx;
  586. word-wrap: break-word;
  587. // z-index: 100;
  588. // position: absolute;
  589. }
  590. .tag-view:deep(.uni-tag){
  591. display: flex;
  592. justify-content:center;
  593. align-items: center;
  594. font-size: 15rpx;
  595. padding: 6rpx 6rpx;
  596. }
  597. .rig{
  598. display: flex;
  599. flex-direction:column;
  600. margin-left: 5.31rpx;
  601. .up{
  602. width: 60rpx;
  603. font-size: 12rpx;
  604. height: 12.5rpx;
  605. }
  606. .do{
  607. width: 60rpx;
  608. font-size: 12rpx;
  609. height: 12.5rpx;
  610. }
  611. }
  612. }
  613. }
  614. .footer{
  615. margin: 0 10rpx 8rpx;
  616. display: flex;
  617. font-size: 15rpx;
  618. .js{
  619. display: flex;
  620. margin-right: 54.4rpx;
  621. .pies_tips{}
  622. }
  623. .freque{}
  624. }
  625. .rp-tips{
  626. display: flex;
  627. justify-content:flex-end;
  628. font-size: 15rpx;
  629. margin-right: 10rpx;
  630. }
  631. }
  632. .amountarea{
  633. display: flex;
  634. margin: 21.3rpx 19.38px 0;
  635. padding-bottom: 20.94rpx;
  636. border-bottom: 1px solid #979797;
  637. .amount{
  638. display: flex;
  639. flex-direction:column;
  640. .r1{
  641. border: 1px solid #979797;
  642. font-size: 15rpx;
  643. width: 287.5rpx;
  644. display: flex;
  645. justify-content:center;
  646. align-items: center;
  647. height: 33.75rpx;
  648. }
  649. .r2{
  650. display: flex;
  651. justify-content:center;
  652. align-items: center;
  653. font-size: 15rpx;
  654. height: 33.75rpx;
  655. width: 287.5rpx;
  656. border-left: 1px solid #979797;
  657. border-right: 1px solid #979797;
  658. .jyf{
  659. width: 143.93rpx;
  660. display: flex;
  661. justify-content:center;
  662. align-items: center;
  663. }
  664. .psf{
  665. border-left: 1px solid #979797;
  666. width: 143.93rpx;
  667. display: flex;
  668. justify-content:center;
  669. align-items: center;
  670. }
  671. }
  672. .r3{
  673. display: flex;
  674. justify-content:center;
  675. align-items: center;
  676. height: 33.75rpx;
  677. font-size: 15rpx;
  678. border: 1px solid #979797;
  679. }
  680. }
  681. .service{
  682. display: flex;
  683. flex-wrap: wrap;
  684. margin-left: 60rpx;
  685. .kf{
  686. font-size: 15rpx;
  687. margin-right: 60rpx;
  688. width:90rpx;
  689. .we{
  690. font-size: 15rpx;
  691. color:#999999;
  692. }
  693. }
  694. }
  695. }
  696. .comment{
  697. margin: 10rpx 16rpx 10rpx;
  698. font-size: 15rpx;
  699. display: flex;
  700. }
  701. }
  702. .upload{
  703. margin: 0 10rpx 10rpx;
  704. background-color: #fff;
  705. padding: 20rpx;
  706. .title{
  707. font-size: 15rpx;
  708. margin-bottom:20px;
  709. color: #333333;
  710. }
  711. }
  712. .weight{
  713. margin: 0 10rpx 10rpx;
  714. background-color: #fff;
  715. display: flex;
  716. align-items: center;
  717. padding: 10rpx;
  718. .title{
  719. font-size: 15rpx;
  720. // margin-bottom:20px;
  721. color: #333333;
  722. margin-right: 20rpx;
  723. }
  724. .tex{
  725. display: flex;
  726. align-items:center;
  727. font-size: 15rpx;
  728. .uni-input{
  729. display: flex;
  730. justify-content:center;
  731. align-items:center;
  732. border: 1px solid #979797;
  733. margin-left: 50rpx;
  734. width: 100rpx;
  735. margin-right: 4rpx;
  736. }
  737. }
  738. }
  739. .cooment{
  740. margin: 0 10rpx 10rpx;
  741. background-color: #fff;
  742. flex-direction:column;
  743. align-items: center;
  744. padding: 5rpx 10rpx;
  745. .title{
  746. font-size: 15rpx;
  747. margin-bottom:20rpx;
  748. }
  749. .tex{
  750. display: flex;
  751. justify-content:flex-start;
  752. align-items: center;
  753. margin-bottom:12.7rpx;
  754. border: 1px solid #979797;
  755. // height: 74.38rpx;
  756. border-radius: 5rpx;
  757. .input{
  758. // height: 74.38rpx;
  759. // font-size: 15rpx;
  760. padding: 10rpx;
  761. // border-radius: 5rpx;
  762. :deep(.uni-textarea-placeholder){
  763. font-size: 15rpx;
  764. }
  765. }
  766. }
  767. }
  768. .radio{
  769. display: flex;
  770. margin: 0 10rpx;
  771. background-color: #fff;
  772. // padding: 0 20px 100px;
  773. flex-direction:column;
  774. // align-items: center;
  775. font-size: 15rpx!important;
  776. :deep(.uni-switch-input.uni-switch-input-checked){
  777. border-color: #18C7B0;
  778. background-color: #18C7B0;
  779. }
  780. }
  781. .submit{
  782. display: flex;
  783. margin-top: 33.23rpx;
  784. background-color: #fff;
  785. align-items: center;
  786. width: 750rpx;
  787. height: 62.5rpx;
  788. .bu{
  789. display: flex;
  790. justify-content:center;
  791. align-items: center;
  792. height: 40rpx;
  793. width: 671.25rpx;
  794. font-size: 17.5rpx;
  795. border-radius: 3.75rpx;
  796. background-color: #18c7b0;
  797. color:#fff;
  798. }
  799. }
  800. :deep(.uni-popup-dialog){
  801. width: 500rpx;
  802. // height: 268.75rpx;
  803. display: flex;
  804. flex-direction: column;
  805. background-color: #ffffff;
  806. // justify-content:center;
  807. // align-items: center;
  808. .uni-dialog-title-text{
  809. display: flex;
  810. font-size: 20rpx;
  811. // padding-top: 20px;
  812. }
  813. .uni-dialog-content{
  814. display: flex;
  815. margin: 10rpx 20rpx;
  816. background-color: #fff;
  817. // box-shadow: 0 0 20rpx rgba(0, 0, 0, 0.15);
  818. .cotent{
  819. display: flex;
  820. flex-direction: column;
  821. width:400rpx;
  822. height: 112.5rpx;
  823. .title{
  824. font-size: 17.5rpx;
  825. font-weight: 500;
  826. margin-bottom: 10rpx;
  827. display: flex;
  828. align-items: center;
  829. justify-content:center;
  830. }
  831. .body{
  832. display: flex;
  833. // flex-direction: column;
  834. justify-content:center;
  835. .lef{
  836. display: flex;
  837. flex-direction: column;
  838. width: 200rpx;
  839. justify-content:center;
  840. .baracode{
  841. display: flex;
  842. flex-direction:column;
  843. width: 200rpx;
  844. height: 54.38rpx;
  845. .cav{
  846. width:200rpx;
  847. }
  848. .barnum{
  849. width:200rpx;
  850. font-size: 10rpx;
  851. display: flex;
  852. color: #333333;
  853. justify-content:center;
  854. align-items: center;
  855. letter-spacing: 0.7em;
  856. }
  857. }
  858. }
  859. .rig{
  860. display: flex;
  861. flex-direction: column;
  862. width: 340px;
  863. margin-left: 13.75rpx;
  864. .hz{
  865. display: flex;
  866. margin-bottom: 10rpx;
  867. font-size: 15rpx;
  868. }
  869. .bold{
  870. font-weight: 500;
  871. }
  872. }
  873. }
  874. }
  875. }
  876. .uni-dialog-button-group{
  877. display: flex;
  878. font-size: 17.5rpx;
  879. .uni-dialog-button{
  880. display: flex;
  881. .uni-dialog-button-text{
  882. }
  883. }
  884. .uni-border-left{
  885. .uni-dialog-button-text{
  886. color: #18c7b0;
  887. }
  888. }
  889. }
  890. }
  891. }
  892. </style>