Commit f5908be6 by kyle

Merge branch 'dev' of http://139.224.139.2:9091/chaosun/CFFP into dev

parents ad554b2e 6ea20cb5
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
<script src="https://res2.wx.qq.com/open/js/jweixin-1.6.0.js"></script> <script src="https://res2.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
<!-- 移动端调试 --> <!-- 移动端调试 -->
<script type="text/javascript" src="//cdn.jsdelivr.net/npm/eruda"></script> <script type="text/javascript" src="//cdn.jsdelivr.net/npm/eruda"></script>
<script>eruda.init();</script> <!-- <script>eruda.init();</script> -->
</head> </head>
<body> <body>
<div id="app"> <div id="app">
......
...@@ -54,7 +54,8 @@ ...@@ -54,7 +54,8 @@
"<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>" "<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"
], ],
"minSdkVersion" : 21, "minSdkVersion" : 21,
"schemes" : "cffpapp,hbuilder" "schemes" : "cffpapp,hbuilder",
"abiFilters" : [ "armeabi-v7a", "arm64-v8a", "x86" ]
}, },
/* ios打包配置 */ /* ios打包配置 */
"ios" : { "ios" : {
...@@ -99,7 +100,8 @@ ...@@ -99,7 +100,8 @@
"xhdpi" : "", "xhdpi" : "",
"xxhdpi" : "" "xxhdpi" : ""
}, },
"iosStyle" : "common" "iosStyle" : "common",
"useOriginalMsgbox" : true
}, },
"icons" : { "icons" : {
"android" : { "android" : {
......
...@@ -12,8 +12,7 @@ ...@@ -12,8 +12,7 @@
<view class="ulBox"> <view class="ulBox">
<view class="liBox"> <view class="liBox">
<text>姓名:</text> <text>姓名:</text>
<text><input v-model="dataForm.name" class="uni-input" maxlength="15" placeholder="姓名" <text><input v-model="dataForm.name" class="uni-input" maxlength="15" placeholder="姓名" /></text>
@blur="blueInput(dataForm.name)" /></text>
</view> </view>
<view class="liBox"> <view class="liBox">
<text>手机号:</text> <text>手机号:</text>
...@@ -159,7 +158,7 @@ ...@@ -159,7 +158,7 @@
shareId: '', shareId: '',
realName: '', realName: '',
partnerLevel: '', partnerLevel: '',
invitationCode:'' invitationCode: ''
}; };
}, },
onLoad(option) { onLoad(option) {
...@@ -170,17 +169,18 @@ ...@@ -170,17 +169,18 @@
this.invitationCode = dataForm.invitationCode this.invitationCode = dataForm.invitationCode
}, },
methods: { methods: {
blueInput(name) { // 暂时废弃
console.log(name, 1251515) // blueInput(name) {
if (!common.nameValid(name)) { // console.log(name, 1251515)
uni.showToast({ // if (!common.nameValid(name)) {
title: '请输入真实的姓名!', // uni.showToast({
duration: 2000, // title: '请输入真实的姓名!',
icon: 'none' // duration: 2000,
}) // icon: 'none'
return; // })
} // return;
}, // }
// },
queryorgchange(e) { queryorgchange(e) {
this.orgindex = e.detail.value this.orgindex = e.detail.value
}, },
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
<p style="margin-top: 20rpx;">V1.0.21</p> <p style="margin-top: 20rpx;">V1.0.21</p>
</view> </view>
</view> </view>
<view class="hand" > <view class="hand" @click="latestversion()">
<text>版本更新</text> <text>版本更新</text>
<view class="iconBox"> <view class="iconBox">
<i class="iconfont icon-youjiantou"></i> <i class="iconfont icon-youjiantou"></i>
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
</view> </view>
<view class="" style="display: align-self: end;"> <view class="" style="display: align-self: end;">
<text style="color: #2D56A7;">《服务协议》| 《隐私政策》</text> <span><text style="color: #2D56A7;" @click="getFile(1)">《服务协议》 | </text><text style="color: #2D56A7;" @click="getFile(1)">《隐私政策》</text></span>
<p class="footer-text" style="margin: 10px 0;">客服电话:400:921-9029</p> <p class="footer-text" style="margin: 10px 0;">客服电话:400:921-9029</p>
<p class="footer-text">由银盾保险经纪有限公司提供</p> <p class="footer-text">由银盾保险经纪有限公司提供</p>
</view> </view>
...@@ -39,6 +39,20 @@ ...@@ -39,6 +39,20 @@
}, },
created() { created() {
},
methods:{
getFile(type){
uni.navigateTo({
url:`/components/clause/clause?type=${type}`
})
},
latestversion(){
uni.showToast({
title: '已是最新版本,无需更新!',
duration: 2000,
icon: 'none'
})
}
} }
} }
</script> </script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment