提交 8475aeb88557e095d591f5592b63ef5b1d591339

作者 wangyu
1 个父辈 70d5278d

优化共同赡养人数据

... ... @@ -143,8 +143,8 @@ App({
143 143 // baseUrl: "http://192.144.144.220:20000/",
144 144 // baseUrl: "http://154.8.229.55:20000/",
145 145 // baseUrl: "http://47.110.250.177:20000/",
146   - // baseUrl: "http://47.110.158.110:20000/",
147   - baseUrl: "https://api.workai.com.cn/",
  146 + baseUrl: "http://47.110.158.110:20000/",
  147 + // baseUrl: "https://api.workai.com.cn/",
148 148 OSSUrl: "", //"https://oss.workai.com.cn/",
149 149 userInfo: null,
150 150 hostInfo: null,
... ...
... ... @@ -2,6 +2,8 @@
2 2 var app = getApp();
3 3 var baseUrl = app.globalData.baseUrl;
4 4 var format = require('../../../../utils/util.js');
  5 +
  6 +const cardTypeArray = ['居民身份证', '中国护照', '港澳居民居住证', '台湾居民居住证', '外国人永久居留身份证', '外国人工作许可证(A类)', '外国人工作许可证(B类)', '外国人工作许可证(C类)'];
5 7 Page({
6 8
7 9 /**
... ... @@ -15,6 +17,19 @@ Page({
15 17 id_card_no: "",
16 18 birthday: "",
17 19 datas: "",
  20 + cardtypeData: {
  21 + isrequre: true,
  22 + label: '证照类型',
  23 + bindtype: 'cardtype',
  24 + placeholder: '请选择证照类型',
  25 + selected: '',
  26 + values: cardTypeArray,
  27 + // range_key:'name',
  28 + // values: ["居民身份证", "军官证", '士兵证', '武警警官证', '港澳居民来往内地通行证', '外交官证', '中国护照',
  29 + // '外国护照', '香港永久性居民身份证', '澳门特别行政区永久性居民身份证', '台湾身份证', '台湾居民来往大陆通行证', '外国人永久居留证'
  30 + // ],
  31 + onChange: 'onPickerSelect'
  32 + },
18 33 birthday_datelong: -1,
19 34 },
20 35
... ...
... ... @@ -15,6 +15,9 @@
15 15 <text style='color:#777;font-size: 30rpx;line-height: 90rpx; float:left'>共同赡养人证照类型</text>
16 16 <text style='color:#333;font-size: 30rpx;line-height: 90rpx; float:right'>居民身份证</text>
17 17 </view>
  18 + <!-- <view style="margin:0 30rpx">
  19 + <template is="picker_cell_normal" data="{{...cardtypeData}}" />
  20 + </view> -->
18 21 <view style="margin:0 30rpx;background:#e5e5e5;height:2rpx;"></view>
19 22 <view style='height:90rpx;padding:0 30rpx'>
20 23 <text style='color:red;font-size: 30rpx;line-height: 90rpx;float:left'>*</text>
... ...
... ... @@ -4,7 +4,7 @@
4 4 "ignore": []
5 5 },
6 6 "setting": {
7   - "urlCheck": true,
  7 + "urlCheck": false,
8 8 "es6": true,
9 9 "postcss": true,
10 10 "minified": true,
... ...
注册登录 后发表评论