| @@ -67,7 +67,7 @@ contact-button { | |||
| top: 30px; | |||
| margin-right: 30px; | |||
| display: block; | |||
| color: #000000; | |||
| color: #ffffff; | |||
| text-align: center; | |||
| width: 100%; | |||
| font-size: 16px; | |||
| @@ -10,6 +10,10 @@ Component({ | |||
| type: Boolean, | |||
| value: true | |||
| }, | |||
| hidden: { | |||
| type: Boolean, | |||
| value: false | |||
| }, | |||
| placeholder: { | |||
| type: String, | |||
| value: '输入文字...' | |||
| @@ -1,4 +1,4 @@ | |||
| <view class="toolbar" catchtouchend="format" hidden="{{false}}"> | |||
| <view class="toolbar" catchtouchend="format" hidden="{{hidden}}"> | |||
| <!-- 官方案例 --> | |||
| <!-- <i class="iconfont icon-charutupian" catchtouchend="insertImage"></i> | |||
| <i class="iconfont icon-format-header-2 {{formats.header === 2 ? 'ql-active' : ''}}" data-name="header" data-value="{{2}}"></i> | |||
| @@ -948,7 +948,7 @@ Page({ | |||
| return; | |||
| } | |||
| if(event.currentTarget.dataset.banktype == 10){ | |||
| if(event.currentTarget.dataset.childaccounttype == null || event.currentTarget.dataset.childaccounttype == ''){ | |||
| if(event.currentTarget.dataset.accounttype == null || event.currentTarget.dataset.accounttype == ''){ | |||
| UTIL.showToastNoneIcon('请先选择账户类型!'); | |||
| return; | |||
| } | |||
| @@ -177,7 +177,7 @@ | |||
| </view> | |||
| <scroll-view scroll-y="true" style="height: {{wrokScrollHeight}}px;padding: 0rpx 32.5rpx;" > | |||
| <view class="workflow" wx:if="{{active=='1'}}" wx:for-item="item" wx:for="{{todoList}}" wx:key="id" data-id="{{item.data.id}}" data-taskId="{{item.id}}" data-business='{{item.formData.activityBusinessType=="35"?"xj":"yh"}}' data-type="up" bindtap="gosee"> | |||
| <view class="workflow" wx:if="{{active=='1'}}" wx:for-item="item" wx:for="{{todoList}}" wx:key="id" data-id="{{item.data.id}}" data-taskId="{{item.id}}" data-business='{{item.formData.activityBusinessType=="35"?"xj":"yh"}}' data-type="up" bindtap="{{item.businessType == '20' ? 'goMajorDetail' : 'gosee'}}"> | |||
| <!--1--> | |||
| <view class="workflow_list"> | |||
| <view class="process_intro"> | |||
| @@ -192,11 +192,11 @@ | |||
| <image class="amount_icon" src="../../image/index/process_icon.png" mode="aspectFit"></image> | |||
| <text class="textLimit">{{item.data.transferType=='2'?'信用卡转账':item.data.transferType=='1'?'银行转账':'其他'}}</text> | |||
| </view> | |||
| <view class="amount"><text class="unit">¥</text>{{item.data.expenditureAmount}}</view> | |||
| <view class="amount" wx:if="{{item.businessType != '20'}}"><text class="unit">¥</text>{{item.data.expenditureAmount}}</view> | |||
| </view> | |||
| </view> | |||
| </view> | |||
| <view class="workflow" wx:if="{{active=='2'}}" wx:for-item="item" wx:for="{{doneList}}" wx:key="id" data-id="{{item.data.id}}" data-taskId="{{item.id}}" data-business='{{item.formData.activityBusinessType=="35"?"xj":"yh"}}' data-type="see" bindtap="gosee"> | |||
| <view class="workflow" wx:if="{{active=='2'}}" wx:for-item="item" wx:for="{{doneList}}" wx:key="id" data-id="{{item.data.id}}" data-taskId="{{item.id}}" data-business='{{item.formData.activityBusinessType=="35"?"xj":"yh"}}' data-type="see" bindtap="{{item.businessType == '20' ? 'goMajorDetail' : 'gosee'}}"> | |||
| <!--1--> | |||
| <view class="workflow_list"> | |||
| <view class="process_intro"> | |||
| @@ -211,7 +211,7 @@ | |||
| <image class="amount_icon" src="../../image/index/process_icon.png" mode="aspectFit"></image> | |||
| <text class="textLimit">{{item.data.transferType=='2'?'信用卡转账':item.data.transferType=='1'?'银行转账':'其他'}}</text> | |||
| </view> | |||
| <view class="amount"><text class="unit">¥</text>{{item.data.expenditureAmount}}</view> | |||
| <view class="amount" wx:if="{{item.businessType != '20'}}"><text class="unit">¥</text>{{item.data.expenditureAmount}}</view> | |||
| </view> | |||
| </view> | |||
| </view> | |||
| @@ -21,7 +21,8 @@ Page({ | |||
| comment:'', | |||
| pageType:'', | |||
| fileList:[], | |||
| uploadOptions:[] | |||
| uploadOptions:[], | |||
| majorTypeOptions:[] | |||
| }, | |||
| /** | |||
| @@ -33,6 +34,29 @@ Page({ | |||
| taskId:options.taskId, | |||
| pageType:options.type | |||
| }) | |||
| let templateQueryParams = { | |||
| // 分页 | |||
| type:'5' | |||
| }; | |||
| UTIL.httpRequest(API.URL_GET_TEMPLATELIST , templateQueryParams, { | |||
| success: (res) => { | |||
| that.setData({ | |||
| approvalTemplateList:res.rows, | |||
| ["form.approvalTemplateId"]:res.rows[0].id, | |||
| ["form.approvalTemplateName"]:res.rows[0].name, | |||
| }) | |||
| } | |||
| }) | |||
| //所属银行 | |||
| UTIL.httpRequest(API.URL_GET_GETDICTTYPE + 'major_type', {method:'GET'}, { | |||
| success: (res) => { | |||
| this.setData({ | |||
| majorTypeOptions:res.data | |||
| }); | |||
| } | |||
| }) | |||
| if(options.id!=null&&options.id!=""){ | |||
| this.setData({id:options.id}) | |||
| UTIL.httpRequest(API.URL_GET_MAJOREVENTGET + this.data.id, {method:'GET'}, { | |||
| @@ -41,23 +65,33 @@ Page({ | |||
| if(res.data.auditStatus!='0'&&res.data.auditStatus!='2'){ | |||
| this.setData({'showBtn':false}); | |||
| } | |||
| res.data.majorTypeText = UTIL.getTransform(res.data.majorType,that.data.majorTypeOptions); | |||
| let op = that.data.approvalTemplateList.filter(function (e) { return e.id == res.data.approvalTemplateId; }); | |||
| res.data.approvalTemplateName = op[0].name; | |||
| this.setData({'form':res.data}) | |||
| that.setData({instanceId:res.data.instanceId}) | |||
| that.setData({auditbatchNo:res.data.auditbatchNo}) | |||
| let parData = { | |||
| processInstanceId:res.data.instanceId, | |||
| method:'POST' | |||
| // processInstanceId:res.data.auditbatchNo, | |||
| method:'GET' | |||
| } | |||
| // 查询审批事项流转进度 | |||
| UTIL.httpRequest(API.URL_GET_GETPROCESSHISTORY , parData, { | |||
| // 查询审批事项流转进度 API.URL_GET_GETPROCESSHISTORY | |||
| UTIL.httpRequest( '/approval/audit/historyList/'+res.data.auditbatchNo, parData, { | |||
| success: (res) => { | |||
| console.log(res); | |||
| that.setData({spsxOptions:res.rows}) | |||
| } | |||
| }) | |||
| this.selectComponent('#hf_editor').setHtml(res.data.eventContent); | |||
| this.selectComponent('#hf_editor2').setHtml(res.data.dzbty); | |||
| this.selectComponent('#hf_editor3').setHtml(res.data.lwhsy); | |||
| this.selectComponent('#hf_editor4').setHtml(res.data.dqyshsyhjy); | |||
| this.selectComponent('#hf_editor5').setHtml(res.data.cydbhjy); | |||
| this.selectComponent('#hf_editor6').setHtml(res.data.jcjggk); | |||
| this.selectComponent('#hf_editor7').setHtml(res.data.ssqkgk); | |||
| } | |||
| }) | |||
| //获取附件字典 | |||
| UTIL.httpRequest(API.URL_GET_GETDICTTYPE + 'common_attach', {method:'GET'}, { | |||
| UTIL.httpRequest(API.URL_GET_GETDICTTYPE + 'major_attach', {method:'GET'}, { | |||
| success: (res) => { | |||
| this.setData({ | |||
| uploadOptions:res.data, | |||
| @@ -128,7 +162,7 @@ Page({ | |||
| tableId: id, | |||
| tableName: "t_yinnong_majorevent", //上传表 | |||
| bizPath: "yinnong", | |||
| fileType: res.dictValue, //附件类型 1原始发票 2会议纪要 3会议照片 4 参会人员签字 | |||
| // fileType: res.dictValue, //附件类型 1原始发票 2会议纪要 3会议照片 4 参会人员签字 | |||
| method:'GET' | |||
| } | |||
| console.log('aaa'); | |||
| @@ -338,6 +372,76 @@ Page({ | |||
| } | |||
| }) | |||
| }, | |||
| goAgreeNew(){//2024-7-15审批功能修改 字段名称、接口地址、请求参数格式发生变动 | |||
| var that = this ; | |||
| let data = { | |||
| taskId:that.data.taskId, | |||
| auditbatchNo:that.data.auditbatchNo, | |||
| pass:true, | |||
| remark:that.data.comment == '' ? '同意':that.data.comment, | |||
| deptId:JSON.parse(wx.getStorageSync('user')).deptId, | |||
| method:'POST' | |||
| }; | |||
| console.log(data); | |||
| UTIL.httpRequest(API.A_audit ,data, { | |||
| success: (res) => { | |||
| console.log(res); | |||
| if (res.code == API.SUCCESS_CODE) { | |||
| wx.showToast({ | |||
| title: '审批成功', | |||
| icon: 'success', | |||
| duration: 2000, | |||
| complete(){ | |||
| setTimeout(function(){ | |||
| that.back(); | |||
| },2000) | |||
| } | |||
| }) | |||
| }else{ | |||
| wx.showToast({ | |||
| title: '操作失败', | |||
| icon: 'error', | |||
| duration: 2000 | |||
| }) | |||
| } | |||
| } | |||
| }) | |||
| }, | |||
| goDisNew(){//2024-7-15审批功能修改 字段名称、接口地址、请求参数格式发生变动 | |||
| var that = this ; | |||
| let data = { | |||
| taskId:that.data.taskId, | |||
| auditbatchNo:that.data.auditbatchNo, | |||
| pass:false, | |||
| remark:that.data.comment == '' ? '驳回':that.data.comment, | |||
| deptId:JSON.parse(wx.getStorageSync('user')).deptId, | |||
| method:'POST' | |||
| }; | |||
| console.log(data); | |||
| UTIL.httpRequest(API.A_audit ,data, { | |||
| success: (res) => { | |||
| console.log(res); | |||
| if (res.code == API.SUCCESS_CODE) { | |||
| wx.showToast({ | |||
| title: '审批成功', | |||
| icon: 'success', | |||
| duration: 2000, | |||
| complete(){ | |||
| setTimeout(function(){ | |||
| that.back(); | |||
| },2000) | |||
| } | |||
| }) | |||
| }else{ | |||
| wx.showToast({ | |||
| title: '操作失败', | |||
| icon: 'error', | |||
| duration: 2000 | |||
| }) | |||
| } | |||
| } | |||
| }) | |||
| }, | |||
| /** | |||
| * 生命周期函数--监听页面隐藏 | |||
| */ | |||
| @@ -4,11 +4,56 @@ | |||
| <text style="top:{{isIPX?'54px':'30px'}};">{{form.id?"":"新增"}}重大项目</text> | |||
| </view> | |||
| <view class="main-box table-box table-boxs" style="margin-top:{{isIPX?'100px':'75px'}};"> | |||
| <van-field readonly label="项目名称" value="{{ form.eventName }}" placeholder="项目名称" border="{{ false }}" input-align="right" required /> | |||
| <van-field readonly label="发生日期" value="{{ form.eventTime }}" placeholder="发生日期" border="{{ false }}" input-align="right" required /> | |||
| <view style="width:100%;border: 1px solid #ddd;padding: 0 3vw;"><text style="display: block;">{{form.eventContent}}</text></view> | |||
| <view style="margin-bottom: 15px;"></view> | |||
| <van-field readonly label="备注" value="{{ form.remark }}" placeholder="备注" border="{{ false }}" bind:change="onChange" input-align="right" data-value="form.remark"/> | |||
| <van-field readonly label="项目名称" value="{{ form.eventName }}" placeholder="项目名称" border="{{ false }}" bind:change="onChange" input-align="right" required data-value="form.eventName"/> | |||
| <view class="section"> | |||
| <view class="section__title"><text style="color:red;margin-right: 8rpx;">*</text>发生日期</view> | |||
| <picker mode="date" value="{{form.eventTime}}" bindchange="onConfirmEventTime"> | |||
| <view class="picker"> | |||
| {{form.eventTime?form.eventTime:'发生日期'}} | |||
| </view> | |||
| </picker> | |||
| </view> | |||
| <van-field required label="事项类型" readonly value="{{ form.majorTypeText }}" placeholder="请选择事项类型" border="{{ false }}" bind:change="onChange" input-align="right" data-name="form.showMajorType"/> | |||
| <van-field required label="审批流程" readonly value="{{ form.approvalTemplateName }}" placeholder="请选择审批流程" border="{{ false }}" bind:change="onChange" input-align="right" data-name="form.showApprovalTemplateName"/> | |||
| <van-field required label="事项内容" readonly border="{{ false }}" /> | |||
| <view style="width:100%;margin-bottom: 15px;"> | |||
| <hf_editor style="width:100%" height="600rpx" hidden="{{true}}" insertPicture="{{true}}" placeholder="编写文章..." bind:Content="getHtml" data-name="form.eventContent" bind:insertImage="insertImage" data-id='hf_editor' id="hf_editor"/> | |||
| </view> | |||
| <van-field required label="理事会提议" readonly border="{{ false }}"/> | |||
| <view style="width:100%;margin-bottom: 15px;"> | |||
| <hf_editor style="width:100%" height="600rpx" hidden="{{true}}" insertPicture="{{true}}" placeholder="编写文章..." bind:Content="getHtml" data-name="form.dzbty" bind:insertImage="insertImage" id="hf_editor2" data-id='hf_editor2'/> | |||
| </view> | |||
| <van-field label="村党支部和理事会商议" border="{{ false }}" required/> | |||
| <view style="width:100%;margin-bottom: 15px;"> | |||
| <hf_editor style="width:100%" height="600rpx" hidden="{{true}}" insertPicture="{{true}}" placeholder="编写文章..." bind:Content="getHtml" data-name="form.lwhsy" bind:insertImage="insertImage" id="hf_editor3" data-id='hf_editor3'/> | |||
| </view> | |||
| <van-field label="党员会审议" border="{{ false }}" required/> | |||
| <view style="width:100%;margin-bottom: 15px;"> | |||
| <hf_editor style="width:100%" height="600rpx" hidden="{{true}}" insertPicture="{{true}}" placeholder="编写文章..." bind:Content="getHtml" data-name="form.dqyshsyhjy" bind:insertImage="insertImage" id="hf_editor4" data-id='hf_editor4'/> | |||
| </view> | |||
| <van-field label="成员(代表)会决议" border="{{ false }}" required/> | |||
| <view style="width:100%;margin-bottom: 15px;"> | |||
| <hf_editor style="width:100%" height="600rpx" hidden="{{true}}" insertPicture="{{true}}" placeholder="编写文章..." bind:Content="getHtml" data-name="form.cydbhjy" bind:insertImage="insertImage" id="hf_editor5" data-id='hf_editor5'/> | |||
| </view> | |||
| <van-field label="决策结果公开" border="{{ false }}" required/> | |||
| <view style="width:100%;margin-bottom: 15px;"> | |||
| <hf_editor style="width:100%" height="600rpx" hidden="{{true}}" insertPicture="{{true}}" placeholder="编写文章..." bind:Content="getHtml" data-name="form.jcjggk" bind:insertImage="insertImage" id="hf_editor6" data-id='hf_editor6'/> | |||
| </view> | |||
| <van-field label="实施情况公开" border="{{ false }}" required/> | |||
| <view style="width:100%;margin-bottom: 15px;"> | |||
| <hf_editor style="width:100%" height="600rpx" hidden="{{true}}" insertPicture="{{true}}" placeholder="编写文章..." bind:Content="getHtml" data-name="form.ssqkgk" bind:insertImage="insertImage" id="hf_editor7" data-id='hf_editor7'/> | |||
| </view> | |||
| <van-field label="备注" value="{{ form.remark }}" placeholder="备注" border="{{ false }}" bind:change="onChange" input-align="right" data-value="form.remark"/> | |||
| </view> | |||
| <view class="main-box" style="margin-top: 15px;"> | |||
| @@ -36,7 +81,7 @@ | |||
| <view class="indexBorder"> | |||
| <view class="ssT" wx:if="{{index>0}}"></view> | |||
| <view class="yq"></view> | |||
| <view class="ss" wx:if="{{spsxOptions.length != index+1}}"></view> | |||
| <view class="ss" wx:if="{{spsxOptions.length != index+1 || pageType != 'see'}}"></view> | |||
| </view> | |||
| </block> | |||
| <block wx:else> | |||
| @@ -50,8 +95,7 @@ | |||
| <van-col span="21" style="height: 77px;"> | |||
| <van-cell center="{{true}}" border="{{false}}"> | |||
| <view slot="title" class="cellTit"> | |||
| <text>{{item.assigneeName == null ? '' : item.assigneeName}}</text> | |||
| <text>{{item.activityName}}</text> | |||
| <text>{{item.auditbatchNo == null ? '' : item.auditbatchNo}}</text> | |||
| </view> | |||
| <!-- <view class="agree" wx:if="{{item.approverStatus=='true'}}">同意</view> | |||
| <view class="in" wx:elif="{{(item.assigneeName==nickName && pageType!='see')}}">审核中</view> | |||
| @@ -60,9 +104,9 @@ | |||
| <van-cell center border="{{false}}"> | |||
| <view slot="title" style="margin-top: 10px;"> | |||
| <view style="color: #999999;line-height: 32px;">{{ item.comment == null ? '' : item.comment }}</view> | |||
| <view style="color: #999999;line-height: 32px;">{{ item.nodeName }}({{item.actorName}})</view> | |||
| </view> | |||
| <view style="color: #999999;font-size: 12px;margin-top: 10px;line-height: 32px;">{{ sub.times(item.endTime) }}</view> | |||
| <view style="color: #999999;margin-top: 10px;line-height: 32px;">{{ item.nickName }}</view> | |||
| </van-cell> | |||
| </van-col> | |||
| @@ -91,8 +135,8 @@ | |||
| </van-row> | |||
| </view> | |||
| <view class="bottom" style="margin-bottom: 0px;" wx:if="{{pageType!='see'}}"> | |||
| <button type="warn" plain class="btnDis" bindtap="goDis">驳回</button> | |||
| <button type="primary" class="btnAgree" bindtap="goAgree">同意</button> | |||
| <button type="warn" plain class="btnDis" bindtap="goDisNew">驳回</button> | |||
| <button type="primary" class="btnAgree" bindtap="goAgreeNew">同意</button> | |||
| </view> | |||
| <!-- <view class="bottom" wx:if="{{pageType!='see'}}"> | |||
| <button type="primary" plain class="btnOther" bindtap="goAgree">转办</button> | |||
| @@ -1,4 +1,7 @@ | |||
| /* pages/payee/add/add.wxss */ | |||
| .van-cell__title, .van-cell__value { | |||
| max-width: 50%!important; | |||
| } | |||
| .main-box{ | |||
| background: #ffffff; | |||
| padding: 20px; | |||
| @@ -48,9 +51,17 @@ | |||
| color: #fff; | |||
| } | |||
| .table-boxs>view{ | |||
| line-height: 100rpx; | |||
| /* line-height: 100rpx; */ | |||
| word-break: break-all; | |||
| } | |||
| .section{ | |||
| display: flex; | |||
| align-items: center; | |||
| justify-content: space-between; | |||
| margin-bottom: 28rpx; | |||
| font-size: 14px; | |||
| color: #323233; | |||
| } | |||
| .ql-container { | |||
| box-sizing: border-box; | |||
| width: 100%; | |||
| @@ -192,7 +203,7 @@ | |||
| float: right; | |||
| } | |||
| .steps-box .van-cell__title{ | |||
| flex: 0.7; | |||
| flex: 1; | |||
| } | |||
| .steps-box .van-cell__value{ | |||
| flex: 0.3; | |||
| @@ -238,7 +249,7 @@ | |||
| justify-content: space-between; | |||
| } | |||
| .cellTit text{ | |||
| width: 50%; | |||
| width: 100%; | |||
| display: -webkit-box; | |||
| -webkit-box-orient: vertical; | |||
| -webkit-line-clamp: 1; | |||
| @@ -104,7 +104,7 @@ Page({ | |||
| this.setData({ | |||
| "showPopupSubmit":false | |||
| }); | |||
| UTIL.httpRequest(API.URL_GET_MAJOREVENTSUBMIT + this.data.itemId , {method:'POST'}, { | |||
| UTIL.httpRequest(API.URL_GET_MAJOREVENTSUBMIT + this.data.itemId , {method:'GET'}, { | |||
| success: (res) => { | |||
| if(res.code==200){ | |||
| let new_list = this.data.list | |||
| @@ -78,7 +78,7 @@ Page({ | |||
| }, | |||
| goAdd(){ | |||
| wx.navigateTo({ | |||
| url: 'add/add', | |||
| url: 'add/add?', | |||
| }) | |||
| }, | |||
| goSearch(e){ | |||
| @@ -111,8 +111,8 @@ Page({ | |||
| confirmText: '确定', | |||
| success: function (e) { | |||
| //非建行 | |||
| if(_this.data.data.alternateField1==null||_this.data.data.alternateField1.length<1){ | |||
| UTIL.showToastNoneIcon("请输入验证码!"); | |||
| if(_this.data.data.accountPassword==null||_this.data.data.accountPassword.length<1){ | |||
| UTIL.showToastNoneIcon("请输入支付口令!"); | |||
| }else{ | |||
| _this.setData({'showPopup':true}) | |||
| } | |||
| @@ -57,7 +57,7 @@ | |||
| <view wx:if="{{data.doubleConfirmationStatus != 'Y' || !(data.doubleConfirmationUser == '' || data.doubleConfirmationUser == null)}}"> | |||
| <view style="padding:10px;width:90%;border:1px solid #ddd;border-radius: 5px;line-height: 16px;background-color: #FFF;margin-left:5%;margin-top: 20px;" wx:if="{{data.bankType == '1' || data.bankType == '2' || data.bankType == '3' || data.bankType == '5' || data.bankType == '9' || data.bankType == '10' || data.bankType == '18'}}"> | |||
| <input type="number" placeholder="请输入口令" value="{{data.accountPassword}}" bindinput="bindNewInput" data-name="data.accountPassword"/> | |||
| <input placeholder="请输入口令" value="{{data.accountPassword}}" bindinput="bindNewInput" data-name="data.accountPassword"/> | |||
| </view> | |||
| <view style="padding:10px;width:90%;border:1px solid #ddd;border-radius: 5px;line-height: 16px;background-color: #FFF;margin-left:5%;margin-top: 20px;position:relative;" wx:else> | |||
| <input type="number" placeholder="输入验证码" value="{{data.alternateField1}}" bindinput="bindNewInput" data-name="data.alternateField1"/> | |||
| @@ -10,12 +10,14 @@ Page({ | |||
| privacyCheck:false, //用户协议 | |||
| showDialog:false, | |||
| nowDress:'', | |||
| showPhoneBtn:false | |||
| showPhoneBtn:false, | |||
| showPhoneBtnDisabled: false | |||
| }, | |||
| onShow: function (options) { | |||
| // this.setData({ | |||
| // isIPhoneX:UTIL.isIPhoneX() | |||
| // }) | |||
| console.log('11111111'); | |||
| var that = this; | |||
| let url = wx.getStorageSync('dressCode') | |||
| that.setData({ | |||
| @@ -170,11 +172,13 @@ Page({ | |||
| } else { | |||
| //待删 | |||
| UTIL.showToastNoneIcon(res.msg) | |||
| this.setData({showPhoneBtnDisabled: true}) | |||
| } | |||
| }, | |||
| fail: (res) => { | |||
| //console.log("fail"); | |||
| UTIL.showToastNoneIcon(API.MSG_FAIL_HTTP) | |||
| this.setData({showPhoneBtnDisabled: true}) | |||
| } | |||
| }) | |||
| // UTIL.httpRequest(API.URL_POST_DECRYPTEDWXDATA, sendData,{ | |||
| @@ -13,7 +13,16 @@ | |||
| <image src="/image/login/login_text.png" style="width: 80%;margin: 0 auto;" mode="widthFix"></image> | |||
| </view> | |||
| <view class="quick-login" style="bottom:{{isIPhoneX?'6vh':'4vh'}}"> | |||
| <button class="key-login" type='primary' open-type='getPhoneNumber' bindgetphonenumber="getPhoneNumber">微信一键登录</button > | |||
| <button | |||
| wx:if="{{showPhoneBtn}}" | |||
| disabled="{{showPhoneBtnDisabled}}" | |||
| class="key-login" | |||
| type='primary' | |||
| open-type='getPhoneNumber' | |||
| bindgetphonenumber="getPhoneNumber" | |||
| style="background-color: {{showPhoneBtnDisabled?'#dddddd':'#ffffff'}};" | |||
| >{{showPhoneBtnDisabled?'未查询到用户,请勿重复验证':'一键快捷登录'}}</button> | |||
| <button wx:if="{{!showPhoneBtn}}" class="key-login" type='primary' bind:tap="goIndex">一键登录</button> | |||
| <view class="authorization" style="margin-top:{{isIPhoneX?'2vh':'2vh'}}"> | |||
| <checkbox-group bindchange="checkboxChange"> | |||
| <label> | |||
| @@ -39,77 +48,10 @@ | |||
| showCancelButton="{{true}}" | |||
| > | |||
| <scroll-view scroll-y="true" style="height: 300px;padding: 0 15px;margin-top: 15px;" bindscrolltoupper="upper" bindscrolltolower="lower" bindscroll="scroll"> | |||
| <text>为使用融信云微信小程序服务(以下简称“本服务”或“小程序服务”),您应当阅读并遵守《融信云微信小程序用户协议》,请务必审慎阅读、充分理解各条款内容,特别是免除或限制责任的相应条款,以及开通或使用某项服务的单独协议,并选择接受或不接受。</text> | |||
| <text>除非您已阅读并接受本条款所有条款,否则您无权使用融信云微信小程序服务。您对本服务的登录、查看、发布信息等行为即视为已阅读并同意本条款的约束。</text> | |||
| <text>如果您未满18周岁,请在法定监护人的陪同下阅读本您协议,并特别注意未成年人使用条款。</text> | |||
| <text>一、协议的范围</text> | |||
| <text>1.1本条款是用户(以下简称“您”)与融信云之间关于用户使用小程序服务所订立的协议。“用户”是指注册、登录、使用微信小程序的个人或组织;“其他用户”是指包括其他微信小程序用户、微信公众账号用户和微信用户等除您本人外与小程序服务相关的用户。</text> | |||
| <text>1.2本服务是指融信云根据本协议向您提供的服务,包括协助您交接和管理租赁车辆等。我们会不断丰富您使用本服务的终端、形式等,如您已注册使用一种形式的服务,则可以以同一账号使用其他服务,本协议自动适用于您对所有版本的软件和服务的使用。</text> | |||
| <text> 1.3提供本服务的微信小程序的所有权和全部的使用权均归融信云所有,您开通后仅授权使用部分功能,具体以产品展示的为准。</text> | |||
| <text>1.4小程序属于微信公众账号,在不与本协议冲突的情况下,您应遵守《微信公众平台服务协议》、《腾讯微信软件许可及服务协议》等关于微信公众账号的其他相关规定。</text> | |||
| <text>1.5本协议内容包括本协议正文及所有我们已经发布或将来可能发布的隐私权政策、各项政策、规则、声明、通知、警示、提示、说明(以下统称为“用户规则”)。前述用户规则为本协议不可分割的补充部分,与本协议具有同等法律效力。如您使用融信云产品及服务,视为您同意上述补充部分。</text> | |||
| <text>二、小程序注册与审核</text> | |||
| <text>2.1账号注册</text> | |||
| <text>2.1.1您在使用本服务前需要先进行注册和认证。您确认,在您开始注册使用融信云产品及服务前,您应当是具备完全民事权利能力和与所从事的民事行为相适应的行为能力的自然人、法人或其他组织。若您不具备前述主体资格,请勿使用服务,否则您及您的监护人应承担因此而导致的一切后果,且我们有权注销(永久冻结)您的账户,并向您及您的监护人索偿。</text> | |||
| <text>2.1.2当您按照注册页面提示填写信息、阅读并同意本协议且完成全部注册程序后,您可获得融信云平台账户并成为产品用户,即有权使用融信云平台并获得相应服务。融信云平台只允许每位用户使用一个主账户,但您可以在授权范围内获得多个子账号。</text> | |||
| <text>2.1.3该账户是您通过融信云平台寻求并获得服务的唯一有效身份证明,请您妥善保管账号和密码。为使您更好地使用融信云平台的各项服务,保障您的账户安全,本小程序主体可要求您按本协议、用户规则及我国法律规定完成实名认证。</text> | |||
| <text>2.1.4为维护小程序的健康运营,您应当准确完整地提供您的最新信息(包括您的名称及电子邮件地址、联系电话、联系地址等)。并且您承诺,在使用本服务的过程中提交和发布的信息均是真实、合法的,因不实信息导致融信云或者第三方合法权益受损的,由您独立承担全部责任。</text> | |||
| <text>2.2账号安全</text> | |||
| <text>2.2.1在您成功注册后,我们将根据您的身份要素识别您的身份和授权登录。“身份要素”包括但不限于您的账户名称、密码、短信校验码、手机号码、身份证件号码及人脸信息、眼纹信息。您同意基于不同的终端以及您的使用习惯,我们可能采取不同的验证措施识别您的身份。</text> | |||
| <text>2.2.2如您发现账号遭他人非法使用,应立即通知本小程序主体。因黑客行为或您自身保管疏忽导致账号、密码遭他人非法使用所发生的一切责任,均应由您本人承担,本小程序主体不承担任何责任。</text> | |||
| <text>2.2.3您注册成功后,融信云将给予您一个帐号,并由您自行设置相应密码,任何该账户项下的预订及支付等行为均视为您本人的操作。您应对您账户项下的所有行为结果(包括但不限于授权、绑定、结算)负责。</text> | |||
| <text>三、服务及规范</text> | |||
| <text>3.1服务内容</text> | |||
| <text>3.1.1本服务内容包含【支持通讯录、车辆调度、车辆管理、账单管理、业务信息推荐及】等技术功能,这些功能服务可能根据用户需求的变化,随着因服务版本不同、或服务提供方的单方判断而被优化或修改,或因定期、不定期的维护而暂缓提供。</text> | |||
| <text>3.1.2融信云有权自行决定对服务或服务任何部分及其相关功能、应用软件进行变更、升级、修改、转移,并有权决定以适当的方式进行公示或通知。</text> | |||
| <text>3.2服务费用</text> | |||
| <text>3.2.1融信云平台向您提供的服务目前是免费的。我们保留日后就程序及/或服务向您收费的权利。如果我们决定收取此类费用,我们会采取合理途径并以足够合理的期限提前通过法定程序并以本协议约定的方式通知您,确保您有充分选择的权利。</text> | |||
| <text>3.2.2您在使用小程序的过程中与第三方发生的费用结算,融信云仅为您使用微信小程序服务提供技术支持,本协议的签署不代表融信云成为您在汽车租赁过程中的参与者。融信云不对基于服务而产生的任何行为担保、许可或向任何第三人承担共同责任。</text> | |||
| <text>3.3服务使用规则</text> | |||
| <text>3.3.1您在本服务中或通过本服务所传送、发布的任何内容并不反映或代表,也不得被视为反映或代表融信云的观点、立场或政策,融信云对此不承担任何责任。</text> | |||
| <text>3.3.2您不得利用融信云账号或本服务进行如下行为:\n(1)提交、发布虚假信息,或盗用他人头像或资料,冒充、利用他人名义的;\n(2)强制、诱导其他您关注、点击链接页面或分享信息的;\n(3)虚构事实、隐瞒真相以误导、欺骗他人的;\n(4)利用技术手段批量建立虚假账号的;\n(5)利用平台账号或本服务从事任何违法犯罪活动的;\n(6)制作、发布与以上行为相关的方法、工具,或对此类方法、工具进行运营或传播,无论这些行为是否为商业目的;\n(7)其他违反法律法规规定、侵犯其他您合法权益、干扰融信云正常运营或融信云未明示授权的行为。</text> | |||
| <text>3.3.3融信云有权查阅您的注册、交易数据及交易行为,如发现可能存在违反法律法规、本协议或相关规则的情形或其他任何问题,融信云有权直接做出其认为合理的处理,包括但不限于通知修改、删除相关信息,停止被协议项下的服务内容等。前述约定不代表融信云应对您的行为承担任何连带责任,您应对此产生的法律责任独立负责。</text> | |||
| <text>四、法律责任</text> | |||
| <text>4.1用户责任</text> | |||
| <text>4.1.1您应遵守《微信公众平台服务协议》中关于“法律责任”的约定,除非该等约定与本协议存在冲突。</text> | |||
| <text>4.1.2如果我们发现或收到他人举报或投诉您违反本协议约定的,我们有权不经通知随时对相关内容,包括但不限于对您的资料、聊天记录进行审查、删除,并视情节轻重对违规账号处以包括但不限于警告、账号封禁、设备封禁、功能封禁的处罚,且通知您处理结果。</text> | |||
| <text>4.1.3您理解并同意,因您违反相关法律法规或本协议约定引发的任何后果,均由您独立承担责任、赔偿损失,与我们无关。如侵害到融信云或他人权益的,您须自行承担全部责任和赔偿一切损失。</text> | |||
| <text>4.2平台责任本小程序主体保证并承诺,本小程序主体系合法成立的法人,依据本协议约定向您提供相关网络服务,并会参考您提出的建议不断改善我们的服务,努力提高您的使用满意度。</text> | |||
| <text>4.3责任限制</text> | |||
| <text>4.3.1本服务仅为您与第三方之间的汽车租赁行为而提供协助,融信云并非其中的参与者,对汽车租赁过程中产生的一切纠纷不承担任何责任。</text> | |||
| <text>4.3.2您理解并确认,我们需要定期或不定期地对融信云平台或相关的设备进行检修或者维护,且互联网连接能力受到全球网路稳定性、技术状态、使用者所在地与使用的网路、电力供应、政府管制、计算机病毒、黑客攻击等既存不确定性的限制,如因此类情况而造成服务在合理时间内的中断,我们无需为此承担任何责任,但会事先进行通告。</text> | |||
| <text>4.3.3您理解并同意,在使用本服务的过程中,可能会遇到不可抗力等风险因素,使本服务发生中断。不可抗力是指不能预见、不能克服并不能避免且对一方或双方造成重大影响的客观事件,包括但不限于自然灾害如洪水、地震、瘟疫流行和风暴等以及社会事件如战争、动乱、政府行为等。出现上述情况时,融信云将努力在第一时间与相关单位配合,及时进行修复,但是由此给您造成的损失融信云在法律允许的范围内免责。</text> | |||
| <text>4.3.4融信云不保证为向您提供便利而设置的外部链接的准确性和完整性。同时,对于该等外部链接指向的不由融信云实际控制的任何网页上的内容,融信云不承担任何责任。</text> | |||
| <text>4.4知识产权声明</text> | |||
| <text>4.4.1融信云在本服务中提供的内容(包括但不限于网页、文字、图片、音频、视频、图表等)的知识产权归融信云所有,您在使用本服务中所产生的内容的知识产权归您或相关权利人所有。</text> | |||
| <text>4.4.2除另有特别声明外,融信云提供本服务时所依托软件的著作权、专利权、代码技术及其他知识产权均归融信云所有。</text> | |||
| <text>五、隐私政策</text> | |||
| <text>5.1保护用户隐私是的融信云一项基本政策,融信云保证不对外公开或向第三方提供您的注册资料及您在使用网络服务时存储在融信云的非公开内容,但下列情况除外:\n(1)事先获得用户的明确授权;\n(2)根据有关的法律法规要求;\n(3)按照相关政府主管部门的要求;\n(4)为维护社会公众的利益;\n(5)为维护融信云的合法权益。</text> | |||
| <text>5.2当融信云与第三方合作向用户提供相关的网络服务,在此情况下,如该第三方允诺严格承担与融信云同等的保护用户隐私的责任,则视为您授权融信云将包含个人注册资料在内的相关信息仅提供给该等第三方。</text> | |||
| <text>六、协议解除和终止</text> | |||
| <text>6.1如有下列情形的,我们有权单方面解除本协议,终止向您提供服务:\n(1)您为了非法目的而使用本服务的;\n(2)您使用本服务损害融信云或其他第三方合法权益的;\n(3)您违反法律法规或本协议约定或违反与腾讯的其他约定的;\n(4)根据法律规定平台用户应提交真实信息,而您提供的资料不真实、或未能提供合理证明以证明其真实性的;</text> | |||
| <text>6.2您同意,除上述所述情形外,融信云有权根据风险及自身业务运营情况需要,随时终止向您提供本服务及接口的部分及全部,因此导致您无法使用服务或服务受到限制的,融信云不构成违约,亦不承担任何法律责任。</text> | |||
| <text>6.3您停用该服务,或融信云终止向您提供本协议项下的服务后,融信云不再为您保留原账户中与之相关的任何信息。</text> | |||
| <text>6.4您使用本服务即视为您已阅读并同意受本协议的约束。融信云小程序主体有权在必要时修改本协议。您可以在相关服务页面查阅最新版本的协议。本协议变更后,如果您继续使用微信小程序服务,即视为您已接受修改后的协议。如果您不接受修改后的协议,应当停止使用小程序服务。</text> | |||
| <text>七、违约责任如</text> | |||
| <text>如您因为使用本服务给融信云造成损失的或者给第三方造成损失的,该损失(包括为维权而产生的合理支出)由您来承担。</text> | |||
| <text>八、法律管辖</text> | |||
| <text>8.1如双方就本协议内容或其执行发生任何争议,双方应友好协商解决;协商不成时,任何一方均可向融信云所在地的人民法院提起诉讼。</text> | |||
| <text>8.2本协议的成立、生效、履行、解释及纠纷解决,适用中华人民共和国大陆地区法律(不包括冲突法)8.3本协议条款无论因何种原因部分无效或不可执行,其余条款仍有效,对双方都具有约束力。</text> | |||
| <text>关于”融信云e三资+“的小程序服务(以下简称“本服务”)的说明:</text> | |||
| <text>1.本服务是已线下签约客户的内部办公移动端工具,不统一对外开放!</text> | |||
| <text>2.本服务不设用户注册功能,不采集用户信息!</text> | |||
| <text>3.”微信一键登录“是通过该微信手机号验证系统后台用户中心是否存在此用户,存在则授权登录令牌!</text> | |||
| </scroll-view> | |||
| </van-dialog> | |||
| @@ -282,5 +282,5 @@ | |||
| }, | |||
| "description": "项目私有配置文件。此文件中的内容将覆盖 project.config.json 中的相同字段。项目的改动优先同步到此文件中。详见文档:https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html", | |||
| "projectname": "nsgk_yebz", | |||
| "libVersion": "3.8.11" | |||
| "libVersion": "3.10.0" | |||
| } | |||
| @@ -410,7 +410,7 @@ const URL_POST_MAJOREVENTUPDATE= `/yinnong/majorevent/edit/`; | |||
| const URL_GET_MAJOREVENTDELETE= `/yinnong/majorevent/remove/`; | |||
| //重大事项提交 | |||
| const URL_GET_MAJOREVENTSUBMIT= `/yinnong/majorevent/customSubmit/`; | |||
| const URL_GET_MAJOREVENTSUBMIT= `/yinnong/majorevent/customSubmitNew/`; | |||
| //村级账户交易明细查询 | |||
| const URL_GET_SELECTRECORD= `/yinnong/transfer/addRecordAccount`; | |||