xuyunhui 1 жил өмнө
parent
commit
4d9b517c03

+ 3 - 3
common/js/env.js

@@ -1,9 +1,9 @@
 "use strict";
 
 // let baseUrl = `https://jje.admin.xinyuekj.com.cn`
-let baseUrl = `https://jje.xinyuekj.com.cn/prod-api`
+// let baseUrl = `https://jje.xinyuekj.com.cn/prod-api`
 /** 测试环境 */
-// let baseUrl = `https://jje.admin.xinyuekj.com.cn/test-api`
+let baseUrl = `https://jje.admin.xinyuekj.com.cn/test-api`
 /** 开发环境*/
 // let baseUrl = `http://65i1sxopd9qp.ngrok.xiaomiqiu123.top`
 // let baseUrl = `http://47.108.114.127:10888`
@@ -21,4 +21,4 @@ export default { //存放变量的容器
 	baseUrl,
 	uploadUrl: '/v1/file/put-file'
 
-}
+}

+ 8 - 0
myPages/ServiceObjectManagement/index.vue

@@ -24,6 +24,9 @@
                 <view class="completed" >
                   备注:<text>{{item.remark || '无'}}</text>
                 </view>
+                <view class="completed" >
+                  备注:<text class="tab" :style="{'backgroundColor': item.minMainCardStatus ? '#85ce63':'#a6a9ad' }" >{{item.minMainCardStatus ?  "已注册" : "未注册"}}</text>
+                </view>
               </view>
             </view>
 
@@ -230,4 +233,9 @@
     margin-left: 16rpx;
     border-radius: 12rpx;
   }
+  .tab{
+    padding:5rpx 10rpx ;
+    color: white;
+    border-radius:5rpx ;
+  }
 </style>