Compare commits
2 Commits
feature/【2
...
uat
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
13f00a4c5f | ||
|
|
04410b5023 |
26
.eslintrc.js
@@ -1,15 +1,15 @@
|
||||
module.exports = {
|
||||
root: true,
|
||||
env: {
|
||||
node: true
|
||||
},
|
||||
extends: ['plugin:vue/essential', '@vue/prettier'],
|
||||
rules: {
|
||||
'no-console': process.env.NODE_ENV === 'production' ? 'off' : 'off',
|
||||
'no-debugger': process.env.NODE_ENV === 'production' ? 'off' : 'off',
|
||||
'prettier/prettier': 'off'
|
||||
},
|
||||
parserOptions: {
|
||||
parser: 'babel-eslint'
|
||||
}
|
||||
root: true,
|
||||
env: {
|
||||
node: true
|
||||
},
|
||||
extends: ['plugin:vue/essential', '@vue/prettier'],
|
||||
rules: {
|
||||
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
||||
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
||||
'prettier/prettier': 'error',
|
||||
},
|
||||
parserOptions: {
|
||||
parser: 'babel-eslint'
|
||||
}
|
||||
}
|
||||
|
||||
6
.gitignore
vendored
@@ -1,7 +1 @@
|
||||
node_modules
|
||||
dist
|
||||
|
||||
.eslintrc.js
|
||||
.prettierrc
|
||||
.idea
|
||||
.history
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"trailingComma": "none",
|
||||
"semi": false,
|
||||
"singleQuote": true,
|
||||
"printWidth": 160,
|
||||
|
||||
@@ -89,10 +89,6 @@ git clone http://112.124.100.131/dcrs/ebiz-h5.git
|
||||
|
||||
cd ebiz-h5
|
||||
|
||||
npm install --global --production window-build-tools (全局安装依赖)
|
||||
|
||||
npm install --global node-gyp (全局安装依赖)
|
||||
|
||||
yarn install(推荐使用yarn)
|
||||
|
||||
yarn serve(开发环境)
|
||||
|
||||
12327
package-lock.json
generated
11
package.json
@@ -20,17 +20,11 @@
|
||||
"test:unit": "vue-cli-service test:unit"
|
||||
},
|
||||
"dependencies": {
|
||||
"animate.css": "^4.1.1",
|
||||
"axios": "^0.19.0",
|
||||
"core-js": "^2.6.5",
|
||||
"crypto-js": "^4.1.1",
|
||||
"echarts": "^4.2.1",
|
||||
"fastclick": "^1.0.6",
|
||||
"html2canvas": "^1.4.1",
|
||||
"js-base64": "^2.5.1",
|
||||
"js-md5": "^0.7.3",
|
||||
"js-sha256": "^0.9.0",
|
||||
"jsencrypt": "^3.2.1",
|
||||
"nprogress": "^0.2.0",
|
||||
"pdfh5": "^1.2.13",
|
||||
"vant": "2.2.0",
|
||||
@@ -57,10 +51,9 @@
|
||||
"eslint": "^5.16.0",
|
||||
"eslint-plugin-prettier": "^3.1.0",
|
||||
"eslint-plugin-vue": "^5.0.0",
|
||||
"node-sass": "^4.14.1",
|
||||
"node-sass": "^4.9.0",
|
||||
"postcss-px-to-viewport": "^1.1.1",
|
||||
"sass-loader": "^7.3.1",
|
||||
"terser-webpack-plugin": "^4.2.3",
|
||||
"sass-loader": "^7.1.0",
|
||||
"vue-template-compiler": "^2.6.10"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,93 +0,0 @@
|
||||
function Base64() {
|
||||
|
||||
// private property
|
||||
b64map = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
|
||||
b64padchar="=";
|
||||
|
||||
// public method for encoding
|
||||
this.encode = function (bytes) {
|
||||
var i;
|
||||
var c = 0x0;
|
||||
var ret = "";
|
||||
for (i = 0; i + 3 <= bytes.length; i += 3) {
|
||||
c = ((bytes[i] & 0xFF) << 16) ^ ((bytes[i + 1]& 0xFF) << 8) ^ (bytes[i + 2] & 0xFF);
|
||||
ret += b64map.charAt(c >>> 18) + b64map.charAt((c & 0x3F000) >>> 12) + b64map.charAt((c & 0xFC0) >>> 6) + b64map.charAt(c & 0x3F);
|
||||
}
|
||||
|
||||
if (i == (bytes.length-1)) {
|
||||
c = bytes[i] & 0xFF;
|
||||
ret += b64map.charAt((c & 0xFC) >>> 2) + b64map.charAt((c & 0x3) << 4);
|
||||
}
|
||||
else if (i + 1 == (bytes.length-1)) {
|
||||
c = ((bytes[i] & 0xFF) << 8) ^ (bytes[i + 1] & 0xFF);
|
||||
ret += b64map.charAt((c & 0xFC00) >>> 10) + b64map.charAt((c & 0x3F0) >>> 4) + b64map.charAt((c & 0xF) << 2);
|
||||
}
|
||||
|
||||
while ((ret.length & 3) > 0) {
|
||||
ret += b64padchar;
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
// public method for decoding
|
||||
this.decode = function (s) {
|
||||
var ret = [];
|
||||
var i;
|
||||
|
||||
for (i = 0; i < s.length; i += 4) {
|
||||
var block = [];
|
||||
var v1 = b64map.indexOf(s.charAt(i));
|
||||
if (v1 < 0) continue;
|
||||
block.push(v1);
|
||||
|
||||
var v2 = b64map.indexOf(s.charAt(i+1));
|
||||
if (v2 < 0) continue;
|
||||
block.push(v2);
|
||||
|
||||
var third = s.charAt(i+2);
|
||||
if(third == b64padchar) { //Handle Block
|
||||
ret = ret.concat(convertb64Block(block));
|
||||
break;
|
||||
}
|
||||
else {
|
||||
var v3 = b64map.indexOf(third);
|
||||
if (v3 < 0) continue;
|
||||
block.push(v3);
|
||||
}
|
||||
|
||||
var fourth = s.charAt(i+3);
|
||||
if(fourth == b64padchar) {//Handle Block
|
||||
ret = ret.concat(convertb64Block(block));
|
||||
break;
|
||||
}
|
||||
else {
|
||||
var v4 = b64map.indexOf(fourth);
|
||||
if (v4 < 0) continue;
|
||||
block.push(v4);
|
||||
}
|
||||
ret = ret.concat(convertb64Block(block));//Handle Block
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
function convertb64Block(bytes) {
|
||||
var ret = [];
|
||||
var i = 0;
|
||||
if (bytes.length == 4) {
|
||||
ret.push(((bytes[i] & 0x3F) << 2) ^ ((bytes[i + 1] & 0x30) >>> 4));
|
||||
ret.push(((bytes[i + 1] & 0xF) << 4) ^ ((bytes[i + 2] & 0x3C) >>> 2));
|
||||
ret.push(((bytes[i + 2] & 0x3) << 6) ^ (bytes[i + 3] & 0xFF));
|
||||
}
|
||||
else if (bytes.length == 3) {
|
||||
ret.push(((bytes[i] & 0x3F) << 2) ^ ((bytes[i + 1] & 0x30) >>> 4));
|
||||
ret.push(((bytes[i + 1] & 0xF) << 4) ^ ((bytes[i + 2] & 0x3C)>>>2));
|
||||
}
|
||||
else if (bytes.length == 2) {
|
||||
ret.push(((bytes[i] & 0x3F) << 2) ^ ((bytes[i+1] & 0x30)>>>4));
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
31
public/CFCA/EPaper.min.js
vendored
@@ -1,31 +0,0 @@
|
||||
var goog=goog||{};goog.global=this;goog.exportPath_=function(name,opt_object,opt_objectToExportTo){var parts=name.split(".");var cur=opt_objectToExportTo||goog.global;if(!(parts[0]in cur)&&cur.execScript)cur.execScript("var "+parts[0]);for(var part;parts.length&&(part=parts.shift());)if(!parts.length&&opt_object!==undefined)cur[part]=opt_object;else if(cur[part])cur=cur[part];else cur=cur[part]={}};
|
||||
goog.exportSymbol=function(publicPath,object,opt_objectToExportTo){goog.exportPath_(publicPath,object,opt_objectToExportTo)};goog.exportProperty=function(object,publicName,symbol){object[publicName]=symbol};function aa(l){l&&l.preventDefault?l.preventDefault():window.event&&(window.event.returnValue=!1)}function ba(l){l&&l.stopPropagation?l.stopPropagation():window.event&&(window.event.cancelBubble=!0)}
|
||||
function m(l){function L(){var a=n.getBoundingClientRect().width,b=n.getBoundingClientRect().height;n.width=a*p;n.height=b*p;f.scale(p,p);n.style.backgroundColor=n.style.backgroundColor}function I(a,b,c){window.getSelection()?window.getSelection().removeAllRanges():document.selection.empty();f.save();f.moveTo(a,b);F=G/2*(B/320);N&&(J(document,"mousemove",N),J(document,"touchmove",N),J(document,"mouseup",M),J(document,"touchend",M));"touchstart"==c?(O(document,"touchmove",N),O(document,"touchend",
|
||||
M)):(O(document,"mousemove",N),O(document,"mouseup",M));x=null;R(a,b)}function R(a,b){var c,d;if(u.length&&(c=u[u.length-1],d=Math.sqrt((c.x-a)*(c.x-a)+(c.y-b)*(c.y-b)),!d))return;ka++;navigator.userAgent.match(/ OS (\d+).*? Mac OS/)&&!ca&&2==u.length&&4*c<u[1].a&&(u[0].x-=2/3*(u[0].x-u[1].x),u[0].y-=2/3*(u[0].y-u[1].y),u[1].a/=2/3*u[1].a);c={x:a,y:b,a:d};u.push(c);3<=u.length&&(c=u.shift(),la(c))}function la(a,b){var c=a.x,d=a.y,g=a.a;if(!x||0!==g){var H=u.length?u[0]:null;if(g&&x){f.moveTo(x.x,
|
||||
x.y);var h;!ca&&H&&g>3*H.a&&(g/=4,h=1);ca=1;b||(b=ma(g));X=b;if(h)for(h=1;3>=h;h++)na(c+h/3*(x.x-c),d+h/3*(x.y-d),g)}na(c,d,g);x=a}}function ma(a){var b=B/320*G;return.65*(a<.003125*B?1.2*b:a<.00625*B?1.15*b:a<.009375*B?1.1*b:a<.015625*B?1.05*b:a<.021875*B?b:a<.028125*B?.95*b:a<.034375*B?.9*b:a<.046875*B?.85*b:a<.0625*B?.8*b:.75*b)}function na(a,b,c){var d={x:a,y:b},g=F;f.fillStyle=C;f.strokeStyle=C;if(x){a=Math.floor(Math.abs(c)/(F/3));if(1<a)for(g=F,c=0;c<a;c++)g-=(g-X)/(8<a?a:8);else Math.abs(F-
|
||||
X)>B/320*G*.025&&(g=F-(F-X)/8);a=Math.abs(F-g);1<=a&&(g=F>g?g+.4*a:g-.4*a);a=null;if(0<u.length){a=u[0];b=ta;var H=a.x-x.x,h=a.y-x.y,e=oa(x,d),A=oa(d,a),k=e+A;a=0==e||0==A||(d.x-x.x)/(d.y-x.y)==(d.x-a.x)/(d.y-a.y)?null:[{x:d.x-H*b*e/k,y:d.y-h*b*e/k},{x:d.x+H*b*A/k,y:d.y+h*b*A/k}]}b=[x];if(P||a){H=a?a[0]:d;P=null==P?x:P;h=x;e=P;c/=2*g;A=[];for(k=0;k<c;k++){var n=(k+1)/(c+1),v,r,l,p,y,t,q,w;l=3*(e.x-h.x);r=3*(H.x-e.x)-l;v=d.x-h.x-l-r;t=3*(e.y-h.y);y=3*(H.y-e.y)-t;p=d.y-h.y-t-y;q=n*n;w=q*n;A.push({x:v*
|
||||
w+r*q+l*n+h.x,y:p*w+y*q+t*n+h.y})}b=b.concat(A)}b.push(d);d=b;b=F;H=g;A=b;for(h=1;h<d.length;h++)e=(H-b)/(d.length-1)+A,y=d[h-1],c=d[h],k=e,l=A*Math.sin(Math.atan((c.y-y.y)/(c.x-y.x))),t=A*Math.cos(Math.atan((c.y-y.y)/(c.x-y.x))),p=k*Math.sin(Math.atan((c.y-y.y)/(c.x-y.x))),r=k*Math.cos(Math.atan((c.y-y.y)/(c.x-y.x))),n=y.x+l,v=y.y-t,l=y.x-l,y=y.y+t,t=c.x+p,q=c.y-r,p=c.x-p,r=c.y+r,f.beginPath(),f.moveTo(n,v),f.lineTo(t,q),f.lineTo(p,r),f.lineTo(l,y),f.lineTo(n,v),f.fill(),f.closePath(),f.lineWidth=
|
||||
A,f.beginPath(),f.arc(c.x,c.y,k,0,2*Math.PI),f.fill(),f.closePath(),A=e;f.lineWidth=F=g;!a||1>=a.length?P=null:P=a[1]}else 2<=u.length&&((g=u[1].a)&&(F=ma(g)),F+=2),f.beginPath(),f.fillStyle=C,f.arc(a,b,F,0,2*Math.PI),f.fill(),f.closePath()}function oa(a,b){return Math.sqrt(Math.pow(b.x-a.x,2)+Math.pow(b.y-a.y,2))}function Q(){D&&M(null)}function da(a){aa(a);ba(a);Q();if("edit"===w){var b,c;if("touchstart"==a.type){if(2<=a.touches.length)return;b=a.touches[0].pageX;c=a.touches[0].pageY;J(n,"mousedown",
|
||||
da)}else a.pageX?(b=a.pageX,c=a.pageY):(b=a.clientX,c=a.clientY);pa()||(canvasRect=n.getBoundingClientRect(),canvasRect={left:canvasRect.left+(window.scrollX||window.pageXOffset),top:canvasRect.top+(window.scrollY||window.pageYOffset)},b-=canvasRect.left,c-=canvasRect.top,D={time:new Date,points:[{x:b,y:c,t:0}],color:C,penSize:G},I(b,c,a.type))}}function N(a){aa(a);ba(a);if("edit"===w){var b;if("touchmove"==a.type){if(2<=a.touches.length)return;b=a.touches[0].pageX;a=a.touches[0].pageY}else a.pageX?
|
||||
(b=a.pageX,a=a.pageY):(b=a.clientX,a=a.clientY);b-=canvasRect.left;a-=canvasRect.top;pa()?M(null):(D.points.push({x:b,y:a,t:new Date-D.time}),R(b,a))}}function M(a){aa(a);ba(a);"edit"===w&&(U(),k.length?D.time-=qa:(qa=D.time,D.time=D.time.getTime()),k.push(D),S=null,V=[],D=null)}function pa(){var a=0;D&&(a+=D.points.length);for(var b=0;b<k.length;b++)a+=k[b].points.length;return a>ua?!0:!1}function ea(){"play"==w&&(w=Y,clearTimeout(T),W());"edit"===w&&(x=null,e=[-1,-1,-1,-1],ka=0,k.length&&(S=k),
|
||||
k=[],f.beginPath(),f.clearRect(0,0,n.width,n.height),f.closePath())}function U(){J(document,"mousemove",N);J(document,"touchmove",N);J(document,"mouseup",M);J(document,"touchend",M);for(var a;u.length;)a=u.shift(),la(a,B/320*G/8)}function ra(){function a(){C=b;G=c;K>=k.length?w=Y:(clearTimeout(T),T=setTimeout(function(){ra()},300))}var b=C,c=G,d=k[K];if(d&&"play"==w){C=d.color;G=d.penSize;I(d.points[0].x,d.points[0].y);1==d.points.length&&(U(),a());var g=1,e,h=0;e=d.points[g];(function(){e&&(R(e.x,
|
||||
e.y),g>=d.points.length-1&&(U(),a()),g++,e=d.points[g])&&(clearTimeout(T),T=setTimeout(arguments.callee,e.t-h),h=e.t)})();K++}}function W(){function a(){C=b;G=c;K>=k.length&&(w="edit")}var b=C,c=G;f.clearRect(0,0,n.width,n.height);f.beginPath();K=0;for(var d=k[K];d;){C=d.color;G=d.penSize;I(d.points[0].x,d.points[0].y);1==d.points.length&&(U(),a());for(var g=1,e=1;g<d.points.length;g++){var h=d.points[e];e++;R(h.x,h.y);e>=d.points.length&&(U(),a())}K++;d=k[K]}}function fa(a,b,c,d){a.height=d;a.width=
|
||||
c;a.style.height=d/p+"px";a.style.width=c/p+"px";b.scale(p,p)}function sa(a,b){q+="getWritingRect start \n";e=[-1,-1,-1,-1];for(var c=0;c<k.length;c++)for(var d=0;d<k[c].points.length;d++){var g=k[c].points[d],H=g.x,g=g.y,h=0>H-16?0:H-16,f=0>g-16?0:g-16;e[0]=0>e[0]?h:e[0];e[0]=e[0]>h?h:e[0];e[1]=e[1]<H+16?H+16:e[1];e[2]=0>e[2]?f:e[2];e[2]=e[2]>f?f:e[2];e[3]=e[3]<g+16?g+16:e[3]}q+="writingRect[0][1][2][3] = "+e[0]+"*"+e[1]+"*"+e[2]+"*"+e[3]+"*\n";e[1]=e[1]>a?a:e[1];e[3]=e[3]>b?b:e[3];for(c=0;c<e.length;c++)e[c]*=
|
||||
p;q+="getWritingRect end \n"}function O(a,b,c){a.attachEvent?a.attachEvent("on"+b,c):a.addEventListener(b,c,{passive:!1})}function J(a,b,c){a.detachEvent?a.detachEvent("on"+b,c):a.removeEventListener(b,c,{passive:!1})}function ga(a){var b=[];if(!a)return b;for(var c=0;c<a.length;c++){var d=ha(a.charCodeAt(c));b.push.apply(b,d)}return b}function ha(a){if(0>a)return null;var b=Math.floor(a/4294967295);a%=4294967295;var c=[],d=[];if(b){do c.push(b&255),b>>>=8;while(b);d.push.apply(d,c.reverse())}c=
|
||||
[];do c.push(a&255),a>>>=8;while(a);d.push.apply(d,c.reverse());return d}function t(a){if(!a||0==a.length)return null;var b=4<a.length?a.slice(0,a.length-4):[];a=4<a.length?a.slice(a.length-4,a.length):a;for(var c=0,d=b.length-1;0<=d;d--)c|=(b[d]&255)<<8*(b.length-1-d);b=0;for(d=a.length-1;0<=d;d--)b|=(a[d]&255)<<8*(a.length-1-d);return 4294967295*c+b}function ia(a){if(!a||0==a.length)return null;var b=a[0]&128;128==b&&(a[0]^=128);a=t(a);128==b&&(a=-a);return a}function Z(a){if(!a||4!=a.length)return null;
|
||||
var b=new ArrayBuffer(4),c=new DataView(b);a.forEach(function(a,b){c.setUint8(b,a)});return c.getFloat32(0)}function ja(a){var b=new Float32Array(1);(new DataView(b.buffer)).setFloat32(0,a,!1);return new Int8Array(b.buffer)}function v(a,b,c){return!a||c>a.S||0>b?null:a.slice(b,c)}function z(a,b){var c=[],d=ha(a);if(null==d)return null;if(d.length>b){for(var g=0;g<b;g++)c.push(255);return c}for(g=d.length;g<b;g++)c.push(0);c.push.apply(c,d);return c}var n=null;if(l.nodeType)n=l;else if("string"==typeof l)n=
|
||||
document.getElementById(l);else return;(function(a,b,c){document.addEventListener?a.addEventListener(b,c,!1):document.attachEvent&&a.attachEvent("on"+b,c)})(window,"resize",function(){q+="[window-resize function] start \n";var a=n.getBoundingClientRect().width*p/n.width,b=n.getBoundingClientRect().height*p/n.height;.9<=a&&1.1>=a&&.9<=b&&1.1>=b||(L(),q+="[window-resize canvas.width + canvas.height] ="+n.width/p+"_"+n.height/p,ea(),q+="[window-resize function] end \n")});var p=(window.devicePixelRatio||
|
||||
1)/1,k=[],V=[],F=1,X=1,C="rgb(0,0,0)",G=8,B=320,ka=0,D=null,S=null,w="edit",e=[-1,-1,-1,-1],ta=.4,x=null,P=null,u=[],ca=0,qa=null,K=0,Y="edit",T=null,f=n.getContext("2d"),ua=5E4,q="";(function(){L();ea();n.getContext&&(f.strokeStyle=C,f.fillStyle=C,O(n,"selectstart",function(){return!1}),O(n,"touchstart",da),O(n,"mousedown",da))})();this.C=function(){for(var a="4.5.0.3";0<=a.indexOf(".");)a=a.replace(".","");return z(parseInt(a),2)};this.j=function(a){var b=a.match(/(\d+)/g);a=[];if(b)for(var c=0;c<
|
||||
b.length;c++)a.push.apply(a,ha(b[c]));for(b=a.length;3>b;b++)a.push(0);return a};this.c=function(a){G=1==a&&18||2==a&&12||3==a&&8||4==a&&6||5==a&&3||8};this.R=function(a,b,c){C="rgb("+a+","+b+","+c+")"};this.g=function(){Q();return!!V.length};this.f=function(){Q();if("edit"===w)if(S&&S.length)k=S,S=null,W();else if(k.length){var a=k.pop();V.push([a]);W()}};this.L=function(){Q();"edit"===w&&V.length&&(k=k.concat(V.pop()),W())};this.O=function(){Q();0!=k.length&&("play"==w?(w=Y,clearTimeout(T),W()):
|
||||
(Y=w,w="play",f.clearRect(0,0,n.width,n.height),f.beginPath(),K=0,ra()))};this.D=function(){return 0!=k.length&&"play"==w?!0:!1};this.h=function(){q+="_clear start \n";ea();q+="_clear end \n"};this.l=function(){Q();q+="_getHandWritingData start \n";if(0>=k.length)return null;var a=navigator.userAgent.match(/\([^\)]*\)[^\(]*\([^\)]*\)\s(.*)/);a&&0<a.length&&(a=a[1]);var b=navigator.userAgent.match(/\(([^\)]*)\)/);b&&0<b.length&&(b=b[1]);var c=[],d=this.C(),a=ga(a),g=ga(b),b=ga(""),e=6+a.length+
|
||||
2+g.length+2+6+2+b.length;c.push.apply(c,d);c.push.apply(c,z(e,2));c.push.apply(c,z(a.length,2));c.push.apply(c,a);c.push.apply(c,z(g.length,2));c.push.apply(c,g);d=z(k.length,2);c.push.apply(c,d);d=z(0<k.length?k[0].time:0,6);c.push.apply(c,d);c.push.apply(c,z(b.length,2));c.push.apply(c,b);for(d=0;d<k.length;d++){a=[1,4,1,2,4,1,3,2,0];b=z(k[d].points.length,2);c.push.apply(c,z(a.length+9+b.length+4+4,1));c.push.apply(c,z(a.length,1));c.push.apply(c,a);a=d?z(k[d].time,3):z(0,3);c.push.apply(c,a);
|
||||
a=this.j(k[d].color);c.push.apply(c,a);c.push.apply(c,z(b.length,1));c.push.apply(c,b);b=ja(parseFloat(k[d].penSize));c.push.apply(c,b);c.push.apply(c,b);b=[];a=[];g=[];for(e=0;e<k[d].points.length;e++){var h=k[d].points[e],f,A;f=h.x;A=h.y;h=h.t||0;f=ja(f);b.push.apply(b,f);A=ja(A);a.push.apply(a,A);A=h;(h=z(Math.abs(A),2))&&0!=h.length?(0>A&&(h[0]|=128),A=h):A=null;g.push.apply(g,A)}c.push.apply(c,b);c.push.apply(c,a);c.push.apply(c,g)}q+="_getHandWritingData end \n";return c};this.b=function(){Q();
|
||||
q+="_getHandWritingPng start \n";if(0>=k.length)return null;sa(f.canvas.width,f.canvas.height);for(var a=f.getImageData(e[0],e[2],e[1]-e[0],e[3]-e[2]),b,c=b=0;c<a.data.length;c++)void 0!==a.data[c+3]&&0!==a.data[c+3]&&b++;q+="_getHandWritingPng imageLength \uff1a"+b;if(4>b)return null;q+="_getHandWritingPng end(callback == null) \n";q+="convertImgToBase64URL start \n";b=document.createElement("CANVAS");ctx=b.getContext("2d");fa(b,ctx,a.width,a.height);ctx.putImageData(a,0,0);dataURL=b.toDataURL("image/png");
|
||||
q+="convertImgToBase64URL end \n";return dataURL};this.w=function(a,b,c){if(!(0>=a||0>=b)){var d=this.b();if(2!==(d?d.split(","):"").length)c?c(null):null;else{sa(f.canvas.width,f.canvas.height);var g=[e[1]-e[0],e[3]-e[2]],k=document.createElement("CANVAS"),h=k.getContext("2d");fa(k,h,a,b);var n=new Image;n.src=d;n.onload=function(){var d,e,f,l;g[0]>Math.round(a/b*g[1])?(f=a,l=Math.round(g[1]/g[0]*a),d=0,e=Math.round((b-l)/2)):(l=b,f=Math.round(g[0]/g[1]*b),d=Math.round((a-f)/2),e=0);h.drawImage(n,
|
||||
d/p,e/p,f/p,l/p);d=k.toDataURL("image/png");c?c(d):null}}}};this.F=function(a,b,c,d){if(!(0>=a||0>=b||0>=c.length)){var e=document.createElement("CANVAS"),f=e.getContext("2d");fa(e,f,a,b);a=Math.floor(a/d);b=Math.floor(b/Math.ceil(c.length/d));for(var h=1;h<=c.length;h++)f.drawImage(c[h-1],(h-1)%d*a/p,(Math.ceil(h/d)*b-b)/p,a/p,b/p);return e.toDataURL("image/png")}};this.A=function(){var a=q+="userAgent \u4fe1\u606f:"+navigator.userAgent+"\n";q="";return a};this.H=function(a){if(a){var b=0,c=t(v(a,
|
||||
b,2)),d=0;4101<c?(d=t(v(a,b+2,b+4)),b+=4):b+=2;var e=t(v(a,b,b+2)),b=b+2+e,f=t(v(a,b,b+2)),b=b+2+f,h=t(v(a,b,b+2)),n=t(v(a,b+2,b+2+6)),b=b+2+6;4101<c&&(b=d);if(null!==c&&null!==e&&null!==f&&null!==h&&null!==n&&0!=h){this.clear();for(d=0;d<h;d++){var l=0,e=[],f=[],p=[];if(4101<c){for(var u=b,l=t(v(a,b,b+1)),q=t(v(a,b+1,b+1+1)),b=b+1+1,r=0;r<Math.floor(q/3);r++)e.push(t(v(a,b+3*r,b+3*r+1))),f.push(t(v(a,b+3*r+1,b+3*r+2))),p.push(t(v(a,b+3*r+2,b+3*r+3)));b+=q}var q=t(v(a,b,b+3)),b=b+3,w=t(v(a,b,b+1)),
|
||||
x=t(v(a,b+1,b+2)),y=t(v(a,b+2,b+3)),F="rgb("+w+","+x+","+y+")",b=b+3,z,B;4101<c?(z=t(v(a,b,b+1)),B=t(v(a,b+1,b+1+z)),b=b+1+z,z=Math.round(Z(v(a,b,b+4))),3>z?z=3:18<z&&(z=18),b=u+l):(e.push.apply(e,[1,2,3]),f.push.apply(f,[2,2,2]),p.push.apply(p,[0,0,0]),z=t(v(a,b,b+1)),B=t(v(a,b+1,b+3)),b+=3);for(var C=-1,D=-1,l=-1,r=0;r<e.length;r++)1==e[r]?C=r:2==e[r]?D=r:3==e[r]&&(l=r);if(null===q||null===w||null===x||null===y||null===B||-1==C||-1==D||-1==l)return;r||(q=n);for(var r=[],w=[],x=[],y=[],E=0;E<B;){var G=
|
||||
v(a,b,b+f[C]);0==p[C]?w.push(ia(G)):w.push(Z(G));E++;b+=f[C]}for(E=0;E<B;)C=v(a,b,b+f[D]),0==p[D]?x.push(ia(C)):x.push(Z(C)),E++,b+=f[D];for(E=0;E<B;)D=v(a,b,b+f[l]),0==p[l]?y.push(ia(D)):y.push(Z(D)),E++,b+=f[l];for(E=0;E<e.length;E++)1!=e[E]&&2!=e[E]&&3!=e[E]&&(b+=f[E]*B);for(E=0;E<B;E++)r.push({x:w[E],y:x[E],t:y[E]});k.push({time:q,points:r,color:F,penSize:z})}replay()}}}}goog.exportSymbol("EPaper",m);m.prototype.N=function(l){this.c(l)};goog.exportProperty(m.prototype,"setPenSize",m.prototype.N);
|
||||
m.prototype.M=function(l,L,I){this.R(l,L,I)};goog.exportProperty(m.prototype,"setPenColor",m.prototype.M);m.prototype.i=function(){return this.g()};goog.exportProperty(m.prototype,"canRedo",m.prototype.i);m.prototype.P=function(){this.f()};goog.exportProperty(m.prototype,"undo",m.prototype.P);m.prototype.J=function(){this.L()};goog.exportProperty(m.prototype,"redo",m.prototype.J);m.prototype.K=function(){this.O()};goog.exportProperty(m.prototype,"replay",m.prototype.K);m.prototype.B=function(){return this.D()};
|
||||
goog.exportProperty(m.prototype,"isReplaying",m.prototype.B);m.prototype.clear=function(){this.h()};goog.exportProperty(m.prototype,"clear",m.prototype.clear);m.prototype.m=function(){return this.l()};goog.exportProperty(m.prototype,"getHandWritingData",m.prototype.m);m.prototype.s=function(){return this.b()};goog.exportProperty(m.prototype,"getHandWritingPng",m.prototype.s);m.prototype.o=function(l,L,I){this.w(l,L,I)};goog.exportProperty(m.prototype,"getHandWritingMaskedPng",m.prototype.o);
|
||||
m.prototype.G=function(l,L,I,R){return this.F(l,L,I,R)};goog.exportProperty(m.prototype,"mergePngsInDesignatedSize",m.prototype.G);m.prototype.I=function(l){this.H(l)};goog.exportProperty(m.prototype,"playWithData",m.prototype.I);m.prototype.u=function(){return this.A()};goog.exportProperty(m.prototype,"getLogInfo",m.prototype.u);m.prototype.v=function(){return"4.5.0.3"};goog.exportProperty(m.prototype,"getVersion",m.prototype.v);
|
||||
@@ -1,72 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head lang="en">
|
||||
<title>手写笔迹</title>
|
||||
<meta name="viewport" charset="UTF-8"
|
||||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover">
|
||||
<script type="text/javascript" src="./EPaper.min.js"></script>
|
||||
<script type="text/javascript" src="./Base64.js"></script>
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.paperCanvas {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 44px;
|
||||
top: 44px;
|
||||
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAIAAAADnC86AAAACXBIWXMAAAsTAAALEwEAmpwYAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAAB6JQAAgIMAAPn/AACA6QAAdTAAAOpgAAA6mAAAF2+SX8VGAAAETklEQVR42nSXyVbsMBBDPVQS4P//Ew4bSNtx3kJ5F+E0XvRJJx5qkFTl/PHxkVJKKeWcc856Ps/zPM8xhh5qraWUUkpKiZcppVprzrmUwkKt3fdd89lE+6/rylmh7fRNz6zXSh2WbHCwBl91jPaRTZyqN/iTUgoZq9/eu+Zho96X/wN7mYYFPJ/nuSwLb2qt7L/vOzuHnySjZJFiqDHG0F+9x8XWmqcJH3LOx3FoGq4fx3Ech1yvteb39/dlWXLOuDttNAXZ/67r2ntvrSkv2rGU8ng8mDz94sBPjgngdEDOubXmGcGmfd+VCAyVZ/cdJvSd5xkKCzOmbBFeft2y3rtyoU+kwGcCezmGZXGeZ++dZPjx/IoG5++RUooI7U6aFHAAqPMwTiAXWeIeQA+IFqc/BmB0SJ7n6SHEUfaRKZFzRgf0WVN9CCy+ktjqWZiSBb13Hew4x1DeBz5hcq3V5Qm/3XtHA0DV2ezDwTgALccY0XuXIWMMuc43Yi5BuNPJw0gigZIeNEFDYJStAZc0VRki/lqw77veRITeowaoJmLp+PKsjzEAY8458HKi+ZWJiIn4OgA6TZiQ9yiU74PkwYggVmIFckr0sBT0aoJigwTda8lU31zkAzTeRd/hxhusvMvqhF6vrcK53muE9qL8eX0FFCSCmVeeLBJ6mNaWUtZ1VZCVlx86wTmnAfh0XjlJXJgmZChByoJTnNRcHlMyQR0iOima1G7qUu56J1rSfogRGETYwrertR7H0XsXyrB3XdepNVAkhV4OBlzyb4zRWlNl27Zt27aIK8BjjPz5+YlDOvg4Dg/jJNeTOMjEUsqyLOIFRt+Va9s2QBP3mkOCiZ5rLwd7bDFR9EWCnGmKEPNjqr4OS8kNIHCV0MPr66uj/alYEicZBH0CWJZSvr+/pYvASkfCP6SRVD1NBFqLQQjIDxVZ7GQlkpotgNBxyiAvD/n3oFw67lx3LwFByhU61wTvq+/tX2uNTvQuYZAT7/8sEp4SF4qXl5e7pqpITMrlmJhYABSuDkQ0QHpIjIbYRT2emre3t7fJS0evi4GGutIf5fKOp/dOjltrIkZrTYiTixFXTXvabNw7c/dV/rTWQsfQsE0XC1daBzDhmbpxaq1fvVzPwWyQfFUPv2xBA6LnaJBZ92uc09evWxN0wm9wtAqPx8OroaqNYqBnLfGy6IPOZIo57ezV3l4aFjFdApxUwMTFwUvs5NnTO60LbfBKrsCQ6073u38mZ1pMvz1RXDn2SExd6YVql35xgPyRCL+DIEBU+6c9kFdSVG+ux+BFdLpjis4Xs1TmniqawkYJYODuGCOWZSEgX19fEbGuK6hR/JXOWqsaKKzWWu/aUBhXIUCuAnVBauqqdAYNMISmMDuOtItHRRmBmd6YTo1UOF6IuZcXidT98i5pY/JUs4nthC8gFl5YPA2wVnXaa8YUw4uX/+8K96pKT0Enk1L6NwB496XI9pIofQAAAABJRU5ErkJggg==');
|
||||
width: 100%;
|
||||
}
|
||||
.ePaperCanvas {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: block;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body onload="init()">
|
||||
<div class="paperCanvas">
|
||||
<canvas id="paperCanvas" class="ePaperCanvas"></canvas>
|
||||
</div>
|
||||
</body>
|
||||
<script>
|
||||
var myepaper;
|
||||
function init() {
|
||||
myepaper = new EPaper("paperCanvas");
|
||||
myepaper.setPenSize(4);
|
||||
}
|
||||
function getHandWritingData() {
|
||||
return myepaper.getHandWritingData();
|
||||
}
|
||||
|
||||
function undo() {
|
||||
myepaper.undo();
|
||||
}
|
||||
|
||||
function redo() {
|
||||
myepaper.redo();
|
||||
}
|
||||
|
||||
function clear() {
|
||||
myepaper.clear();
|
||||
}
|
||||
|
||||
function replay() {
|
||||
myepaper.replay();
|
||||
}
|
||||
function getHandWritingPng() {
|
||||
let img = myepaper.getHandWritingPng();
|
||||
return img
|
||||
}
|
||||
function getHandWritingMaskedPng(width, height, callback) {
|
||||
myepaper.getHandWritingMaskedPng(width, height, callback);
|
||||
}
|
||||
function playWithData(data) {
|
||||
myepaper.playWithData(data);
|
||||
}
|
||||
</script>
|
||||
</html>
|
||||
@@ -1,145 +1,44 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
|
||||
<title>金掌桂-应用下载</title>
|
||||
<style>
|
||||
html,
|
||||
body {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
body {
|
||||
height: 100vh;
|
||||
}
|
||||
.android_bg {
|
||||
margin-top: 5vh;
|
||||
height: 100%;
|
||||
background-color: #000;
|
||||
}
|
||||
|
||||
#coverImg {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.pc {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
height: 100vh;
|
||||
}
|
||||
.img {
|
||||
width: 40%;
|
||||
text-align: center;
|
||||
height: 40vh;
|
||||
}
|
||||
.download {
|
||||
width: 27%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.btn {
|
||||
width: 150px;
|
||||
height: 50px;
|
||||
margin-top: 57px;
|
||||
}
|
||||
.down_btn {
|
||||
display: block;
|
||||
width: 100%;
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
background-repeat: no-repeat;
|
||||
height: 100%;
|
||||
line-height: 50px;
|
||||
background-size: 20%;
|
||||
background-position-y: center;
|
||||
background-position-x: 25px;
|
||||
border-radius: 5px;
|
||||
background-color: #ee0a24;
|
||||
color: #fff;
|
||||
padding-left: 30px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.and {
|
||||
background-image: url(images/and.png);
|
||||
}
|
||||
.ios {
|
||||
background-image: url(images/ios.png);
|
||||
}
|
||||
.left,
|
||||
.right {
|
||||
height: 40vh;
|
||||
position: relative;
|
||||
}
|
||||
.left::before,
|
||||
.right::before {
|
||||
position: absolute;
|
||||
top: -35px;
|
||||
}
|
||||
.left::before {
|
||||
content: '请扫码下载';
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
|
||||
<title>金掌桂-应用下载</title>
|
||||
<style>
|
||||
.android_bg {
|
||||
height: 100%;
|
||||
background-color: #000;
|
||||
}
|
||||
|
||||
left: 10px;
|
||||
}
|
||||
.right::before {
|
||||
content: '请点击下载';
|
||||
}
|
||||
.left {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.left img {
|
||||
border: 1px solid #e5e5e5;
|
||||
padding: 3px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
#coverImg {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<img id="coverImg" src="" alt="" />
|
||||
<div class="pc" id="pc" style="display: none;">
|
||||
<!-- <div class="img">
|
||||
<img src="images/logo.png" alt="" />
|
||||
</div> -->
|
||||
|
||||
<div class="download">
|
||||
<div class="left">
|
||||
<img src="images/prdDowload.png" alt="" srcset="" />
|
||||
</div>
|
||||
<div class="right">
|
||||
<div class="btn">
|
||||
<a class="down_btn and" href="https://iagentsales-sr.e-guofu.com:8443/gfrs/apk/GfLife.apk">安卓下载</a>
|
||||
</div>
|
||||
<div class="btn">
|
||||
<a class="down_btn ios" href="https://apps.apple.com/cn/app/id1483906479"><span>苹果下载</span></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
var userAgent = navigator.userAgent
|
||||
var isAndroid = /android/gi.test(userAgent)
|
||||
var isIDevice = /iphone|ipad/gi.test(userAgent)
|
||||
<body>
|
||||
<img id="coverImg" src="" alt="" />
|
||||
<script>
|
||||
var userAgent = navigator.userAgent
|
||||
var isAndroid = /android/gi.test(userAgent)
|
||||
var isIDevice = /iphone|ipad/gi.test(userAgent)
|
||||
var URL = {
|
||||
android_download_url: 'https://iagentsales-sr.e-guofu.com:8443/gfrs/apk/GfLife.apk',
|
||||
ios_download_url: 'https://apps.apple.com/cn/app/id1483906479'
|
||||
}
|
||||
if (isAndroid) {
|
||||
location.replace(URL.android_download_url)
|
||||
document.body.setAttribute('class', 'android_bg')
|
||||
var coverImg = document.getElementById('coverImg')
|
||||
var URL = {
|
||||
android_download_url: 'https://iagentsales-sr.e-guofu.com:8443/gfrs/apk/GfLife.apk',
|
||||
ios_download_url: 'https://apps.apple.com/cn/app/id1483906479'
|
||||
}
|
||||
coverImg.src = 'https://mobile.dingchenglife.com.cn:7001/images/cover_bg.png'
|
||||
|
||||
if (isAndroid) {
|
||||
location.replace(URL.android_download_url)
|
||||
document.body.setAttribute('class', 'android_bg')
|
||||
} else if (isIDevice) {
|
||||
location.replace(URL.ios_download_url)
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
|
||||
coverImg.src = 'https://iagentsales-sr.e-guofu.com:8443/images/IMG_3279.png'
|
||||
} else if (isIDevice) {
|
||||
location.replace(URL.ios_download_url)
|
||||
} else {
|
||||
//coverImg.src = 'https://iagentsales-sr.e-guofu.com:8443/images/logo.png'
|
||||
document.getElementById('pc').style.display = 'flex'
|
||||
document.getElementById('coverImg').style.display = 'none'
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
Before Width: | Height: | Size: 566 B |
|
Before Width: | Height: | Size: 783 B |
|
Before Width: | Height: | Size: 6.3 KiB |
|
Before Width: | Height: | Size: 4.8 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
@@ -12,8 +12,6 @@
|
||||
<link rel="icon" href="<%= BASE_URL %>favicon.ico" />
|
||||
<title></title>
|
||||
<script src="<%= BASE_URL %>js/EWebBridge.js"></script>
|
||||
<script src="<%= BASE_URL %>js/echarts.min.js"></script>
|
||||
<script src="js/map/js/province/guangxi.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<noscript>
|
||||
@@ -22,7 +20,7 @@
|
||||
<div id="app"></div>
|
||||
<!-- built files will be auto injected -->
|
||||
<!-- <script src="https://cdn.bootcss.com/vue/2.6.10/vue.min.js"></script> -->
|
||||
<!-- <script src="https://cdn.bootcss.com/echarts/4.2.1-rc1/echarts.min.js"></script> -->
|
||||
|
||||
<script src="https://cdn.bootcss.com/echarts/4.2.1-rc1/echarts.min.js"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
22
public/js/echarts.min.js
vendored
39
src/App.vue
@@ -2,8 +2,8 @@
|
||||
<div id="app">
|
||||
<!--实现路由切换动画-->
|
||||
<transition :name="transitionName">
|
||||
<keep-alive include="StoreList">
|
||||
<RouterView v-if="isRouterAlive" />
|
||||
<keep-alive include="StoreDetail">
|
||||
<RouterView v-if="isRouterAlive" />
|
||||
</keep-alive>
|
||||
|
||||
<!-- <keep-alive>
|
||||
@@ -18,44 +18,15 @@ export default {
|
||||
data() {
|
||||
return {
|
||||
transitionName: '',
|
||||
isRouterAlive: true
|
||||
isRouterAlive: true
|
||||
}
|
||||
},
|
||||
provide() {
|
||||
provide() {
|
||||
return {
|
||||
reload: this.reload
|
||||
}
|
||||
},
|
||||
created () {
|
||||
// 在页面加载时读取sessionStorage
|
||||
// if (sessionStorage.getItem('store')) {
|
||||
// this.$store.replaceState(Object.assign({}, this.$store.state, JSON.parse(sessionStorage.getItem('store'))))
|
||||
// }
|
||||
// // 在页面刷新时将store保存到sessionStorage里
|
||||
// window.addEventListener('beforeunload', () => {
|
||||
// sessionStorage.setItem('store', JSON.stringify(this.$store.state))
|
||||
// })
|
||||
//ios刷新时vuex信息保留
|
||||
let isiOS = !!navigator.userAgent.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); //ios终端
|
||||
if (isiOS) {
|
||||
//在页面刷新时将vuex里的信息保存到缓存里
|
||||
window.addEventListener("pagehide", () => {
|
||||
localStorage.setItem("store", JSON.stringify(this.$store.state))
|
||||
})
|
||||
//在页面加载时读取localStorage里的状态信息
|
||||
localStorage.getItem("store") && this.$store.replaceState(Object.assign(this.$store.state,JSON.parse(localStorage.getItem("store"))));
|
||||
} else {
|
||||
//在页面刷新时将vuex里的信息保存到缓存里
|
||||
window.addEventListener("beforeunload", () => {
|
||||
localStorage.setItem("store", JSON.stringify(this.$store.state))
|
||||
})
|
||||
//在页面加载时读取localStorage里的状态信息
|
||||
localStorage.getItem("store") && this.$store.replaceState(Object.assign(this.$store.state,JSON.parse(localStorage.getItem("store"))));
|
||||
}
|
||||
},
|
||||
mounted(){
|
||||
},
|
||||
methods: {
|
||||
methods: {
|
||||
reload() {
|
||||
this.isRouterAlive = false
|
||||
this.$nextTick(() => {
|
||||
|
||||
@@ -1,127 +0,0 @@
|
||||
import request from '@/assets/js/utils/request'
|
||||
import getUrl from '@/assets/js/utils/get-url'
|
||||
// 查询登录人所属项目列表
|
||||
export function gbcProjectList(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/gbc/project/list', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 查询项目详情
|
||||
export function gbcProjectDetail(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/gbc/project/detail', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 此接口是后端用于将GBC项目信息同步至登录用户信息(即UserModel)中的接口,前端在选中项目后需要调用此接口。
|
||||
export function gbcProjectConfirm(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/gbc/project/confirm', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// GBC获取首页轮播图和上头条内容
|
||||
export function homeConfigGBC(data) {
|
||||
return request({
|
||||
url: getUrl('/customer/agent/homeConfigGBC', 1,3),
|
||||
method: 'get',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 根据项目编码获取科室信息
|
||||
export function getDepartmentByProjectNo(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/gbc/project/getDepartmentByProjectNo', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 按年份查询登录人所属项目列表
|
||||
export function getGBCprojectlistByYear(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/gbc/project/listByYear', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 查询项目下的客户列表
|
||||
export function getGBCappntlist(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/gbc/appnt/list', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 查询项目下的客户列表
|
||||
export function getGBCappntDetail(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/gbc/appnt/detail', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 保存客户类型
|
||||
export function getGBCappntTypeSave(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/gbc/appnt/type/save', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 保存客户沟通记录
|
||||
export function getGBCappntConnectSave(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/gbc/appnt/connect/save', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取GBC一级产品
|
||||
export function getGBCRiskList(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/product/getGBCRiskList ', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// GBC一级产品校验
|
||||
export function gbcAppntCheckProdect(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/gbc/appnt/checkProdect ', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// GBC一级产品校验
|
||||
export function saveOrUpdateGbc(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/gbc/appnt/saveOrUpdateGbc', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// GBC数据看板
|
||||
export function dataShow(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/gbc/data/show', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
@@ -1,166 +0,0 @@
|
||||
import request from '@/assets/js/utils/request'
|
||||
import getUrl from '@/assets/js/utils/get-url'
|
||||
|
||||
export function homeConfigYB(data) {
|
||||
return request({
|
||||
url: getUrl('/customer/agent/homeConfigYB', 1,3),
|
||||
method: 'get',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
export function mineConfigYB(data) {
|
||||
return request({
|
||||
url: getUrl('/app/mineConfigYB', 1,3),
|
||||
method: 'get',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
export function getPremRankList(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/premRank/getPremRankList ', 1,3),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
export function timelyContYB(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/timelyCont/timelyContYB ', 1,3),
|
||||
method: 'get',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
export function getPersonPremYB(data) {
|
||||
return request({
|
||||
url: getUrl('/data/congratulationTopYB/getPersonPremYB', 1,3),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
export function getDeptPremYB(data) {
|
||||
return request({
|
||||
url: getUrl('/data/congratulationTopYB/getDeptPremYB', 1,3),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 保单查询接口
|
||||
export function YBpolicyListAgent(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/policy/YBpolicyListAgent', 1,3),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 保单详情接口
|
||||
export function YBpolicyDetail(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/policy/YBpolicyDetail', 1,3),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
export function getPremByAgentCode(data) {
|
||||
return request({
|
||||
url: getUrl('/data/performanceYB/getPremByAgentCode', 1,3),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
export function getIndexByAgentCode(data) {
|
||||
return request({
|
||||
url: getUrl('/data/performanceYB/getIndexByAgentCode', 1,3),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
export function getBankNetDataYB(data) {
|
||||
return request({
|
||||
url: getUrl('/data/performanceYB/getBankNetDataYB', 1,3),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
export function getChannelPerformanceYB(data) {
|
||||
return request({
|
||||
url: getUrl('/data/performanceYB/getChannelPerformanceYB', 1,3),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
export function getBankNetPerformanceYB(data) {
|
||||
return request({
|
||||
url: getUrl('/data/performanceYB/getBankNetPerformanceYB', 1,3),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 暂时数据接口
|
||||
export function getAgentInfoByAgentCode(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/agent/getAgentInfoByAgentCode', 1,3),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 查询续期列表
|
||||
export function getYBRenewalsList(data) {
|
||||
return request({
|
||||
url: getUrl('/renewal/renewal/getYBRenewalsList', 1,3),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 查询续期详情
|
||||
export function getYBRenewalInfo(data) {
|
||||
return request({
|
||||
url: getUrl('/renewal/renewal/getYBRenewalInfo', 1,3),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 保全申请进度列表
|
||||
export function getSaveAllList(data) {
|
||||
return request({
|
||||
url: getUrl('/renewal/preservation/getSaveAllList', 1,3),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 保全申请进度详情
|
||||
export function ybSaveAllDetail(data) {
|
||||
return request({
|
||||
url: getUrl('/renewal/preservation/ybSaveAllDetail', 1,3),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 保全现金价值列表
|
||||
export function ybSaveManyList(data) {
|
||||
return request({
|
||||
url: getUrl('/renewal/preservation/ybSaveManyList', 1,3),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 保全现金价值详情
|
||||
export function ybSaveManyDetail(data) {
|
||||
return request({
|
||||
url: getUrl('/renewal/preservation/ybSaveManyDetail', 1,3),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
@@ -1,46 +0,0 @@
|
||||
import request from '@/assets/js/utils/request'
|
||||
import getUrl from '@/assets/js/utils/get-url'
|
||||
// 银保代理人签署信息查询接口
|
||||
export function getContractInfo(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/enterYB/getContractInfo', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 银保代理人签署信息接收接口
|
||||
export function putContractInfo(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/enterYB/putContractInfo', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 生成电子合同pdf
|
||||
export function generateAgreementYB(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/enterYB/generateAgreementYB', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取验证码
|
||||
export function getAuthCode(data) {
|
||||
return request({
|
||||
url: getUrl('/customer/authcode/noLoginedSend', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 校验验证码
|
||||
export function checkSignYB(data) {
|
||||
return request({
|
||||
url: getUrl('/customer/authcode/checkSignYB', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
import request from '@/assets/js/utils/request';
|
||||
import getUrl from '@/assets/js/utils/get-url';
|
||||
import request from '@/assets/js/utils/request'
|
||||
import getUrl from '@/assets/js/utils/get-url'
|
||||
|
||||
//增员信息提交
|
||||
export function agentInfowxSubmit(data) {
|
||||
@@ -7,35 +7,24 @@ export function agentInfowxSubmit(data) {
|
||||
url: getUrl('/agent/enter/share', 1),
|
||||
method: 'post',
|
||||
data
|
||||
});
|
||||
})
|
||||
}
|
||||
|
||||
//进度查询
|
||||
export function processCheck(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/enter/query', 1),
|
||||
method: 'post',
|
||||
data
|
||||
});
|
||||
})
|
||||
}
|
||||
|
||||
// 保存接口
|
||||
export function saveOrUpdateInfo(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/enter/saveOrUpdateInfo', 1),
|
||||
method: 'post',
|
||||
data
|
||||
});
|
||||
})
|
||||
}
|
||||
|
||||
export function getTokenForUserModel(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/enter/getTokenForAgent', 1),
|
||||
method: 'get',
|
||||
data
|
||||
});
|
||||
}
|
||||
|
||||
// //查询二次分享数据
|
||||
// export function getTokenForUserModel(data) {
|
||||
// console.log('查询二次分享', data)
|
||||
@@ -51,7 +40,7 @@ export function agentAll(data) {
|
||||
url: getUrl('/agent/enter/queryAll', 1),
|
||||
method: 'post',
|
||||
data
|
||||
});
|
||||
})
|
||||
}
|
||||
|
||||
// 健告查询
|
||||
@@ -60,7 +49,7 @@ export function getImpart(data) {
|
||||
url: getUrl('/agent/enter/getImpart', 1),
|
||||
method: 'post',
|
||||
data
|
||||
});
|
||||
})
|
||||
}
|
||||
|
||||
//查询签署协议信息
|
||||
@@ -69,25 +58,23 @@ export function agreementQuery(data) {
|
||||
url: getUrl('/agent/agreement/query', 1),
|
||||
method: 'post',
|
||||
data
|
||||
});
|
||||
})
|
||||
}
|
||||
|
||||
//签署协议的下一步保存接口
|
||||
export function signAgreement(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/agreement/signAgreement', 1),
|
||||
method: 'post',
|
||||
data
|
||||
});
|
||||
})
|
||||
}
|
||||
|
||||
//保存成功获取工号
|
||||
export function enterQuery(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/enter/query', 1),
|
||||
method: 'post',
|
||||
data
|
||||
});
|
||||
})
|
||||
}
|
||||
|
||||
//入司增员审批
|
||||
@@ -96,59 +83,13 @@ export function agentAddApproval(data) {
|
||||
url: getUrl('/agent/examineApprove/dispose', 1),
|
||||
method: 'post',
|
||||
data
|
||||
});
|
||||
})
|
||||
}
|
||||
|
||||
//入司增员审批
|
||||
export function auditCheck(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/examineApprove/auditCheck', 1),
|
||||
method: 'post',
|
||||
data
|
||||
});
|
||||
}
|
||||
|
||||
// 入司撤销申请
|
||||
export function revoke(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/enter/revoke', 1),
|
||||
method: 'post',
|
||||
data
|
||||
});
|
||||
}
|
||||
|
||||
// 执业证信息保存
|
||||
export function saveCertificateInfo(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/enter/uploadZgz', 1),
|
||||
method: 'post',
|
||||
data
|
||||
});
|
||||
}
|
||||
|
||||
// 联行号获取
|
||||
export function getBankJoints(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/enter/bankJoint', 1),
|
||||
method: 'post',
|
||||
data
|
||||
});
|
||||
}
|
||||
|
||||
// 校验银行号是否已经存在的接口
|
||||
export function checkBankCodeUrl(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/enter/checkBankCode', 1),
|
||||
method: 'post',
|
||||
data
|
||||
});
|
||||
}
|
||||
|
||||
// 校验是否已经是担保人的接口
|
||||
export function checkGuarantorUrl(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/enter/checkGuarantor ', 1),
|
||||
method: 'post',
|
||||
data
|
||||
});
|
||||
})
|
||||
}
|
||||
|
||||
@@ -1,158 +0,0 @@
|
||||
/*
|
||||
* @Author: PangXingYue
|
||||
* @Date: 2021-03-26 10:38:37
|
||||
* @LastEditTime: 2021-04-02 16:10:30
|
||||
* @LastEditors: PangXingYue
|
||||
* @Description:
|
||||
* @FilePath:
|
||||
*/
|
||||
|
||||
import request from '@/assets/js/utils/request'
|
||||
import getUrl from '@/assets/js/utils/get-url'
|
||||
|
||||
// 审批流程查询接口
|
||||
export function approveList(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/allowance/approve/list', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 审批人列表接口
|
||||
export function getApproveList(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/allowance/approve/getApproveList', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 津贴申请-列表
|
||||
export function getAllowanceLst(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/allowance/getAllowanceLst', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 津贴申请-详情
|
||||
export function getAllowanceDetail(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/allowance/getAllowanceDetail', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 津贴申请和我的资料-获取地区编码信息(开户银行省市)
|
||||
export function getProvinceCode(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/code/getProvinceCode', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 津贴申请和我的资料-通过所在市编码获取银行信息(开户银行)
|
||||
export function getCodeValue(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/code/getCodeValue', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 津贴申请和我的资料-获取开户银行支行的信息(开户银行支行)
|
||||
export function getBranchCodeValue(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/code/getBranchCodeValue', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 津贴申请-权限校验
|
||||
export function allowanceCheck(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/allowance/check', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 津贴-审批批量通过接口
|
||||
export function batchPass(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/allowance/approve/batchPass', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 津贴-提交审批接口
|
||||
export function updateApprove(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/allowance/approve/updateApprove', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 津贴-审批催办接口
|
||||
export function approveUrge(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/allowance/approve/approveUrge', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 津贴-申请列表定期提醒修改
|
||||
export function myDataremind(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/allowance/myData/remind', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 津贴-津贴申请人撤销接口
|
||||
export function revokerApprove(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/allowance/approve/revokerApprove', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 津贴申请-删除
|
||||
export function delAllowance(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/allowance/delAllowance', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 津贴-提交审批初始化接口
|
||||
export function approveInit(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/allowance/approve/init', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
// <-- zhangqi 津贴申请与我的资料使用到的接口 begin -->
|
||||
|
||||
// 津贴申请-基本信息,账户信息,影像资料等点击下一步操作时调用的保存接口
|
||||
export function saveOrUpdateAllowanceUrl(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/allowance/saveOrUpdateAllowance', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// <-- zhangqi 津贴申请与我的资料使用到的接口 end -->
|
||||
|
||||
@@ -1,22 +0,0 @@
|
||||
import request from '@/assets/js/utils/request'
|
||||
import getUrl from '@/assets/js/utils/get-url'
|
||||
|
||||
// 我的资料-基本信息,账户信息,影像资料等查询详细数据信息的接口
|
||||
export function getAllowanceBaseDetail(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/allowanceBase/getAllowanceBaseDetail', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 我的资料-基本信息,账户信息,影像资料等点击下一步操作时调用的保存接口
|
||||
export function saveOrUpdateAllowanceBase(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/allowanceBase/saveOrUpdateAllowanceBase', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
@@ -1,35 +0,0 @@
|
||||
import request from '@/assets/js/utils/request'
|
||||
import getUrl from '@/assets/js/utils/get-url'
|
||||
|
||||
//出单信息列表列表
|
||||
export function queryOutOrderList(data) {
|
||||
return request({
|
||||
url: getUrl(`/sale/order/queryOutOrderList`, 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
//获取当前人机构
|
||||
export function getBranchByUser(data) {
|
||||
return request({
|
||||
url: getUrl(`/data/branch/getBranchByUser`, 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
//月历查询
|
||||
export function getMonthDetail(data) {
|
||||
return request({
|
||||
url: getUrl(`/agent/Performance/getMonthDetail`, 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 出单详情
|
||||
export function queryOutOrderDetail(data) {
|
||||
return request({
|
||||
url: getUrl(`/sale/order/queryOutOrderDetail`, 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
@@ -1,68 +0,0 @@
|
||||
import request from '@/assets/js/utils/request'
|
||||
import getUrl from '@/assets/js/utils/get-url'
|
||||
|
||||
// 代理人客户列表
|
||||
export function branchOfficeApi(data) {
|
||||
return request({
|
||||
url: getUrl('/data/performance/getlComPremDetil', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 个险业绩排行优化: 机构查询
|
||||
export function getComList(data) {
|
||||
return request({
|
||||
url: getUrl('/data/performance/getComList', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 个险业绩排行优化: 业绩查询
|
||||
export function getComPerformance(data) {
|
||||
return request({
|
||||
url: getUrl('/data/performance/getComPerformance', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 个险业绩排行优化: 机构查询
|
||||
export function getOrgList(data) {
|
||||
return request({
|
||||
url: getUrl('/data/performance/getBranchComList', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取MIS全部机构 (分级)接口--因内勤多加一级,所以用这个接口
|
||||
export function getMisBranchComList(data) {
|
||||
// data.isJzg false 为内勤
|
||||
// data.isJzg true 为外勤
|
||||
return request({
|
||||
url: getUrl( '/data/performance/getMisBranchComList', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
export function getMisBranchComList2(data) {
|
||||
// data.isJzg false 为内勤
|
||||
// data.isJzg true 为外勤
|
||||
return request({
|
||||
url: getUrl( '/agent/agent/getJZGManageComList' , 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 内勤机构
|
||||
// export function getMisBranchComList(data) {
|
||||
// return request({
|
||||
// url: getUrl('/data/performance/getMisBranchComList', 1),
|
||||
// method: 'post',
|
||||
// data
|
||||
// })
|
||||
// }
|
||||
|
||||
@@ -1,11 +1,3 @@
|
||||
/*
|
||||
* @Author: PangXingYue
|
||||
* @Date: 2021-03-26 10:38:37
|
||||
* @LastEditTime: 2021-04-02 16:10:30
|
||||
* @LastEditors: PangXingYue
|
||||
* @Description:
|
||||
* @FilePath: \ebiz-h5\src\api\ebiz\cardList\cardList.js
|
||||
*/
|
||||
// 卡单接口
|
||||
|
||||
import request from '@/assets/js/utils/request'
|
||||
@@ -91,89 +83,3 @@ export function getPayTemp(data) {
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
//
|
||||
export function getShareParam(data) {
|
||||
return request({
|
||||
url: getUrl('/customer/account/getShareParam', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 更新险种文档阅读状态
|
||||
export function saveOrUpdateDocument(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/card/saveOrUpdateDocument', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取验证码
|
||||
export function getAuthCode(data) {
|
||||
return request({
|
||||
url: getUrl('/customer/authcode/loginedSend', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 卡单撤单
|
||||
export function revokeOrder(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/order/revokeOrder', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 团险--多个被保人--开始
|
||||
// 投保人、被保人保存接口
|
||||
export function saveOrUpdateGroupCard(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/card/saveOrUpdateGroupCard', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
//详情
|
||||
// {
|
||||
// "orderNo": "8186270000017833",
|
||||
// }
|
||||
export function cardOrderDetail(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/card/orderDetail', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
////验证惠桂保是否续保单优惠方案
|
||||
export function selectPreferentialScheme(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/card/selectPreferentialScheme', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
//删除
|
||||
// {
|
||||
// "id": "23271" //被保险人insuredId
|
||||
// }
|
||||
|
||||
export function deleteGroupCardByInsured(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/card/deleteGroupCardByInsured', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 不让跨天支付 单新契约出单跨天支付流程优化
|
||||
export function cardContIsPay(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/card/contIsPay', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
@@ -29,13 +29,13 @@ export function history(data) {
|
||||
}
|
||||
|
||||
// //历史报案详情接口
|
||||
export function historyDetail(data) {
|
||||
return request({
|
||||
url: getUrl(`/claim/claimReport/historyDetail`, 1),
|
||||
method: 'get',
|
||||
data
|
||||
})
|
||||
}
|
||||
// export function historyDetail(data) {
|
||||
// return request({
|
||||
// url: getUrl(`/claim/claimReport/historyDetail`, 1),
|
||||
// method: 'post',
|
||||
// data
|
||||
// })
|
||||
// }
|
||||
|
||||
//理赔申请
|
||||
export function apply(data) {
|
||||
@@ -126,31 +126,3 @@ export function getAuthCode(data) {
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 理赔审批列表
|
||||
export function queryClaimData(data) {
|
||||
return request({
|
||||
url: getUrl('/claim/claimApproval/queryClaimData', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 理赔审批
|
||||
export function claimApproval(data) {
|
||||
return request({
|
||||
url: getUrl('/claim/claimApproval/claimApproval', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 理赔金额计算
|
||||
export function getTotalMoney(data) {
|
||||
return request({
|
||||
url: getUrl('/claim/claimApproval/getTotalMoney', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
@@ -19,25 +19,6 @@ export function mainRiskList(data) {
|
||||
})
|
||||
}
|
||||
|
||||
// 主险列表--建议书
|
||||
export function mainRiskListProposal(data) {
|
||||
return request({
|
||||
url: getUrl(`/proposal/product/getMainRiskLst`, 1),
|
||||
// url: getUrl(`/${localStorage.isFrom}/product/getMainRiskLst`, 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
//移动端活动对应产品列表
|
||||
export function getActProductList(data) {
|
||||
return request({
|
||||
url: getUrl(`/sale/activity/getActProductList`, 1),
|
||||
// url: getUrl(`/${localStorage.isFrom}/product/getMainRiskLst`, 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
//试算
|
||||
export function trial(data) {
|
||||
return request({
|
||||
@@ -81,51 +62,3 @@ export function wxShare(data) {
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
//验证代理人访问
|
||||
export function checkEnterPower(data) {
|
||||
return request({
|
||||
url: getUrl('/customer/agent/checkEnterPower', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取验证码
|
||||
export function getAuthCode(data) {
|
||||
return request({
|
||||
url: getUrl('/customer/authcode/loginedSend', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取代理人信息
|
||||
export function getCheckModelAgentInfo(data) {
|
||||
return request({
|
||||
// url: getUrl('/agent/agent/info', 0),
|
||||
url: getUrl('/customer/agent/info', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 校验当前用户权限
|
||||
export function funcPermCheck(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/funcPerm/check', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
/** add by zhangweiwei FCRS-764 国富无忧两全保险(B款)新增主险职业校验逻辑 start at 20240807 */
|
||||
// 校验职业是否符合产品要求
|
||||
export function occupationCodeCheck(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/product/occupationCodeCheck', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
/** add by zhangweiwei FCRS-764 国富无忧两全保险(B款)新增主险职业校验逻辑 end at 20240807 */
|
||||
@@ -1,10 +0,0 @@
|
||||
import request from '@/assets/js/utils/request'
|
||||
import getUrl from '@/assets/js/utils/get-url'
|
||||
|
||||
export function getCongratulationList(data) {
|
||||
return request({
|
||||
url: getUrl('/data/performance/getAgentTop', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
@@ -1,20 +0,0 @@
|
||||
import request from '@/assets/js/utils/request'
|
||||
import getUrl from '@/assets/js/utils/get-url'
|
||||
|
||||
// 对话记录接口
|
||||
export function queryHistoryKBSBroker(data) {
|
||||
return request({
|
||||
url: getUrl('/customer/KBSBroker/queryHistory', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 问答请求接口
|
||||
export function queryActionKBSBroker(data) {
|
||||
return request({
|
||||
url: getUrl('/customer/KBSBroker/queryAction', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
@@ -1,65 +0,0 @@
|
||||
import request from '@/assets/js/utils/request'
|
||||
import getUrl from '@/assets/js/utils/get-url'
|
||||
|
||||
// 陪访机构信息查询
|
||||
export function getAccompanyComCode(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/accompany/getAccompanyComCode', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 陪访代理人查询
|
||||
export function getAccompanyPerson(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/accompany/getAccompanyPerson', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 陪访记录查询
|
||||
export function getAgentAccompanyRecordPage(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/accompany/getAgentAccompanyRecordPage', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 陪访信息登记
|
||||
export function saveAccompanyRecord(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/accompany/saveAccompanyRecord', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 陪访记录详情查询
|
||||
export function getAccompanyDetail(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/accompany/getAccompanyDetail', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 积分记录查询
|
||||
export function getRewardRecord(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/reward/getRewardRecord', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 积分榜单查询
|
||||
export function getAccompanyRank(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/reward/getAccompanyRank', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
@@ -1,100 +0,0 @@
|
||||
import request from '@/assets/js/utils/request'
|
||||
import getUrl from '@/assets/js/utils/get-url'
|
||||
|
||||
// 开门红业绩查询机构列表查询
|
||||
export function getComList(data) {
|
||||
return request({
|
||||
url: getUrl('/data/performance/getComList', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 开门红业绩查询机构列表查询
|
||||
export function getMisComList(data) {
|
||||
return request({
|
||||
url: getUrl('/data/performance/getMisComList', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 百宝箱菜单列表查询
|
||||
export function getTreasureMenus(data) {
|
||||
return request({
|
||||
url: getUrl('/app/code/getCodeValue', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 业绩查询
|
||||
export function getComPerformance(data) {
|
||||
return request({
|
||||
url: getUrl('/data/performance/getComPerformance', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 开门红方案图片查询
|
||||
export function getSchemePics(data) {
|
||||
return request({
|
||||
url: getUrl('/app/code/getCodeValue', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 开门红方案图片查询
|
||||
export function getcompany(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/product/getcompany', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取开门红实时贺报和倒计时图片接口
|
||||
export function makePosters(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/makePosters/GoodStart', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 业务地图获取数据
|
||||
export function getMapDataList(data) {
|
||||
return request({
|
||||
url: getUrl('/data/performance/getMapDataList', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
//获取当前人机构
|
||||
export function getBranchByUser(data) {
|
||||
return request({
|
||||
url: getUrl(`/data/branch/getBranchByUser`, 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
//出单榜海报列表接口
|
||||
export function queryOutPosters(data) {
|
||||
return request({
|
||||
url: getUrl(`/sale/makePosters/queryOutPosters`, 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
//大单榜海报列表接口
|
||||
export function queryOutPostersBig(data) {
|
||||
return request({
|
||||
url: getUrl(`/sale/makePosters/queryOutPostersBig`, 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
import request from '@/assets/js/utils/request'
|
||||
import getUrl from '@/assets/js/utils/get-url'
|
||||
|
||||
export function healthgetRenewalList(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/health/getRenewalList', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
export function healthgetRenewalListDetail(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/health/getRenewalListDetail', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
export function reasonForNonRenewalSubmitted(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/health/reasonForNonRenewalSubmitted', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
export function getAgentManager(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/health/getAgentManager', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
@@ -1,19 +0,0 @@
|
||||
import request from '@/assets/js/utils/request'
|
||||
import getUrl from '@/assets/js/utils/get-url'
|
||||
|
||||
// 惠桂保数据查询
|
||||
export function selectHgb(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/order/selectHgb', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
export function selectHgbDetail(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/order/getHgbDetail', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
@@ -1,67 +0,0 @@
|
||||
/*
|
||||
* @Author: PangXingYue
|
||||
* @Date: 2021-03-04 10:38:24
|
||||
* @LastEditTime: 2021-03-24 10:08:07
|
||||
* @LastEditors: PangXingYue
|
||||
* @Description:
|
||||
* @FilePath: \ebiz-h5\src\api\ebiz\insureAgain\insureAgain.js
|
||||
*/
|
||||
import request from '@/assets/js/utils/request'
|
||||
import getUrl from '@/assets/js/utils/get-url'
|
||||
// 订单列表
|
||||
export function getPolicyListAgent(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/policy/getReOrderPolicyListAgent', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取订单详情(待提交)
|
||||
export function getReAppntPolicy(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/policy/getReAppntPolicy', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 保费计算
|
||||
export function saveOrUpdateOrderInfo(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/order/saveOrUpdateOrderInfo', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* @description: 重新投保-投保信息保存
|
||||
* @param {*} data
|
||||
* @return {*}
|
||||
*/
|
||||
export function commitReOrder(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/order/commitReOrder', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取验证码
|
||||
export function getAuthCode(data) {
|
||||
return request({
|
||||
url: getUrl('/customer/authcode/loginedSend', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 撤单
|
||||
export function revokeOrder(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/order/revokeOrder', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
@@ -1,231 +0,0 @@
|
||||
/*
|
||||
* @Author: PangXingYue
|
||||
* @Date: 2021-03-26 10:38:37
|
||||
* @LastEditTime: 2021-04-02 16:10:30
|
||||
* @LastEditors: PangXingYue
|
||||
* @Description:
|
||||
* @FilePath: \ebiz-h5\src\api\ebiz\cardList\cardList.js
|
||||
*/
|
||||
// 卡单接口
|
||||
|
||||
import request from '@/assets/js/utils/request'
|
||||
import getUrl from '@/assets/js/utils/get-url'
|
||||
|
||||
// 获取卡单列表
|
||||
export function getCardList(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/product/getProList', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取我的卡单列表
|
||||
export function getMyCardList(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/card/getMyCardList', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取产品详情
|
||||
export function getProductDetails(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/product/getItemDetail', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取产品试算详情
|
||||
export function getProductInfo(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/product/getDetail', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 进行试算
|
||||
export function insureTrial(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/insure/trial', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 保存卡单信息
|
||||
export function saveOrUpdateCard(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/card/saveOrUpdateCard', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 保存卡单支付信息
|
||||
export function saveOrUpdateAccount(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/card/saveOrUpdateAccount', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
//获取我的订单列表
|
||||
export function getOrderList(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/order/cardOrderList', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取订单支付状态
|
||||
export function getPayTemp(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/insure/getPayTemp', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
//
|
||||
export function getShareParam(data) {
|
||||
return request({
|
||||
url: getUrl('/customer/account/getShareParam', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 更新险种文档阅读状态
|
||||
export function saveOrUpdateDocument(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/card/saveOrUpdateDocument', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取验证码
|
||||
export function getAuthCode(data) {
|
||||
return request({
|
||||
url: getUrl('/customer/authcode/loginedSend', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 卡单撤单
|
||||
export function revokeOrder(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/order/revokeOrder', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
//--------以上不属于桂冠俱乐部----------------
|
||||
//桂冠俱乐部
|
||||
|
||||
// 会员等级列表
|
||||
export function queryLaureList(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/laure/queryLaureList', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 会员名单列表
|
||||
export function queryLaureMemberList(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/laure/queryLaureMemberList', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 会员名单--桂冠排名
|
||||
export function queryAllLaureList(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/laure/queryAllLaureList', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取当前登录人机构信息
|
||||
export function getBranchByUser(data) {
|
||||
return request({
|
||||
url: getUrl('/data/branch/getBranchByUser', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 查询个人数据
|
||||
export function queryPersonal(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/laure/queryPersonal', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 查询团队数据
|
||||
export function queryTeamList(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/laure/queryTeamList', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取海报数据的
|
||||
export function queryPosterDataUrl(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/laure/queryPoster', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 查询职级变化的接口
|
||||
export function queryStarCourseDataUrl(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/laure/queryStarCourse', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 星路历程查询代理人点赞数量
|
||||
export function queryFavorDataUrl(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/laure/queryFavor', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 星路历程修改点赞数量的接口
|
||||
export function editFavorDataUrl(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/laure/editFavor', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
//桂冠捐赠证书查询
|
||||
export function posterGenerateQuery(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/laure/posterGenerateQuery', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
@@ -98,15 +98,6 @@ export function saveShareRecord(data) {
|
||||
})
|
||||
}
|
||||
|
||||
//
|
||||
export function sharePosterLoading(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/share/posterLoading', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取分享记录的key
|
||||
export function getShareKey(data) {
|
||||
return request({
|
||||
|
||||
@@ -41,7 +41,7 @@ export function getAgentInfo(data) {
|
||||
export function getAgentIncome(data) {
|
||||
return request({
|
||||
// url: getUrl('/agent/income/info', 0),
|
||||
url: getUrl('/agent/agentTransform/income/info', 1),
|
||||
url: getUrl('/agent/agent/income/info', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
@@ -56,60 +56,3 @@ export function queryPrivacy(data) {
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
//获取隐私政策
|
||||
export function queryPrivacyNot(data) {
|
||||
return request({
|
||||
// url: getUrl('/agent/income/info', 0),
|
||||
url: getUrl('/customer/privacy/queryPrivacy', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
//注销用户
|
||||
export function logoutAgent(data) {
|
||||
return request({
|
||||
url: getUrl('/customer/account/logoutAgent', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
//登录用户
|
||||
export function loginTest(data) {
|
||||
return request({
|
||||
url: getUrl('/customer/account/login', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
//登录用户
|
||||
export function createWXHeadImg(data) {
|
||||
return request({
|
||||
url: getUrl('/media/image/createWXheadImg', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
//登录用户
|
||||
export function getWXHeadImgConfig(data) {
|
||||
return request({
|
||||
url: getUrl('/media/image/getWXHeadImgConfig', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
//登录用户
|
||||
export function getServiceConfig(data) {
|
||||
return request({
|
||||
url: getUrl('/app/service-Config', 1),
|
||||
method: 'get',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -118,13 +118,3 @@ export function exportExcel(data) {
|
||||
data
|
||||
})
|
||||
}
|
||||
export function base64Excel(data) {
|
||||
return request({
|
||||
// url: 'http://10.10.100.98:7012/updown/uploadBase64Image',
|
||||
url: getUrl('/uploadBase64Image', 1,2),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -1,20 +0,0 @@
|
||||
import request from '@/assets/js/utils/request'
|
||||
import getUrl from '@/assets/js/utils/get-url'
|
||||
|
||||
// 查询父母列表数据的接口
|
||||
export function getAllowanceBaseList(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/allowanceBase/getAllowanceBaseList', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 列表父母信息录入校验的接口
|
||||
export function check(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/allowanceBase/check', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
@@ -20,8 +20,7 @@ export function getBaseAgentInfo(data) {
|
||||
//获取信息
|
||||
export function getPerformanceDetail(data) {
|
||||
return request({
|
||||
url: getUrl(`/data/performance/getPerformanceDetail`, 1),
|
||||
// url: getUrl(`/agent/Performance/getPerformanceDetail`, 1),
|
||||
url: getUrl(`/agent/Performance/getPerformanceDetail`, 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
@@ -41,30 +40,4 @@ export function getBaseAgentInfo(data) {
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
//转code
|
||||
export function getCode(data) {
|
||||
return request({
|
||||
url: getUrl(`/agent/Performance/getGroupCodeByName`, 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
//获取当前人机构
|
||||
export function getBranchByUser(data) {
|
||||
return request({
|
||||
url: getUrl(`/data/branch/getBranchByUser`, 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 获取MIS全部机构 (分级)接口--因内勤多加一级,所以用这个接口
|
||||
export function getMisBranchComList(data) {
|
||||
return request({
|
||||
url: getUrl('/data/performance/getMisBranchComList', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
}
|
||||
@@ -19,15 +19,6 @@ export function getPosterList(data) {
|
||||
})
|
||||
}
|
||||
|
||||
//海报列表查询 app端
|
||||
export function getAppPosterList(data) {
|
||||
return request({
|
||||
url: getUrl('/media/pster/getAppPosterList', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
//海报详情
|
||||
export function getPosterInfo(data) {
|
||||
return request({
|
||||
@@ -54,11 +45,3 @@ export function shareUrlWithQR(data) {
|
||||
data
|
||||
})
|
||||
}
|
||||
// 开门红大单榜海报接口
|
||||
export function queryBigPosters(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/makePosters/queryBigPosters', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
@@ -27,12 +27,3 @@ export function getProductInfo(data) {
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 协调单位专区产品列表接口地址
|
||||
export function getSpecialAreaProList(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/product/getSpecialAreaProList', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
@@ -1,70 +0,0 @@
|
||||
import request from '@/assets/js/utils/request'
|
||||
import getUrl from '@/assets/js/utils/get-url'
|
||||
|
||||
// // 获取产说会列表
|
||||
export function getProdectSaidList(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/prodectsaid/getProdectSaidList', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 查询机构列表
|
||||
export function getBranchComList(data) {
|
||||
return request({
|
||||
url: getUrl('/data/performance/getBranchComList', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 查询产说会详情
|
||||
export function getProdectSaidById(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/prodectsaid/getProdectSaidById', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 创建或编辑产说会
|
||||
export function addOrUpdate(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/prodectsaid/addOrUpdate', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 查询主讲产品列表和所属机构
|
||||
export function getList(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/ebizprodectsaid/getList', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 查询统计列表
|
||||
export function selectAllStatistical(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/prodectsaid/selectAllStatistical', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 查询统计详情
|
||||
export function selectStatisticalByCon(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/prodectsaid/selectStatisticalByCon', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 查询人员是否是内勤
|
||||
export function getAgentInfo(data) {
|
||||
return request({
|
||||
url: getUrl('/customer/agent/info', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
@@ -82,37 +82,3 @@ export function share(data = {}) {
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 分享建议书获取token
|
||||
export function getSharingToken(data = {}) {
|
||||
return request({
|
||||
url: getUrl('/customer/account/getShareParam', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取试算记录详情
|
||||
export function getTrialRecordInfo(data = {}) {
|
||||
return request({
|
||||
url: getUrl('/proposal/trialRecord/getTrialRecordInfo', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 试算记录保存更新
|
||||
export function saveOrUpdateTrialRecordInfo(data = {}) {
|
||||
return request({
|
||||
url: getUrl('/proposal/trialRecord/saveOrUpdateTrialRecordInfo', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 建议书拷贝功能
|
||||
export function proposalCopy(data = {}) {
|
||||
return request({
|
||||
url: getUrl('/proposal/proposal/copy', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
@@ -1,29 +0,0 @@
|
||||
import request from '@/assets/js/utils/request'
|
||||
import getUrl from '@/assets/js/utils/get-url'
|
||||
|
||||
// 列表
|
||||
export function getQuestionList(data = {}) {
|
||||
return request({
|
||||
method: 'post',
|
||||
url: getUrl('/sale/issue/getPrtIssueList', 1),
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 详情
|
||||
export function getQuestionDetail(data = {}) {
|
||||
return request({
|
||||
method: 'post',
|
||||
url: getUrl('/sale/issue/getPrtIssueDetail', 1),
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 更新
|
||||
export function updateQuestionDetail(data = {}) {
|
||||
return request({
|
||||
method: 'post',
|
||||
url: getUrl('/sale/issue/updatePrtIssue', 1),
|
||||
data
|
||||
})
|
||||
}
|
||||
@@ -1,25 +1,10 @@
|
||||
import request from '@/assets/js/utils/request'
|
||||
import getUrl from '@/assets/js/utils/get-url'
|
||||
//获取续期客户列表
|
||||
export function getRenewalCustomerList(data) {
|
||||
return request({
|
||||
url: getUrl('/data/Customer/customerList', 1), //0=》mock数据 1=》正式数据
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
//获取续期保单列表
|
||||
export function getPolicyList(data) {
|
||||
return request({
|
||||
url: getUrl('/renewal/renewal/getPolicyList', 1), //0=》mock数据 1=》正式数据
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
//获取续期列表
|
||||
export function getList(data) {
|
||||
return request({
|
||||
url: getUrl('/renewal/renewal/getRenewalList', 1), //0=》mock数据 1=》正式数据
|
||||
url: getUrl('/renewal/getRenewalList', 0), //0=》mock数据 1=》正式数据
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
@@ -28,7 +13,7 @@ export function getList(data) {
|
||||
//获取续期扣款详情
|
||||
export function getDetail(data) {
|
||||
return request({
|
||||
url: getUrl('/renewal/renewal/getRenewalDetail', 1), //0=》mock数据 1=》正式数据
|
||||
url: getUrl('/renewal/getRenewalDetail', 0), //0=》mock数据 1=》正式数据
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
@@ -37,7 +22,7 @@ export function getDetail(data) {
|
||||
//获取短信模板
|
||||
export function getMsg(data) {
|
||||
return request({
|
||||
url: getUrl('/renewal/renewal/msgTemplate', 1),
|
||||
url: getUrl('/renewal/msgTemplate', 0),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
@@ -46,25 +31,7 @@ export function getMsg(data) {
|
||||
//发送短信
|
||||
export function sendMsg(data) {
|
||||
return request({
|
||||
url: getUrl('/renewal/renewal/sendSms', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取失效/终止保单列表
|
||||
export function getInvalidOrderList(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/policy/policyListAgent', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
//获取续期保单列表
|
||||
export function getShortPolicyList(data) {
|
||||
return request({
|
||||
url: getUrl('/renewal/renewal/getShortPolicyList', 1), //0=》mock数据 1=》正式数据
|
||||
url: getUrl('/renewal/sendSms', 0),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
import request1 from '@/assets/js/utils/request1'
|
||||
import request from '@/assets/js/utils/request'
|
||||
import getUrl from '@/assets/js/utils/get-url'
|
||||
|
||||
export function reportList(data) {
|
||||
return request1({
|
||||
return request({
|
||||
url: getUrl('/data/resultsReport/queryResultsReport', 1),
|
||||
method: 'post',
|
||||
data
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
import request from '@/assets/js/utils/request'
|
||||
import request1 from '@/assets/js/utils/request1'
|
||||
import getUrl from '@/assets/js/utils/get-url'
|
||||
import store from '@/store'
|
||||
|
||||
// 保费计算
|
||||
export function saveOrUpdateOrderInfo(data) {
|
||||
return request({
|
||||
@@ -10,22 +9,6 @@ export function saveOrUpdateOrderInfo(data) {
|
||||
data
|
||||
})
|
||||
}
|
||||
// 核保试算
|
||||
export function orderTrial(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/orderTrial/trial', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
//人核转线上支付判断是否可进行支付操作
|
||||
export function payFlag(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/insure/payFlag', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 订单列表
|
||||
export function orderList(data) {
|
||||
return request({
|
||||
@@ -69,13 +52,7 @@ export function getOrderDetail(data) {
|
||||
data
|
||||
})
|
||||
}
|
||||
export function getOrderDetail1(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/order/orderDetail', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取验证码
|
||||
export function getAuthCode(data) {
|
||||
return request({
|
||||
@@ -94,21 +71,12 @@ export function autchCodeCheck(data) {
|
||||
}
|
||||
// 上传图片
|
||||
export function uploadImg(data) {
|
||||
return request1({
|
||||
return request({
|
||||
url: getUrl('/uploadImage', 1, 2),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 上传图片
|
||||
export function uploadImg2(data) {
|
||||
return request1({
|
||||
url: getUrl('/uploadImage?imgType='+store.getters.getUploadImgType+'&orderNo='+store.getters.getUploadImgOrderNo, 1, 2),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
/*
|
||||
// 人脸识别
|
||||
export function recognition(data) {
|
||||
@@ -156,15 +124,6 @@ export function acceptInsurance(data) {
|
||||
})
|
||||
}
|
||||
|
||||
// 签约确认
|
||||
export function signConfirm(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/insure/getSignConfirm', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取银行卡接口
|
||||
export function getBankList(data) {
|
||||
return request({
|
||||
@@ -263,7 +222,6 @@ export function revokeOrder(data) {
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取产品允许投保人单位列表
|
||||
export function getCompany(data) {
|
||||
return request({
|
||||
@@ -272,7 +230,6 @@ export function getCompany(data) {
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 2.1. 校验银行卡信息
|
||||
export function checkCard(data) {
|
||||
return request({
|
||||
@@ -281,116 +238,3 @@ export function checkCard(data) {
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 2.1. 添加客户rid 认证
|
||||
export function saveCustomerRid(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/rid/saveCustomerRid', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取订单活动信息
|
||||
export function getOrderActiveInfo(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/order/getActiveInfo', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取订单活动信息
|
||||
export function saveOrderActiveType(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/order/saveActiveType', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 移动端活动列表
|
||||
export function getActivityList(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/activity/getActivityList', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
// 身份证OCR识别
|
||||
export function IDCardOCR(data) {
|
||||
return request1({
|
||||
url: getUrl('/customer/IDCardOCR', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 查询签约结果
|
||||
export function getBankCardSignState(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/insure/getBankCardSignState', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取柳州分红万能投连型产品编码集合
|
||||
export function getUniversalCodeLst(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/product/getUniversalCodeLst', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取柳州分红万能投连型产品编码集合
|
||||
export function getDoubleRecordProductLst(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/product/getDoubleRecordProductLst ', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 指定受益人身份四要素
|
||||
export function checkAppointBnf(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/bnfCheck/checkAppointBnf ', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
export function appntIsAgent(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/insure/appntIsAgent', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
export function saveOrderType(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/order/saveOrderType', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
export function changeOrderStatus(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/order/changeOrderStatus', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
export function riskLevelCheck(data) {
|
||||
return request({
|
||||
url: getUrl('/sale/order/riskLevelCheck', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
import request from '@/assets/js/utils/request'
|
||||
import getUrl from '@/assets/js/utils/get-url'
|
||||
|
||||
// 获取培训系统中心页面
|
||||
export function trainHomeUrl(data) {
|
||||
return request({
|
||||
url: getUrl('/customer/train/account/trainHomeUrl', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
import request from '@/assets/js/utils/request'
|
||||
import getUrl from '@/assets/js/utils/get-url'
|
||||
|
||||
// 白名单查询
|
||||
export function getWhitelist(data) {
|
||||
return request({
|
||||
url: getUrl('/agent/white/getWhiteInfo', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
Before Width: | Height: | Size: 680 B |
|
Before Width: | Height: | Size: 60 KiB |
|
Before Width: | Height: | Size: 65 KiB |
|
Before Width: | Height: | Size: 968 B |
|
Before Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 50 KiB |
|
Before Width: | Height: | Size: 469 KiB |
|
Before Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 2.5 KiB |
|
Before Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 2.5 KiB |
|
Before Width: | Height: | Size: 83 KiB |
|
Before Width: | Height: | Size: 172 KiB |
|
Before Width: | Height: | Size: 855 B |
|
Before Width: | Height: | Size: 23 KiB |
|
Before Width: | Height: | Size: 299 KiB |
|
Before Width: | Height: | Size: 3.7 KiB |
|
Before Width: | Height: | Size: 4.0 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 8.4 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 59 KiB |
|
Before Width: | Height: | Size: 3.1 KiB |
|
Before Width: | Height: | Size: 4.1 KiB |
|
Before Width: | Height: | Size: 85 KiB |
|
Before Width: | Height: | Size: 85 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 59 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 7.4 KiB |
|
Before Width: | Height: | Size: 4.8 KiB |
|
Before Width: | Height: | Size: 6.6 KiB |
|
Before Width: | Height: | Size: 9.4 KiB |
|
Before Width: | Height: | Size: 6.6 KiB |
|
Before Width: | Height: | Size: 827 B |
|
Before Width: | Height: | Size: 36 KiB |
|
Before Width: | Height: | Size: 248 KiB |
|
Before Width: | Height: | Size: 3.5 KiB |
|
Before Width: | Height: | Size: 439 KiB |
|
Before Width: | Height: | Size: 770 B |
|
Before Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 688 B |