details.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592
  1. <template>
  2. <view class="detail">
  3. <view class="navbox">
  4. <!-- 步骤条 -->
  5. <view class="dtabs">
  6. <view class="tab" :class="datainfo.sqmyProgress==ite.value?'act':''" v-for="(ite,idx) in stepList" :key="idx">
  7. <view class="cir"></view>
  8. <view class="tit">{{ite.label}}</view>
  9. </view>
  10. </view>
  11. </view>
  12. <!-- 主体 -->
  13. <view class="deboxs">
  14. <view class="bghbox"></view>
  15. <view class="dbox fmt30">
  16. <!-- <text>【市政协十五届一 次会议第301号提案】</text> -->
  17. <view class="dtit">关于{{datainfo.title}}</view>
  18. <!-- <view class="titbox mb14">
  19. <view class="tit flexc">
  20. <image :src="titimg"></image>
  21. <view>提案者信息</view>
  22. </view>
  23. </view> -->
  24. <view class="titinf">
  25. <view class="txt"><text>上报者</text>{{datainfo.sqmyName}}</view>
  26. <view class="txt"><text>主题类别</text>{{typeFormat(datainfo.topicType,ztlxlist)}}</view>
  27. <view class="txt"><text>工作单位及职务</text>{{datainfo.unit}}</view>
  28. <view class="txt"><text>联系人</text>{{datainfo.lxrName}}</view>
  29. <view class="txt"><text>联系方式</text>{{datainfo.lxrPhone}}</view>
  30. <view class="txt"> <text>是否公开</text>{{datainfo.isPublicity==0?'是':'否'}}</view>
  31. <view class="txt"><text>是否涉密</text>{{datainfo.isSecret==0?'是':'否'}}</view>
  32. <view class="txt"><text>提交时间</text>{{datainfo.createTime}}</view>
  33. </view>
  34. </view>
  35. <view class="dbox">
  36. <view class="titbox mb14">
  37. <view class="tit flexc">
  38. <image :src="titimg"></image>
  39. <view>信息内容</view>
  40. </view>
  41. </view>
  42. <view class="txtbox" :class="zheList[1].zheflag?'nact':'act'">
  43. <rich-text :nodes="datainfo.sqmyContent"></rich-text>
  44. </view>
  45. <!-- 折叠 -->
  46. <view class="zhebox" :class="zheList[1].zheflag?'':'act'" @click="getZheFn(1)">
  47. <image :src="upsimg"></image>
  48. <view>{{zheList[1].zheflag?'展开信息':'折叠信息'}}</view>
  49. </view>
  50. <view class="bortop"></view>
  51. <view class="ftit mb14">附件信息</view>
  52. <view class="fjlists flext" v-for="(ite,idx) in filelist" :key='idx' @click="getDown(ite.url)">
  53. <view class="imgl"><image :src="fjimg" ></image></view>
  54. <view class="tit">{{ite.name}}</view>
  55. <view class="fjlook">查看</view>
  56. </view>
  57. </view>
  58. <view class="dbox">
  59. <view class="titbox mb16">
  60. <view class="tit flexc">
  61. <image :src="titimg"></image>
  62. <view>审核情况</view>
  63. </view>
  64. </view>
  65. <block v-for="(ite,idx) in datainfo.sqmyUnitReplyList" :key="idx">
  66. <view v-if="dwVal==ite.type">
  67. <view class="titinf" v-if="ite.type==2">
  68. <view class="txt wb100"><text>审核单位</text>{{ite.deptName}}</view>
  69. <view class="txt"><text>签收时间</text>{{ite.startTime}}</view>
  70. <view class="txt"> <text>审核时间</text>{{ite.endTime}}</view>
  71. <view class="txt" :class="zheList[2].zheflag?'nact':'act'"><text>答复内容</text>
  72. <rich-text :nodes="ite.content"></rich-text>
  73. </view>
  74. </view>
  75. <!-- 折叠 -->
  76. <view class="zhebox" :class="zheList[2].zheflag?'':'act'" @click="getZheFn(2)">
  77. <image :src="upsimg"></image>
  78. <view>{{zheList[2].zheflag?'展开信息':'折叠信息'}}</view>
  79. </view>
  80. <view class="bortop"></view>
  81. <view class="ftit mb14">答复函</view>
  82. <view class="fjlists flext" v-for="(item,idx) in ite.zxFjList" :key='item.id' @click="getDown(item.path)">
  83. <view class="imgl"><image :src="fjimg" ></image></view>
  84. <view class="tit">{{item.name}}</view>
  85. <view class="fjlook">查看</view>
  86. </view>
  87. </view>
  88. <!-- 暂无反馈 -->
  89. <!-- <block v-else>
  90. <no-data></no-data>
  91. </block> -->
  92. </block>
  93. </view>
  94. <!-- 提案立案以下隐藏 -->
  95. <view class="dbox">
  96. <view class="titbox mb16">
  97. <view class="tit flexc">
  98. <image :src="titimg"></image>
  99. <view>办理情况</view>
  100. </view>
  101. </view>
  102. <view class="dbtabs flexc mb20">
  103. <view class="dbtab" :class="ite.val==dwVal?'act':''" v-for="(ite,idx) in dwList" :key="idx" @click="getDwFn(ite.val)">{{ite.tit}}</view>
  104. </view>
  105. <block v-for="(ite,idx) in datainfo.sqmyUnitReplyList" :key="idx">
  106. <view v-if="dwVal==ite.type">
  107. <view class="titinf" v-if="ite.type==2||ite.type==3">
  108. <view class="txt wb100"><text>{{ite.type==2?'主办单位':'协办单位'}}</text>{{ite.deptName}}</view>
  109. <view class="txt"><text>办理方式</text>{{ite.handling}}</view>
  110. <view class="txt"><text>办理程度</text>{{ite.degree}}</view>
  111. <view class="txt"><text>签收时间</text>{{ite.startTime}}</view>
  112. <view class="txt"> <text>办结时间</text>{{ite.endTime}}</view>
  113. <view class="txt" :class="zheList[2].zheflag?'nact':'act'"><text>答复内容</text>
  114. <rich-text :nodes="ite.content"></rich-text>
  115. </view>
  116. </view>
  117. <!-- 折叠 -->
  118. <view class="zhebox" :class="zheList[2].zheflag?'':'act'" @click="getZheFn(2)">
  119. <image :src="upsimg"></image>
  120. <view>{{zheList[2].zheflag?'展开信息':'折叠信息'}}</view>
  121. </view>
  122. <view class="bortop"></view>
  123. <view class="ftit mb14">答复函</view>
  124. <view class="fjlists flext" v-for="(item,idx) in ite.zxFjList" :key='item.id' @click="getDown(item.path)">
  125. <view class="imgl"><image :src="fjimg" ></image></view>
  126. <view class="tit">{{item.name}}</view>
  127. <view class="fjlook">查看</view>
  128. </view>
  129. </view>
  130. <!-- 暂无反馈 -->
  131. <!-- <block v-else>
  132. <no-data></no-data>
  133. </block> -->
  134. </block>
  135. </view>
  136. <view class="dbox">
  137. <view class="titbox mb16">
  138. <view class="tit flexc">
  139. <image :src="titimg"></image>
  140. <view>反馈情况</view>
  141. </view>
  142. </view>
  143. <view class="titinf">
  144. <view class="ftit mb10">委员反馈</view>
  145. <view class="txt wb100" style="align-items: center;"><text class="w65">对办理情况是否满意</text>{{typeFormattext(datainfo.satisfaction,mycdlist)}}</view>
  146. <view class="txt"><text class="w65">有何进一步意见和建议</text>
  147. {{datainfo.membersOpinion}}
  148. </view>
  149. </view>
  150. <view class="titinf">
  151. <view class="ftit mb10 mt2">政协反馈</view>
  152. <view class="txt wb100" style="align-items: center;"><text class="w65">对办理情况是否满意</text>{{typeFormattext(datainfo.zxSatisfaction,mycdlist)}}</view>
  153. <view class="txt"><text class="w65">有何进一步意见和建议</text>
  154. {{datainfo.zxOpinion}}
  155. </view>
  156. </view>
  157. </view>
  158. <view class="fbtns" style="flex-wrap: wrap;">
  159. <!-- 按角色选择按钮 -->
  160. <view class="btn btn1" @click="getDelFn" v-if="checkPermi(['sqmyInfo:info:query'])">删除</view>
  161. <view class="btn btn1" @click="getEditFn" v-if="checkPermi(['sqmyInfo:info:edit'])">修改</view>
  162. <view class="btn btn2" @click="getScfkFn('scfk')" v-if="checkPermi(['sqmyInfo:info:isRecord'])">2审查反馈</view>
  163. <view class="btn btn2" @click="getScfkFn('tajb')" v-if="checkPermi(['sqmyInfo:info:assign'])">3提案交办</view>
  164. <view class="btn btn2" @click="getScfkFn('dffk')" v-if="checkPermi(['sqmy:unit:reply'])">4答复反馈</view>
  165. <view class="btn btn2" @click="getScfkFn('jbsh')" v-if="checkPermi(['sqmyInfo:info:assignsh'])">5交办审核</view>
  166. <view class="btn btn2" @click="getScfkFn('dwdf')" v-if="checkPermi(['sqmy:unit:reply'])">5答复反馈</view>
  167. <view class="btn btn2" @click="getScfkFn('wymyfk')" v-if="checkPermi(['sqmyInfo:info:idea'])">6办结审核</view>
  168. <view class="btn btn2" @click="getScfkFn('zxmyfk')" v-if="checkPermi(['sqmyInfo:info:zxIdea'])">7办结审核</view>
  169. <!--委员答复填内容,委员填满意度 -->
  170. <!--协办单位,主办单位 填办理方式,办理程度,内容 附件 -->
  171. <!-- 4.承办单位答复,交办单位审核(通过,不通过), -->
  172. <!-- 交办单位 审核后,承办单位答复(),委员直接提交评价(满意程度)-->
  173. <!-- 流程 -->
  174. <!-- 提案进度(0:提交提案,1:提案审查,2:提案立案,3:提案交办,4:办理提案,5:提案反馈,6:办结审核,7:已办结) -->
  175. <!-- 1.委员录入
  176. 2.提案委立案是否,否 指定答复(交办)单位
  177. 3.交办 选择答复(承办)单位(主办,协办)
  178. 4.承办单位 答复反馈(办理方式,办理程度,内容)
  179. 5.交办单位审核(通过,不通过),承办单位答复交办单位审核(内容,附件)
  180. 6.委员提交满意度,评价
  181. 7.政协 提交满意度(办结审核) -->
  182. <!-- 只要提案就可以 推荐重点,推荐优秀
  183. 提案办理,催办,联名,单列表 -->
  184. <!-- 征集通知 ,提案查重,暂不需要 -->
  185. <!-- 政协评价 -->
  186. </view>
  187. </view>
  188. <pop-up :type='ptype' :blfsList="matterList" :blcdlist="blcdlist" :mycdlist="mycdlist" :dataTree="deptTree" @getClose="getClose" @getupSubmit="getupSubmit"></pop-up>
  189. </view>
  190. </template>
  191. <script>
  192. import config from '@/config'
  193. const baseUrl = config.baseUrl
  194. import { checkPermi, checkRole } from "@/utils/permission"; // 权限判断函数
  195. import popUp from "@/work/components/popup/popup.vue"
  196. import noData from "@/components/nodata/nodata.vue"
  197. import {getDeptTree} from"@/api/mine/mine.js"
  198. import { selectValue,selectValuetext } from '@/utils/common.js';
  199. import {getsqmyInfoDetailFn,getsqmyInfoDelFn,getsqmyInfoisRecordFn,getsqmyInfoAssignFn,getsqmyReplyFn,
  200. getsqmyInfoShFn,getsqmyInfoIdeaFn,getsqmyInfozxIdeaFn} from "@/api/mine/sqmyInfo.js"
  201. import {getDictionaryFn} from "@/api/mine/register.js"
  202. export default{
  203. components:{popUp,noData},
  204. data(){
  205. return{
  206. bgimg:require("@/static/images/bg.png"),
  207. fjimg:require("@/work/static/images/fjimg.png"),
  208. filelist:[],
  209. tabidx:5,
  210. titimg:require("@/work/static/images/titbg.png"),
  211. upsimg:require("@/work/static/images/ups.png"),
  212. zheList:[{val:0,zheflag:true,moreflag:true},{val:0,zheflag:true,moreflag:true},{val:0,zheflag:true,moreflag:true},{val:0,zheflag:true,moreflag:true},],
  213. dwList:[{tit:'主办单位',val:2},{tit:'协办单位',val:3}],
  214. dwdetList:[],
  215. dwVal:2,
  216. ptype:'',
  217. datainfo:{},
  218. dflxList:[],
  219. ztlxlist:[],//主题类型
  220. stepList:[],//提案状态
  221. jblist:[],//界别
  222. matterList:[],//方式
  223. blcdlist:[],//办理程度
  224. deptTree:[],//答复单位
  225. mycdlist:[],//满意程度
  226. tary:''
  227. }
  228. },
  229. onUnload(){
  230. uni.$off('refreshdetail')
  231. },
  232. onLoad(e) {
  233. this.id=e.id;
  234. this.getDetail()
  235. this.init()
  236. uni.$on('refreshdetail', (e) => {
  237. this.getDetail()
  238. })
  239. // this.deptTree=[{id:100,label:"若依科技",children:[{id:200,label:"吃完",},{id:201,label:"vf",}]}]
  240. },
  241. methods:{
  242. checkPermi, checkRole,
  243. kaType(ite){
  244. if(ite){
  245. var newArr=ite.split(',')
  246. var actions=[];
  247. var datas=this.matterList;
  248. newArr.forEach(ite=>{
  249. Object.keys(datas).some((key) => {
  250. if (datas[key].value == ('' + ite)) {
  251. actions.push(datas[key].label);
  252. return true;
  253. }
  254. })
  255. })
  256. return actions.join(' ')
  257. }
  258. },
  259. typeFormat(ite,list){
  260. return selectValue(list, ite);
  261. },
  262. typeFormattext(ite,list){
  263. return selectValuetext(list, ite);
  264. },
  265. init(){
  266. //提案状态
  267. getDictionaryFn('proposal_progress').then(res=>{
  268. if(res.code==200&&res.data.length){
  269. this.stepList = res.data.map(v => {
  270. return {
  271. label: v.dictLabel,
  272. value:v.dictValue
  273. }
  274. })
  275. }
  276. })
  277. // 主题类型
  278. getDictionaryFn('sqmy_topic_type').then(res=>{
  279. if(res.code==200&&res.data.length){
  280. this.ztlxlist = res.data.map(v => {
  281. return {
  282. label: v.dictLabel,
  283. value: v.dictValue
  284. }
  285. })
  286. }
  287. })
  288. // 协办单位
  289. getDeptTree().then(res=>{
  290. if(res.code==200){
  291. this.deptTree=res.data
  292. }
  293. })
  294. // 办理方式
  295. getDictionaryFn('negotiation_mode').then(res=>{
  296. if(res.code==200&&res.data.length){
  297. this.matterList = res.data.map(v => {
  298. return {
  299. label: v.dictLabel,
  300. value: v.dictValue
  301. }
  302. })
  303. }
  304. })
  305. // 办理程度degree
  306. getDictionaryFn('degree').then(res=>{
  307. if(res.code==200&&res.data.length){
  308. this.blcdlist = res.data.map(v => {
  309. return {
  310. text: v.dictLabel,
  311. value: v.dictValue
  312. }
  313. })
  314. }
  315. })
  316. // 满意程度
  317. getDictionaryFn('member_satisfaction').then(res=>{
  318. if(res.code==200&&res.data.length){
  319. this.mycdlist = res.data.map(v => {
  320. return {
  321. text: v.dictLabel,
  322. value: v.dictValue
  323. }
  324. })
  325. }
  326. })
  327. },
  328. getsqmyInfoisRecordFn(){
  329. getsqmyInfoisRecordFn().then(res=>{
  330. })
  331. },
  332. getupSubmit(e){
  333. var that=this;
  334. var type=this.ptype;
  335. if(type=='scfk'){
  336. var params=JSON.parse(JSON.stringify(e))
  337. params.sqmyId=this.id
  338. getsqmyInfoisRecordFn(params).then(res=>{
  339. if(res.code==200){
  340. this.$toast("立案成功");
  341. setTimeout(function(){
  342. that.ptype='';
  343. that.getDetail()
  344. },1200)
  345. }
  346. })
  347. }else if(type=='tajb'){
  348. var params=JSON.parse(JSON.stringify(e))
  349. params.sqmyId=this.id
  350. getsqmyInfoAssignFn(params).then(res=>{
  351. if(res.code==200){
  352. this.$toast("提案办结成功");
  353. setTimeout(function(){
  354. that.ptype='';
  355. that.getDetail()
  356. },1200)
  357. }
  358. })
  359. }else if(type=='dffk'||type=='dwdf'){
  360. var params=JSON.parse(JSON.stringify(e))
  361. params.sqmyId=this.id
  362. getsqmyReplyFn(params).then(res=>{
  363. if(res.code==200){
  364. this.$toast("答复反馈成功");
  365. setTimeout(function(){
  366. that.ptype='';
  367. that.getDetail()
  368. },1200)
  369. }
  370. })
  371. }else if(type=='jbsh'){
  372. var params=JSON.parse(JSON.stringify(e))
  373. params.sqmyId=this.id
  374. getsqmyInfoShFn(params).then(res=>{
  375. if(res.code==200){
  376. this.$toast("交办审核成功");
  377. setTimeout(function(){
  378. that.ptype='';
  379. that.getDetail()
  380. },1200)
  381. }
  382. })
  383. }else if(type=='wymyfk'){
  384. var params=JSON.parse(JSON.stringify(e))
  385. params.sqmyId=this.id
  386. getsqmyInfoIdeaFn(params).then(res=>{
  387. if(res.code==200){
  388. this.$toast("提案办结成功");
  389. setTimeout(function(){
  390. that.ptype='';
  391. that.getDetail()
  392. },1200)
  393. }
  394. })
  395. }else if(type=='zxmyfk'){
  396. var params=JSON.parse(JSON.stringify(e))
  397. params.sqmyId=this.id
  398. getsqmyInfozxIdeaFn(params).then(res=>{
  399. if(res.code==200){
  400. this.$toast("提案办结成功");
  401. setTimeout(function(){
  402. that.ptype='';
  403. that.getDetail()
  404. },1200)
  405. }
  406. })
  407. }
  408. },
  409. getEditFn(){
  410. this.$tab.navigateTo('/work/pages/sqmyInfo/add?type=edit&id='+this.id)
  411. },
  412. getClose(){
  413. this.ptype=""
  414. },
  415. getScfkFn(type){
  416. this.ptype=type
  417. },
  418. getZheFn(idx){
  419. this.zheList[idx].zheflag=!this.zheList[idx].zheflag
  420. },
  421. getDwFn(idx){
  422. this.dwVal=idx
  423. },
  424. getDelFn(){
  425. var that=this;
  426. uni.showModal({
  427. title: '确认删除',
  428. content: "是否确认删除该提案",
  429. cancelText: '取消',
  430. confirmText: '确认',
  431. success: function(res) {
  432. if (res.confirm) {
  433. getsqmyInfoDelFn(that.id).then(res=>{
  434. if(res.code==200){
  435. that.$toast('删除成功')
  436. uni.$emit("refreshlist")
  437. setTimeout(function(){
  438. uni.navigateBack({
  439. delta: 1 //返回层数,2则上上页
  440. });
  441. },1200)
  442. }
  443. })
  444. } else if (res.cancel) {
  445. // console.log('用户点击取消');
  446. }
  447. }
  448. });
  449. },
  450. getDetail(){
  451. getsqmyInfoDetailFn(this.id).then(res=>{
  452. if(res.code==200){
  453. this.datainfo=res.data;
  454. if(res.data.zxFjList&&res.data.zxFjList.length){
  455. this.filelist=JSON.parse(JSON.stringify(res.data.zxFjList))
  456. }
  457. var taryList=res.data.proposalUserList;
  458. if(taryList&&taryList.length){
  459. var newArr=[]
  460. taryList.forEach(ite=>{
  461. newArr.push(ite.name)
  462. })
  463. this.tary=newArr.join('/')
  464. }
  465. this.dwdetList=res.data.proposalUnitReplyList;
  466. }
  467. })
  468. },
  469. getDown(e){
  470. uni.showLoading({
  471. title: '加载中'
  472. });
  473. var url=baseUrl+e;
  474. uni.downloadFile({
  475. url: url,//文件的下载路径
  476. success(result) {
  477. uni.hideLoading()
  478. var filePath = result.tempFilePath;
  479. uni.openDocument({
  480. filePath: filePath,
  481. showMenu: true,
  482. success: function (res) {
  483. // console.log('打开文档成功');
  484. }
  485. });
  486. },
  487. fail(res) {uni.hideLoading()}
  488. })
  489. },
  490. }
  491. }
  492. </script>
  493. <style scoped lang="scss">
  494. .detail{display: flex;flex-direction: column;height: 100vh;}
  495. .navbox{background-color: $com-cd3;flex:0 0 auto;
  496. .dtabs{display: flex;padding: 40rpx 24rpx;
  497. .tab{position: relative;display: flex;flex-direction: column;align-items: center;flex: 1;
  498. &::after{content: '';height: 2rpx;width: 50%;background: #86B2FF;left: 50%;top: 10rpx;position: absolute;transform: translateX(50%);}
  499. &:last-child{
  500. &::after{display: none;}
  501. }
  502. &.act{
  503. .cir{background: #FFFFFF;}
  504. .tit{color: #FFFFFF;}
  505. }
  506. .cir{width: 20rpx;height: 20rpx;background: #86B2FF;border-radius: 50%;margin-bottom: 24rpx;}
  507. .tit{font-weight: bold;font-size: 24rpx;color: #86B2FF;width: 100%;text-align: center;padding: 0 8rpx;}
  508. }
  509. }
  510. }
  511. .deboxs{flex:1;overflow: auto;padding-bottom: 30rpx;
  512. .bghbox{height: 60rpx;background-color: $com-cd3;}
  513. .dbox{background: #FFFFFF;border-radius: 10rpx;margin: 0 24rpx 24rpx;padding: 36rpx 24rpx 24rpx;
  514. .dtit{font-weight: bold;font-size: 15px;color: #222327;margin-bottom: 48rpx;
  515. text{color: #E70000;}
  516. }
  517. .titbox{
  518. .tit{
  519. image{width: 32rpx;height: 18rpx;margin-right: 10rpx;}
  520. view{font-weight: bold;font-size: 32rpx;color: #222327;}
  521. }
  522. }
  523. .titinf{display: flex;flex-wrap: wrap;
  524. &.nact{height: 0;overflow: hidden;}
  525. &.act{height: auto;}
  526. .txt{font-weight: 500;font-size: 26rpx;margin-bottom: 20rpx;color: #222327;display: flex;align-items: flex-start;flex:0 1 auto;min-width: 50%;
  527. &.nact{height: 200rpx;overflow: hidden;}
  528. &.act{height: auto;}
  529. text{color: #AAAAAA;min-width: 104rpx;text-align-last: justify;flex: 0 0 auto;margin-right: 20rpx;
  530. &.w65{width: 130rpx;}
  531. }
  532. view{text-indent: 2rem;}
  533. }
  534. }
  535. .txtbox{text-indent: 2rem;line-height: 36rpx;font-weight: 500;font-size: 26rpx;color: #222327;
  536. &.nact{max-height: 432rpx;overflow: hidden;}
  537. &.act{height: auto;}
  538. }
  539. // tab
  540. .dbtabs{
  541. .dbtab{font-weight: 500;font-size: 26rpx;height: 60rpx;line-height: 60rpx;color: #666666;position: relative;padding: 0 38rpx;margin-left: 8rpx;
  542. &.act{font-weight: bold;font-size: 30rpx;color: #222327;
  543. &::after{content: "";width: 48rpx;height: 4rpx;background: #3699FF;border-radius: 2rpx;position: absolute;left: 50%;margin-left: -24rpx;bottom: -4rpx;}
  544. }
  545. }
  546. }
  547. .bortop{border-top: 2rpx dashed #C1C1C1;margin-bottom: 32rpx;margin-top: 14rpx;width: 100%;}
  548. .ftit{font-weight: bold;font-size: 26rpx;color: #222327;}
  549. .zhebox{display: flex;align-items: center;flex-direction: column;padding: 24rpx 0;
  550. image{width: 28rpx;height: 30rpx;margin-bottom: 10rpx;transition: all 0.3s;}
  551. &.act{
  552. image{transform: rotate(-180deg);}
  553. }
  554. view{font-weight: 500;font-size: 24rpx;color: #AAAAAA;}
  555. }
  556. // 附件
  557. .fjlists {display: flex;align-items: flex-start;justify-content: space-between;margin-bottom: 12rpx;
  558. // image{margin-right: 18rpx;flex: 0 0 auto;}
  559. .imgl{width: 40rpx;height: 40rpx;display: flex;align-items: center;justify-content: center;margin-right: 6rpx;flex: 0 0 auto;
  560. image{width: 26rpx;height: 24rpx;}
  561. }
  562. .tit{font-size: 26rpx;color: #343434;font-weight: 500;margin-top: 4rpx;flex:1;}
  563. .fjlook{font-weight: 500;font-size: 26rpx;color: #1D64E2;flex: 0 0 auto;margin-left: 20rpx;margin-top: 4rpx;}
  564. }
  565. }
  566. }
  567. // 按钮
  568. .fbtns{display: flex;align-items: center;justify-content: space-between;padding: 54rpx 12rpx 34rpx;display: flex;flex-wrap: wrap;
  569. .btn{height: 80rpx;font-weight: bold;font-size: 30rpx;box-sizing: border-box;border-radius: 40rpx;display: flex;align-items: center;
  570. justify-content: center;margin:0 12rpx;flex:1;
  571. &.btn1{border: 2rpx solid #1D64E2;background: #ffffff;color: #1D64E2;}
  572. &.btn2{background: #1D64E2;color: #ffffff;}
  573. }
  574. }
  575. </style>