otherfeedback.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741
  1. <template>
  2. <view class="wrap">
  3. <view>
  4. <view style='margin-left:10px;'>任务详情</view>
  5. <view class="content">
  6. <view class="row">
  7. <view class="left">合同编号</view>
  8. <view>{{detailData.contractNo}}</view>
  9. </view>
  10. <view class="row">
  11. <view class="left">货名</view>
  12. <view>{{detailData.goodsName}}</view>
  13. </view>
  14. <view class="row">
  15. <view class="left">重量</view>
  16. <view>{{detailData.weight}}</view>
  17. </view>
  18. <view class="row">
  19. <view class="left">发货地址</view>
  20. <view>{{detailData.sendPrivate}}{{detailData.sendCity}}{{detailData.sendArea}}</view>
  21. </view>
  22. <view class="row">
  23. <view class="left">收货地址</view>
  24. <view>{{detailData.receivePrivate}}{{detailData.receiveCity}}{{detailData.receiveArea}}</view>
  25. </view>
  26. </view>
  27. <!-- 汽运 -->
  28. <view class="flex title_css">
  29. <view class="head_css">汽运反馈({{sendCarList?sendCarList:0}})<image :src="carurl" class="open_css" @click="openCar"></image>
  30. </view>
  31. </view>
  32. <view class="content" v-if="carShow" v-for="(item,index) in detailData.tranCarInfoList1">
  33. <!-- 车牌号 -->
  34. <view class="c-row">
  35. <view class="title">车牌号</view>
  36. <view class="con-list">
  37. <input v-model='item.carNo' placeholder="暂无" disabled name="input"></input>
  38. </view>
  39. </view>
  40. <!-- 箱号 -->
  41. <view class="c-row">
  42. <view class="title">箱号-1</view>
  43. <view class="con-list">
  44. <input v-model='item.caseNo' placeholder="暂无" disabled name="input"></input>
  45. </view>
  46. </view>
  47. <view class="c-row">
  48. <view class="title">箱号-2</view>
  49. <view class="con-list">
  50. <input v-model='item.caseNoOther' placeholder="暂无" name="input"></input>
  51. </view>
  52. </view>
  53. <!-- 封号 -->
  54. <view class="c-row">
  55. <view class="title">封号-1</view>
  56. <view class="con-list">
  57. <input v-model='item.titleNo' placeholder="暂无" disabled name="input"></input>
  58. </view>
  59. </view>
  60. <view class="c-row">
  61. <view class="title">封号-2</view>
  62. <view class="con-list">
  63. <input v-model='item.titleNoOther' placeholder="暂无" disabled name="input"></input>
  64. </view>
  65. </view>
  66. <!-- 装车净重 -->
  67. <view class="c-row">
  68. <view class="title">装车净重(吨)</view>
  69. <view class="con-list">
  70. <input v-model='item.loadNetWeight' placeholder="暂无" disabled name="input"></input>
  71. </view>
  72. </view>
  73. <!-- 卸车日期 -->
  74. <view class="c-row">
  75. <view class="title">卸车净重(吨)</view>
  76. <view class="con-list">
  77. <input v-model='item.unloadNetWeight' placeholder="请输入卸车净重" :disabled="item.status == '已送达'" name="input"></input>
  78. </view>
  79. </view>
  80. <view class="flex">
  81. <!-- <u-button @click='pass(1,index)' type="success" v-if="item.status != '已送达'" hover-class='none'>保存</u-button> -->
  82. <view class="btn" @click='pass(1,index)' v-if="item.status != '已送达'">保存</view>
  83. </view>
  84. </view>
  85. <!-- 以上汽运 -->
  86. <!-- 火运反馈 -->
  87. <view class="flex title_css">
  88. <view class="head_css">火运反馈({{trainCarList?trainCarList:0}})<image :src="trainCarurl" class="open_css"
  89. @click="trainCar"></image>
  90. </view>
  91. </view>
  92. <view class="content" v-if="trainCarShow" v-for="(item,index) in detailData.tranCarInfoList2">
  93. <!-- 车号 -->
  94. <view class="c-row">
  95. <view class="title">车号</view>
  96. <view class="con-list">
  97. <input v-model='item.carNo' placeholder="暂无" disabled name="input"></input>
  98. </view>
  99. </view>
  100. <!-- 车厢号 -->
  101. <view class="c-row">
  102. <view class="title">车厢号-1</view>
  103. <view class="con-list">
  104. <input v-model='item.boxNo' placeholder="暂无" disabled name="input"></input>
  105. </view>
  106. </view>
  107. <view class="c-row">
  108. <view class="title">车厢号-2</view>
  109. <view class="con-list">
  110. <input v-model='item.boxNo' placeholder="暂无" disabled name="input"></input>
  111. </view>
  112. </view>
  113. <!-- 装车净重 -->
  114. <view class="c-row">
  115. <view class="title">装车净重(吨)</view>
  116. <view class="con-list">
  117. <input v-model='item.loadNetWeight' placeholder="暂无" disabled name="input"></input>
  118. </view>
  119. </view>
  120. <!-- 卸车净重 -->
  121. <view class="c-row">
  122. <view class="title">卸车净重(吨)</view>
  123. <view class="con-list">
  124. <input v-model='item.unloadNetWeight' placeholder="请输入卸车净重" :disabled="item.status == '已送达'" name="input"></input>
  125. </view>
  126. </view>
  127. <view class="flex">
  128. <!-- <u-button @click='pass(2,index)' v-if="item.status != '已送达'" type="success" hover-class='none'>保存</u-button> -->
  129. <view class="btn" @click='pass(2,index)'v-if="item.status != '已送达'">保存</view>
  130. </view>
  131. </view>
  132. <!-- 以上火运反馈 -->
  133. <!-- 散船反馈 -->
  134. <view class="flex title_css">
  135. <view class="head_css">散船反馈({{shipList?shipList:0}})<image :src="shipurl" class="open_css" @click="shipping">
  136. </image>
  137. </view>
  138. </view>
  139. <view class="content" v-if="shipShow" v-for="(item,index) in detailData.tranCarInfoList3">
  140. <!-- 船名 -->
  141. <view class="c-row">
  142. <view class="title">船名</view>
  143. <view class="con-list">
  144. <input v-model='item.shipName' placeholder="暂无" disabled name="input"></input>
  145. </view>
  146. </view>
  147. <view class="c-row">
  148. <view class="title">航次</view>
  149. <view class="con-list">
  150. <input v-model='item.shipNo' placeholder="暂无" disabled name="input"></input>
  151. </view>
  152. </view>
  153. <!-- 装船净重 -->
  154. <view class="c-row">
  155. <view class="title">装船净重(吨)</view>
  156. <view class="con-list">
  157. <input v-model='item.loadNetWeight' placeholder="暂无" disabled name="input"></input>
  158. </view>
  159. </view>
  160. <!-- 卸船净重 -->
  161. <view class="c-row">
  162. <view class="title">装船净重(吨)</view>
  163. <view class="con-list">
  164. <input v-model='item.unloadNetWeight' placeholder="请输入卸船净重" :disabled="item.status == '已送达'" name="input"></input>
  165. </view>
  166. </view>
  167. <view class="flex">
  168. <!-- <u-button @click='pass(3,index)' type="success" v-if="item.status != '已送达'" hover-class='none'>保存</u-button> -->
  169. <view class="btn" @click='pass(3,index)'v-if="item.status != '已送达'">保存</view>
  170. </view>
  171. </view>
  172. <!-- 以上散船反馈 -->
  173. <!-- 集装箱船反馈 -->
  174. <view class="flex title_css">
  175. <view class="head_css">集装箱船反馈({{containerList?containerList:0}})<image :src="containerUrl" class="open_css"
  176. @click="containerchange"></image>
  177. </view>
  178. </view>
  179. <view class="content" v-if="containerShow" v-for="(item,index) in detailData.tranCarInfoList4">
  180. <!-- 箱号 -->
  181. <view class="c-row">
  182. <view class="title">箱号</view>
  183. <view class="con-list">
  184. <input v-model='item.caseNo' placeholder="暂无" disabled name="input"></input>
  185. </view>
  186. </view>
  187. <view class="c-row">
  188. <view class="title">封号</view>
  189. <view class="con-list">
  190. <input v-model='item.titleNo' placeholder="暂无" disabled name="input"></input>
  191. </view>
  192. </view>
  193. <!-- 装船净重 -->
  194. <view class="c-row">
  195. <view class="title">装船净重(吨)</view>
  196. <view class="con-list">
  197. <input v-model='item.loadNetWeight' placeholder="暂无" disabled name="input"></input>
  198. </view>
  199. </view>
  200. <!-- 卸船净重 -->
  201. <view class="c-row">
  202. <view class="title">卸船净重(吨)</view>
  203. <view class="con-list">
  204. <input v-model='item.unloadNetWeight' placeholder="请输入卸船净重" :disabled="item.status == '已送达'" name="input"></input>
  205. </view>
  206. </view>
  207. <view class="flex">
  208. <!-- <u-button @click='pass(4,index)' type="success" v-if="item.status != '已送达'" hover-class='none'>保存</u-button> -->
  209. <view class="btn" @click='pass(4,index)'v-if="item.status != '已送达'">保存</view>
  210. </view>
  211. </view>
  212. </view>
  213. <view style='padding:10px;' class='flex bottom-btn'>
  214. <u-button @click='finishedgoods' type="success" class="btn2" :disabled="statusAll != '执行中'">完货</u-button>
  215. </view>
  216. </view>
  217. </template>
  218. <script>
  219. import upload from '@/components/upload.vue';
  220. import helper from '@/common/helper.js';
  221. export default {
  222. components: {
  223. upload
  224. },
  225. data() {
  226. return {
  227. id: '',
  228. statusAll:"",
  229. currentPage: 1,
  230. pageSize: 10,
  231. maxSize: 50 * 1024 * 1024,
  232. status: '执行中',
  233. params: {
  234. year: true,
  235. month: true,
  236. day: true,
  237. },
  238. action: this.$uploadUrl, //磅单上传地址
  239. detailData: {},
  240. show: false,
  241. show1: false,
  242. show2: false,
  243. val: "", //假
  244. carShow: false,
  245. carurl: "../../../static/img/authentication/up2.png",
  246. trainCarShow: false,
  247. trainCarurl: "../../../static/img/authentication/up2.png",
  248. shipShow: false,
  249. shipurl: "../../../static/img/authentication/up2.png",
  250. containerUrl: "../../../static/img/authentication/up2.png",
  251. containerShow: false,
  252. infoId: "",
  253. sendCar: [], //汽运
  254. huoYun: [], //火运
  255. looseShip: [], //散船
  256. container: [], //集裝箱船
  257. sendCarList: "",
  258. trainCarList: "",
  259. shipList: "",
  260. containerList: "",
  261. }
  262. },
  263. onLoad(options) {
  264. this.id = options.id
  265. this.statusAll = options.status
  266. },
  267. onShow() {
  268. this.getList()
  269. },
  270. computed: {},
  271. methods: {
  272. //汽运展开显示
  273. openCar() {
  274. this.carShow = !this.carShow
  275. if (this.carShow) {
  276. this.carurl = "../../../static/img/authentication/down2@2x.png"
  277. } else {
  278. this.carurl = "../../../static/img/authentication/up2.png"
  279. }
  280. },
  281. // 火运展开显示
  282. trainCar() {
  283. this.trainCarShow = !this.trainCarShow
  284. if (this.trainCarShow) {
  285. this.trainCarurl = "../../../static/img/authentication/down2@2x.png"
  286. } else {
  287. this.trainCarurl = "../../../static/img/authentication/up2.png"
  288. }
  289. },
  290. //船运展开显示
  291. shipping() {
  292. this.shipShow = !this.shipShow
  293. if (this.shipShow) {
  294. this.shipurl = "../../../static/img/authentication/down2@2x.png"
  295. } else {
  296. this.shipurl = "../../../static/img/authentication/up2.png"
  297. }
  298. },
  299. //集装箱船展开显示
  300. containerchange() {
  301. this.containerShow = !this.containerShow
  302. if (this.containerShow) {
  303. this.containerUrl = "../../../static/img/authentication/down2@2x.png"
  304. } else {
  305. this.containerUrl = "../../../static/img/authentication/up2.png"
  306. }
  307. },
  308. dateChange(e, num) {
  309. this.sendCar[num].loadingDate = e.year + "-" + e.month + "-" + e.day
  310. },
  311. dateChange1(e, num) {
  312. this.huoYun[num].loadingDate = e.year + "-" + e.month + "-" + e.day
  313. },
  314. dateChange2(e, num) {
  315. this.looseShip[num].loadingDate = e.year + "-" + e.month + "-" + e.day
  316. },
  317. dateChange3(e, num) {
  318. this.container[num].loadingDate = e.year + "-" + e.month + "-" + e.day
  319. },
  320. //完货
  321. finishedgoods() {
  322. for(let i = 0 ; i < this.detailData.tranCarInfoList1.length;i++){
  323. if(this.detailData.tranCarInfoList1[i].status != "已送达" ){
  324. this.$api.msg("请完成所有的汽运收货反馈!")
  325. return
  326. }
  327. }
  328. for(let i = 0 ; i < this.detailData.tranCarInfoList2.length;i++){
  329. if(this.detailData.tranCarInfoList2[i].status != "已送达"){
  330. this.$api.msg("请完成所有的火运收货反馈!")
  331. return
  332. }
  333. }
  334. for(let i = 0 ; i < this.detailData.tranCarInfoList3.length;i++){
  335. if(this.detailData.tranCarInfoList3[i].status != "已送达"){
  336. this.$api.msg("请完成所有的散船收货反馈!")
  337. return
  338. }
  339. }
  340. for(let i = 0 ; i < this.detailData.tranCarInfoList4.length;i++){
  341. if(this.detailData.tranCarInfoList4[i].status != "已送达"){
  342. this.$api.msg("请完成所有的集装箱船收货反馈!")
  343. return
  344. }
  345. }
  346. var that = this
  347. uni.showModal({
  348. content: "完货操作后,卸车信息不可修改,是否确定完货?",
  349. success(res) {
  350. if (res.confirm) {
  351. let complete = {}
  352. complete.id = that.id
  353. that.$api.doRequest('post', '/tranProcessInfo/api/editReceivingStatus', complete).then(res => {
  354. if (res.data.code == 200) {
  355. that.sendCar.splice(index, 1)
  356. that.$api.msg("提交成功")
  357. setTimeout(() => {
  358. uni.navigateBack()
  359. }, 1000)
  360. } else {
  361. that.$api.msg(res.data.message)
  362. }
  363. })
  364. }
  365. }
  366. })
  367. },
  368. //添加
  369. add(index) {
  370. if (index == 1) {
  371. let _a = []
  372. this.sendCar.push({
  373. tranCarNo: "",
  374. carNo: "",
  375. caseNo: "",
  376. caseNoOther: "",
  377. titleNo: "",
  378. titleNoOther: "",
  379. loadNetWeight: "",
  380. loadingDate: "",
  381. })
  382. } else if (index == 2) {
  383. this.huoYun.push({
  384. carNo: "",
  385. boxNo1: "",
  386. boxNo2: "",
  387. loadNetWeight: "",
  388. loadingDate: "",
  389. })
  390. } else if (index == 3) {
  391. this.looseShip.push({
  392. shipName: "",
  393. shipNo: "",
  394. loadNetWeight: "",
  395. loadingDate: "",
  396. })
  397. } else if (index == 4) {
  398. this.container.push({
  399. caseNo: "",
  400. titleNo: "",
  401. loadNetWeight: "",
  402. loadingDate: "",
  403. })
  404. }
  405. },
  406. // 删除
  407. del(num, index) {
  408. var that = this
  409. uni.showModal({
  410. content: "确定删除反馈信息?",
  411. success(res) {
  412. if (res.confirm) {
  413. if (num == 1) {
  414. that.sendCar.splice(index, 1)
  415. // array.splice(start,delCount);//从start的位置开始向后删除delCount个元素
  416. } else if (num == 2) {
  417. that.huoYun.splice(index, 1)
  418. } else if (num == 3) {
  419. that.loadingDate.splice(index, 1)
  420. } else if (num == 4) {
  421. that.container.splice(index, 1)
  422. }
  423. }
  424. }
  425. })
  426. },
  427. //保存
  428. pass(num, index) {
  429. if(num == 1){
  430. if(!this.detailData.tranCarInfoList1[index].unloadNetWeight || this.detailData.tranCarInfoList1[index].unloadNetWeight == 0){
  431. this.$api.msg("请输入卸车净重")
  432. return
  433. }
  434. }
  435. if(num == 2){
  436. if(!this.detailData.tranCarInfoList2[index].unloadNetWeight || this.detailData.tranCarInfoList2[index].unloadNetWeight == 0){
  437. this.$api.msg("请输入卸车净重")
  438. return
  439. }
  440. }
  441. if(num == 3){
  442. if(!this.detailData.tranCarInfoList3[index].unloadNetWeight || this.detailData.tranCarInfoList3[index].unloadNetWeight == 0){
  443. this.$api.msg("请输入卸船净重")
  444. return
  445. }
  446. }
  447. if(num == 4){
  448. if(!this.detailData.tranCarInfoList4[index].unloadNetWeight || this.detailData.tranCarInfoList4[index].unloadNetWeight == 0){
  449. this.$api.msg("请输入卸船净重")
  450. return
  451. }
  452. }
  453. var that = this
  454. uni.showModal({
  455. content: "确定保存反馈信息?",
  456. success(res) {
  457. if (res.confirm) {
  458. let _pro = {}
  459. _pro.id = that.id
  460. _pro.infoId = that.detailData.infoId
  461. _pro.contractNo = that.detailData.contractNo
  462. if (num == 1) {
  463. _pro.tranCarInfoList1 = [that.detailData.tranCarInfoList1[index]]
  464. _pro.threeTranType = "汽运"
  465. that.$api.doRequest('post', '/tranProcessInfo/api/addTranCar', _pro).then(res => {
  466. if (res.data.code == 200) {
  467. that.$api.msg("保存成功")
  468. that.getList()
  469. } else {
  470. that.$api.msg(res.data.message)
  471. }
  472. })
  473. } else if (num == 2) {
  474. _pro.tranCarInfoList2 = [that.detailData.tranCarInfoList2[index]]
  475. _pro.threeTranType = "火运"
  476. that.$api.doRequest('post', '/tranProcessInfo/api/addTranCar', _pro).then(res => {
  477. if (res.data.code == 200) {
  478. that.$api.msg("保存成功")
  479. that.getList()
  480. } else {
  481. that.$api.msg(res.data.message)
  482. }
  483. })
  484. } else if (num == 3) {
  485. _pro.tranCarInfoList3 = [that.detailData.tranCarInfoList3[index]]
  486. _pro.threeTranType = "散船"
  487. that.$api.doRequest('post', '/tranProcessInfo/api/addTranCar', _pro).then(res => {
  488. if (res.data.code == 200) {
  489. that.$api.msg("保存成功")
  490. that.getList()
  491. } else {
  492. that.$api.msg(res.data.message)
  493. }
  494. })
  495. } else if (num == 4) {
  496. _pro.tranCarInfoList4 = [that.detailData.tranCarInfoList4[index]]
  497. _pro.threeTranType = "集装箱船"
  498. that.$api.doRequest('post', '/tranProcessInfo/api/addTranCar', _pro).then(res => {
  499. if (res.data.code == 200) {
  500. that.$api.msg("保存成功")
  501. that.getList()
  502. } else {
  503. that.$api.msg(res.data.message)
  504. }
  505. })
  506. }
  507. }
  508. }
  509. })
  510. },
  511. getList() {
  512. this.$api.doRequest('get', '/tranProcessInfo/getThreeTranProcess', {
  513. id: this.id
  514. }).then(res => {
  515. if (res.data.code == 200) {
  516. this.detailData = res.data.data
  517. if(this.detailData.tranCarInfoList1){this.sendCarList = this.detailData.tranCarInfoList1.length}
  518. if(this.detailData.tranCarInfoList2){this.trainCarList = this.detailData.tranCarInfoList2.length}
  519. if(this.detailData.tranCarInfoList3){this.shipList = this.detailData.tranCarInfoList3.length}
  520. if(this.detailData.tranCarInfoList4){this.containerList = this.detailData.tranCarInfoList4.length}
  521. }
  522. })
  523. },
  524. filterFileType(index, lists) {
  525. if (lists[index].fileType != 'jpg' && lists[index].fileType != 'png' && lists[index].fileType != 'gif') {
  526. lists.splice(index, 1);
  527. // 当前文件不支持
  528. uni.showModal({
  529. title: '暂不支持当前图片类型',
  530. showCancel: false
  531. });
  532. } else {
  533. this.isAdd = false;
  534. }
  535. },
  536. }
  537. }
  538. </script>
  539. <style scoped lang="scss">
  540. uni-page-body {
  541. overflow: hidden;
  542. }
  543. .content {
  544. margin: 10px 0;
  545. }
  546. .wrap {
  547. margin: 10rpx;
  548. padding: 20rpx 20rpx 300rpx 20rpx;
  549. .top {
  550. display: flex;
  551. margin-bottom: 20rpx;
  552. .top-left {
  553. margin-right: 20rpx;
  554. }
  555. }
  556. }
  557. .bottom-btn {
  558. width: 100%;
  559. position: fixed;
  560. bottom: 0;
  561. display: flex;
  562. z-index: 2;
  563. left: 0;
  564. background-color: #f8f8f8;
  565. flex-direction: column;
  566. .btn1,
  567. .btn2 {
  568. width: 100%;
  569. margin-bottom: 26rpx;
  570. border-radius: 90rpx;
  571. }
  572. .btn1 {
  573. background: white;
  574. color: #00C265;
  575. }
  576. }
  577. .content,
  578. .content1,
  579. .content2 {
  580. border-radius: 20rpx;
  581. background: white;
  582. padding: 20rpx;
  583. .title {
  584. font-size: 28rpx;
  585. // font-weight: 600;
  586. color: #333333;
  587. }
  588. .row {
  589. display: flex;
  590. justify-content: space-between;
  591. // border-bottom: 1px solid #EEEEEE;
  592. padding: 20rpx 0;
  593. .right,
  594. input {
  595. font-size: 28rpx;
  596. color: #333333;
  597. }
  598. }
  599. .row-bottom {
  600. // border: 0;
  601. .right-bottom {
  602. width: 280rpx;
  603. text-align: right;
  604. }
  605. }
  606. }
  607. .content1 {
  608. margin-top: 20rpx;
  609. }
  610. .content2 {
  611. margin-top: 10px;
  612. // display: flex;
  613. align-items: center;
  614. .left {
  615. margin-right: 20px;
  616. }
  617. }
  618. .edit-btn {
  619. background: #22C572;
  620. width: 100rpx;
  621. height: 50rpx;
  622. margin: 0;
  623. color: white;
  624. }
  625. .has-btn {
  626. align-items: center;
  627. }
  628. .shade {
  629. background: #000;
  630. position: fixed;
  631. top: 0;
  632. left: 0;
  633. width: 100%;
  634. height: 100%;
  635. z-index: 10000;
  636. }
  637. .pound_list {
  638. width: 452rpx;
  639. display: flex;
  640. justify-content: flex-end;
  641. text-align: right;
  642. }
  643. .c-row {
  644. display: -webkit-box;
  645. display: -webkit-flex;
  646. display: flex;
  647. -webkit-box-align: center;
  648. -webkit-align-items: center;
  649. align-items: center;
  650. padding: 10rpx;
  651. position: relative;
  652. }
  653. .con-list {
  654. -webkit-box-flex: 1;
  655. -webkit-flex: 1;
  656. flex: 1;
  657. display: -webkit-box;
  658. display: -webkit-flex;
  659. display: flex;
  660. -webkit-box-orient: vertical;
  661. -webkit-box-direction: normal;
  662. -webkit-flex-direction: column;
  663. flex-direction: column;
  664. color: #303133;
  665. line-height: 40rpx;
  666. text-align: right;
  667. padding-right: 20rpx;
  668. }
  669. .btn{
  670. padding: 10rpx 60rpx;
  671. border-radius: 40rpx;
  672. color: #FFFFFF;
  673. line-height: 46rpx;
  674. margin: 0 auto;
  675. background-color: #5ac725;
  676. }
  677. .add_css {
  678. width: 50%;
  679. display: flex;
  680. justify-content: flex-end;
  681. .add {
  682. padding: 10rpx 20rpx;
  683. background-color: #5ac725;
  684. border-radius: 6rpx;
  685. color: #FFFFFF;
  686. line-height: 40rpx;
  687. }
  688. }
  689. .open_css {
  690. width: 36rpx;
  691. height: 20rpx;
  692. // top: 4rpx;
  693. }
  694. .title_css {
  695. margin-bottom: 20rpx;
  696. .head_css {
  697. margin-left: 20rpx;
  698. width: 50%;
  699. line-height: 40rpx;
  700. margin-bottom: 30rpx;
  701. }
  702. }
  703. </style>