baobei-info.vue 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. <template>
  2. <view class="baobei-info">
  3. <view class="info-header u-flex-col u-col-center u-row-center">
  4. <view class="image-box u-flex u-row-between">
  5. <view class="image u-flex u-row-center" v-for="(item,index) in tabs" :key="index">
  6. <image src="../../static/images/jindu1.png" v-if="index < status" mode=""></image>
  7. <image src="../../static/images/jindu.png" v-else mode=""></image>
  8. </view>
  9. </view>
  10. <view class="jindu-box u-flex u-row-between">
  11. <view class="item-bg" :style="{width:130 * status + 'rpx'}"></view>
  12. <view class="item" v-for="(item,index) in tabs" :key="index">
  13. <text :class="index < status ? 'text' : ''">{{item}}</text>
  14. </view>
  15. </view>
  16. </view>
  17. <u-gap bg-color="#F5F5F5" height="20"></u-gap>
  18. <view class="" style="padding: 0 24rpx;width: 702rpx;margin: 0 auto;border-radius: 20rpx;background-color: #fff;">
  19. <view class="broker-title">
  20. 基本信息
  21. </view>
  22. <view class="broker-row u-flex">
  23. <view class="broker-row-left u-flex">
  24. <text>意向区域</text>
  25. <!-- <text>*</text> -->
  26. </view>
  27. <input type="text" placeholder="请选择您的意向区域" v-model="detail.area_name" class="input-right" :disabled="true">
  28. <u-icon name="arrow-right" color="#CCCCCC"></u-icon>
  29. </view>
  30. <view class="broker-row u-flex">
  31. <view class="broker-row-left u-flex">
  32. <text>意向项目</text>
  33. </view>
  34. <input type="text" placeholder="请选择您的意向楼盘" v-model="detail.property_name" class="input-right" :disabled="true">
  35. <u-icon name="arrow-right" color="#CCCCCC"></u-icon>
  36. </view>
  37. <view class="broker-row u-flex">
  38. <view class="broker-row-left u-flex">
  39. <text>客户姓名</text>
  40. <!-- <text>*</text> -->
  41. </view>
  42. <input type="text" placeholder="请输入" class="input-right" v-model="detail.client_name" :disabled="true">
  43. </view>
  44. <view class="broker-row u-flex">
  45. <view class="broker-row-left u-flex">
  46. <text>联系方式</text>
  47. <!-- <text>*</text> -->
  48. </view>
  49. <input type="number" placeholder="请输入" class="input-right" v-model="detail.client_phone" :disabled="true">
  50. </view>
  51. </view>
  52. <u-gap bg-color="#F5F5F5" height="20"></u-gap>
  53. <view class="" style="padding: 0 24rpx;width: 702rpx;margin: 0 auto;border-radius: 20rpx;background-color: #fff;">
  54. <view class="broker-title">
  55. 其他信息
  56. </view>
  57. <view class="broker-row u-flex">
  58. <view class="broker-row-left u-flex">
  59. <text>带看人姓名</text>
  60. <!-- <text>*</text> -->
  61. </view>
  62. <input type="text" placeholder="请输入" class="input-right" v-model="detail.report_name" :disabled="true">
  63. </view>
  64. <view class="broker-row u-flex">
  65. <view class="broker-row-left u-flex">
  66. <text>联系方式</text>
  67. <!-- <text>*</text> -->
  68. </view>
  69. <input type="number" placeholder="请输入" class="input-right" v-model="detail.report_phone" :disabled="true">
  70. </view>
  71. <view class="broker-row u-flex">
  72. <view class="broker-row-left u-flex">
  73. <text>中介门店</text>
  74. <!-- <text>*</text> -->
  75. </view>
  76. <input type="text" placeholder="请输入" class="input-right" v-model="detail.shop" :disabled="true">
  77. </view>
  78. <view class="broker-row u-flex">
  79. <view class="broker-row-left u-flex">
  80. <text>预约看房日期</text>
  81. </view>
  82. <input type="text" placeholder="请选择看房日期" class="input-right" v-model="detail.time" :disabled="true">
  83. <u-icon name="arrow-right" color="#CCCCCC"></u-icon>
  84. </view>
  85. <view class="broker-row u-flex">
  86. <view class="broker-row-left u-flex">
  87. <text>审核状态</text>
  88. </view>
  89. <view class="input-right">
  90. <text style="color: rgba(240, 127, 48, 1);" v-if="detail.status == 1">审核中</text>
  91. <text style="color: rgba(68, 220, 37, 1);" v-if="detail.status == 2">已通过</text>
  92. <text style="color: rgba(220, 75, 37, 1);" v-if="detail.status == 3">审核失败</text>
  93. <text style="color: rgba(204, 204, 204, 1)" v-if="detail.status == 4">已失效</text>
  94. </view>
  95. </view>
  96. </view>
  97. <u-gap bg-color="#F5F5F5" height="20"></u-gap>
  98. <view class="" style="padding: 0 24rpx;width: 702rpx;margin: 0 auto;border-radius: 20rpx;background-color: #fff;">
  99. <view class="broker-title">
  100. 报备流程
  101. </view>
  102. <view class="u-flex" style="padding-bottom: 40rpx;">
  103. <text style="width: 22rpx;height: 22rpx;background: #F07F30;border-radius: 100rpx;margin-right: 24rpx;"></text>
  104. <view class="u-flex-col u-col-top" style="width: 348rpx;background: #F2F2F2;border-radius: 10rpx;padding: 24rpx;">
  105. <text style="margin-bottom: 6rpx;font-size: 24rpx;color: rgba(240, 127, 48, 1);" v-if="detail.status == 1">审核中</text>
  106. <text style="margin-bottom: 6rpx;font-size: 24rpx;color: rgba(68, 220, 37, 1);" v-if="detail.status == 2 && detail.flow_status == 1">报备</text>
  107. <text style="margin-bottom: 6rpx;font-size: 24rpx;color: rgba(68, 220, 37, 1);" v-if="detail.status == 2 && detail.flow_status == 2">到访</text>
  108. <text style="margin-bottom: 6rpx;font-size: 24rpx;color: rgba(68, 220, 37, 1);" v-if="detail.status == 2 && detail.flow_status == 3">认购</text>
  109. <text style="margin-bottom: 6rpx;font-size: 24rpx;color: rgba(68, 220, 37, 1);" v-if="detail.status == 2 && detail.flow_status == 4">签约</text>
  110. <text style="margin-bottom: 6rpx;font-size: 24rpx;color: rgba(68, 220, 37, 1);" v-if="detail.status == 2 && detail.flow_status == 5">结佣</text>
  111. <text style="margin-bottom: 6rpx;font-size: 24rpx;color: rgba(220, 75, 37, 1);" v-if="detail.status == 3">审核失败</text>
  112. <text style="margin-bottom: 6rpx;font-size: 24rpx;color: rgba(204, 204, 204, 1)" v-if="detail.status == 4">已失效</text>
  113. <text style="font-size: 20rpx;color: #999999;">{{detail.explain}}</text>
  114. </view>
  115. </view>
  116. </view>
  117. <view style="height: 200rpx;"></view>
  118. <view class="baobei-info-btn" @click="show = true" v-if="detail.status == 2">
  119. 二维码展示
  120. </view>
  121. <u-popup v-model="show" mode="center" background="rgba(0,0,0,0)">
  122. <view class="code-popup u-flex-col u-col-center">
  123. <image src="../../static/images/code.png" class="code" mode=""></image>
  124. <u-icon name="close-circle-fill" size="72" color="#fff" @click="show = false"></u-icon>
  125. </view>
  126. </u-popup>
  127. </view>
  128. </template>
  129. <script>
  130. import { mapState } from 'vuex'
  131. export default {
  132. data() {
  133. return {
  134. show: false,
  135. id: '',
  136. detail: {},
  137. tabs: ['报备', '到访', '认购', '签约', '结佣'],
  138. status: 0
  139. }
  140. },
  141. onLoad(option) {
  142. this.id = option.id
  143. this.getdata()
  144. },
  145. onShow() {
  146. uni.setNavigationBarTitle({
  147. title: this.config.store_title
  148. })
  149. },
  150. computed:{
  151. ...mapState(['config'])
  152. },
  153. methods: {
  154. getdata() {
  155. this.$u.post('/api/Report/report_detail', {
  156. id: this.id
  157. }).then(res => {
  158. this.detail = res.data
  159. if(this.detail.status == 2){
  160. this.status = res.data.flow_status
  161. }
  162. })
  163. }
  164. }
  165. }
  166. </script>
  167. <style lang="scss">
  168. page{
  169. background-color: rgba(245, 245, 245, 1);
  170. }
  171. .code-popup {
  172. .code {
  173. width: 564rpx;
  174. height: 564rpx;
  175. border-radius: 20rpx;
  176. margin-bottom: 60rpx;
  177. }
  178. }
  179. .baobei-info {
  180. .info-header {
  181. width: 702rpx;
  182. height: 180rpx;
  183. background: #FFFFFF;
  184. border-radius: 20rpx;
  185. margin: 20rpx auto;
  186. .jindu-box {
  187. border-radius: 20rpx;
  188. overflow: hidden;
  189. position: relative;
  190. z-index: 1;
  191. background-color: rgba(229, 229, 229, 1);
  192. .item-bg {
  193. background-color: rgba(31, 126, 255, 1);
  194. border-radius: 20rpx;
  195. height: 54rpx;
  196. position: absolute;
  197. top: 0;
  198. left: 0;
  199. z-index: -1;
  200. }
  201. .item {
  202. width: 130rpx;
  203. // position: relative;
  204. // z-index: 1;
  205. // border-radius: 20rpx;
  206. // overflow: hidden;
  207. text {
  208. display: inline-block;
  209. width: 130rpx;
  210. line-height: 54rpx;
  211. font-size: 24rpx;
  212. font-family: PingFangSC-Regular, PingFang SC;
  213. font-weight: 400;
  214. color: #999999;
  215. text-align: center;
  216. }
  217. .text {
  218. color: #fff;
  219. }
  220. }
  221. }
  222. .image-box {
  223. margin-bottom: 6rpx;
  224. .image {
  225. width: 130rpx;
  226. image {
  227. width: 67rpx;
  228. height: 64rpx;
  229. }
  230. }
  231. }
  232. }
  233. .baobei-info-btn {
  234. width: 702rpx;
  235. line-height: 82rpx;
  236. background: #1F7EFF;
  237. border-radius: 8rpx;
  238. position: fixed;
  239. bottom: 50rpx;
  240. left: 24rpx;
  241. text-align: center;
  242. font-size: 28rpx;
  243. font-family: PingFangSC-Regular, PingFang SC;
  244. font-weight: 400;
  245. color: #FFFFFF;
  246. z-index: 100;
  247. }
  248. .broker-row {
  249. height: 82rpx;
  250. border-bottom: 2rpx solid #F5F5F5;
  251. .input-right {
  252. flex: 1;
  253. font-size: 24rpx;
  254. }
  255. .broker-row-left {
  256. width: 252rpx;
  257. text:first-child {
  258. font-size: 24rpx;
  259. font-family: PingFangSC-Regular, PingFang SC;
  260. font-weight: 400;
  261. color: #999999;
  262. }
  263. text:nth-child(2) {
  264. font-size: 24rpx;
  265. font-family: PingFangSC-Regular, PingFang SC;
  266. font-weight: 400;
  267. color: #F83838;
  268. }
  269. }
  270. }
  271. .broker-title {
  272. padding: 24rpx 0;
  273. font-size: 28rpx;
  274. font-family: PingFangSC-Medium, PingFang SC;
  275. font-weight: 500;
  276. color: #333333;
  277. }
  278. }
  279. </style>