@xuda.io/account_module 1.2.460 → 1.2.461
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.mjs +22 -23
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -1199,31 +1199,30 @@ const get_contact_background = function (doc) {
|
|
|
1199
1199
|
const get_contact_pattern = function (doc) {
|
|
1200
1200
|
const ret = `default-pattern.png`;
|
|
1201
1201
|
|
|
1202
|
-
if (doc.
|
|
1203
|
-
ret = `
|
|
1204
|
-
}
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1202
|
+
if (doc.contact_uid) {
|
|
1203
|
+
ret = `xu-pattern.png`;
|
|
1204
|
+
} else {
|
|
1205
|
+
switch (doc.contact_mood) {
|
|
1206
|
+
case -2: {
|
|
1207
|
+
ret = `linear-gradient(145deg, #f60404d8 0%, #7f98e344 100%)`;
|
|
1208
|
+
break;
|
|
1209
|
+
}
|
|
1210
|
+
case -1: {
|
|
1211
|
+
ret = `linear-gradient(145deg, #f6040452 0%, #7f98e344 100%)`;
|
|
1212
|
+
break;
|
|
1213
|
+
}
|
|
1214
|
+
case 1: {
|
|
1215
|
+
ret = `linear-gradient(145deg, #04f61452 0%, #7f98e344 100%)`;
|
|
1216
|
+
break;
|
|
1217
|
+
}
|
|
1218
|
+
case 2: {
|
|
1219
|
+
ret = `linear-gradient(145deg, #30f604c9 0%, #7f98e344 100%)`;
|
|
1220
|
+
break;
|
|
1221
|
+
}
|
|
1222
|
+
default:
|
|
1223
|
+
break;
|
|
1222
1224
|
}
|
|
1223
|
-
default:
|
|
1224
|
-
break;
|
|
1225
1225
|
}
|
|
1226
|
-
|
|
1227
1226
|
return ret;
|
|
1228
1227
|
};
|
|
1229
1228
|
|