- corretto footer catalogo
- corretti il path delle immagini (quando hanno lo spazio nel nomefile). - aggiunto colore di sfondo per il testo descrittivo, in trasparenza
This commit is contained in:
4
.env
4
.env
@@ -1,6 +1,6 @@
|
|||||||
VITE_APP_VERSION="1.2.48"
|
VITE_APP_VERSION="1.2.49"
|
||||||
VITE_LANG_DEFAULT="it"
|
VITE_LANG_DEFAULT="it"
|
||||||
VITE_PAO_APP_ID="KKPPAA5KJK435J3KSS9F9D8S9F8SD98F9SDF"
|
VITE_PAO_APP_ID="KKPPAA5KJK435J3KSS9F9D8S9F8SD98F9SDF"
|
||||||
VITE_SERVICE_WORKER_FILE="sw-1.2.48.js"
|
VITE_SERVICE_WORKER_FILE="sw-1.2.49.js"
|
||||||
VITE_PROJECT_ID_MAIN="5cc0a13fe5c9d156728f400a"
|
VITE_PROJECT_ID_MAIN="5cc0a13fe5c9d156728f400a"
|
||||||
VITE_VUE_ROUTER_MODE="history"
|
VITE_VUE_ROUTER_MODE="history"
|
||||||
@@ -10,7 +10,7 @@
|
|||||||
<meta name="description" content="<%= productDescription %>">
|
<meta name="description" content="<%= productDescription %>">
|
||||||
<meta name="format-detection" content="telephone=no">
|
<meta name="format-detection" content="telephone=no">
|
||||||
<meta name="msapplication-tap-highlight" content="no">
|
<meta name="msapplication-tap-highlight" content="no">
|
||||||
<meta name="version" content="1.2.48">
|
<meta name="version" content="1.2.49">
|
||||||
<meta name="viewport"
|
<meta name="viewport"
|
||||||
content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width<% if (ctx.mode.cordova || ctx.mode.capacitor) { %>, viewport-fit=cover<% } %>">
|
content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width<% if (ctx.mode.cordova || ctx.mode.capacitor) { %>, viewport-fit=cover<% } %>">
|
||||||
|
|
||||||
|
|||||||
14
package.json
14
package.json
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "gruppomacro",
|
"name": "gruppomacro",
|
||||||
"version": "1.2.48",
|
"version": "1.2.49",
|
||||||
"description": "Gruppo Macro",
|
"description": "Gruppo Macro",
|
||||||
"productName": "Gruppo Macro",
|
"productName": "Gruppo Macro",
|
||||||
"author": "Surya",
|
"author": "Surya",
|
||||||
@@ -9,20 +9,20 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "PORT=8089 APP_VERSION='1.2.48' quasar dev",
|
"dev": "PORT=8089 APP_VERSION='1.2.49' quasar dev",
|
||||||
"dev_noCheck": "SKIP_TSC=true quasar dev",
|
"dev_noCheck": "SKIP_TSC=true quasar dev",
|
||||||
"build": "quasar build",
|
"build": "quasar build",
|
||||||
"buildpwa": "NODE_ENV=production APP_VERSION='1.2.48' quasar build -m pwa",
|
"buildpwa": "NODE_ENV=production APP_VERSION='1.2.49' quasar build -m pwa",
|
||||||
"buildpwatest": "NODE_ENV=production APP_VERSION='1.2.48' quasar build -m pwa",
|
"buildpwatest": "NODE_ENV=production APP_VERSION='1.2.49' quasar build -m pwa",
|
||||||
"type-check": "vue-tsc --noEmit",
|
"type-check": "vue-tsc --noEmit",
|
||||||
"type-check:watch": "vue-tsc --noEmit --watch",
|
"type-check:watch": "vue-tsc --noEmit --watch",
|
||||||
"buildspa": "APP_VERSION='1.2.48' quasar build -m spa",
|
"buildspa": "APP_VERSION='1.2.49' quasar build -m spa",
|
||||||
"lint": "eslint -c ./eslint.config.js \"./src*/**/*.{ts,js,cjs,mjs,vue}\"",
|
"lint": "eslint -c ./eslint.config.js \"./src*/**/*.{ts,js,cjs,mjs,vue}\"",
|
||||||
"lintfile": "eslint --ext .js,.ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
"lintfile": "eslint --ext .js,.ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
||||||
"lintfileNoJS": "eslint --ext .ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
"lintfileNoJS": "eslint --ext .ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
||||||
"fix": "eslint -c ./eslint.config.js \"./src*/**/*.{ts,js,cjs,mjs,vue}\" --ignore-pattern .gitignore ./ --fix > file.out.txt",
|
"fix": "eslint -c ./eslint.config.js \"./src*/**/*.{ts,js,cjs,mjs,vue}\" --ignore-pattern .gitignore ./ --fix > file.out.txt",
|
||||||
"pwa": "NODE_ENV=development PORT=8099 APP_VERSION='1.2.48' quasar dev -m pwa",
|
"pwa": "NODE_ENV=development PORT=8099 APP_VERSION='1.2.49' quasar dev -m pwa",
|
||||||
"spa": "NODE_ENV=development PORT=8089 APP_VERSION='1.2.48' quasar dev",
|
"spa": "NODE_ENV=development PORT=8089 APP_VERSION='1.2.49' quasar dev",
|
||||||
"debug": "quasar dev --mode debug",
|
"debug": "quasar dev --mode debug",
|
||||||
"test": "echo \"No test specified\" && exit 0",
|
"test": "echo \"No test specified\" && exit 0",
|
||||||
"generate-sw": "workbox generateSW workbox-config.js",
|
"generate-sw": "workbox generateSW workbox-config.js",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "cnm",
|
"name": "cnm",
|
||||||
"version": "1.2.48",
|
"version": "1.2.49",
|
||||||
"description": "Comunita Nuovo Mondo",
|
"description": "Comunita Nuovo Mondo",
|
||||||
"productName": "ComunitaNuovoMondo",
|
"productName": "ComunitaNuovoMondo",
|
||||||
"author": "Surya",
|
"author": "Surya",
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "PORT=8083 APP_VERSION='1.2.48' quasar dev",
|
"dev": "PORT=8083 APP_VERSION='1.2.49' quasar dev",
|
||||||
"dev_noCheck": "SKIP_TSC=true quasar dev",
|
"dev_noCheck": "SKIP_TSC=true quasar dev",
|
||||||
"build": "quasar build",
|
"build": "quasar build",
|
||||||
"buildpwa": "NODE_ENV=production quasar build -m pwa",
|
"buildpwa": "NODE_ENV=production quasar build -m pwa",
|
||||||
@@ -21,8 +21,8 @@
|
|||||||
"lintfile": "eslint --ext .js,.ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
"lintfile": "eslint --ext .js,.ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
||||||
"lintfileNoJS": "eslint --ext .ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
"lintfileNoJS": "eslint --ext .ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
||||||
"fix": "eslint -c ./eslint.config.js \"./src*/**/*.{ts,js,cjs,mjs,vue}\" --ignore-pattern .gitignore ./ --fix > file.out.txt",
|
"fix": "eslint -c ./eslint.config.js \"./src*/**/*.{ts,js,cjs,mjs,vue}\" --ignore-pattern .gitignore ./ --fix > file.out.txt",
|
||||||
"pwa": "NODE_ENV=development PORT=8093 APP_VERSION='1.2.48' quasar dev -m pwa",
|
"pwa": "NODE_ENV=development PORT=8093 APP_VERSION='1.2.49' quasar dev -m pwa",
|
||||||
"spa": "NODE_ENV=development PORT=8083 APP_VERSION='1.2.48' quasar dev",
|
"spa": "NODE_ENV=development PORT=8083 APP_VERSION='1.2.49' quasar dev",
|
||||||
"debug": "quasar dev --mode debug",
|
"debug": "quasar dev --mode debug",
|
||||||
"test": "echo \"No test specified\" && exit 0",
|
"test": "echo \"No test specified\" && exit 0",
|
||||||
"generate-sw": "workbox generateSW workbox-config.js",
|
"generate-sw": "workbox generateSW workbox-config.js",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "freeplanet",
|
"name": "freeplanet",
|
||||||
"version": "1.2.48",
|
"version": "1.2.49",
|
||||||
"description": "freeplanet",
|
"description": "freeplanet",
|
||||||
"productName": "freeplanet",
|
"productName": "freeplanet",
|
||||||
"author": "Surya",
|
"author": "Surya",
|
||||||
@@ -9,11 +9,11 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "PORT=8087 APP_VERSION='1.2.48' quasar dev",
|
"dev": "PORT=8087 APP_VERSION='1.2.49' quasar dev",
|
||||||
"dev_noCheck": "SKIP_TSC=true quasar dev",
|
"dev_noCheck": "SKIP_TSC=true quasar dev",
|
||||||
"build": "quasar build",
|
"build": "quasar build",
|
||||||
"buildpwa": "NODE_ENV=production APP_VERSION='1.2.48' quasar build -m pwa",
|
"buildpwa": "NODE_ENV=production APP_VERSION='1.2.49' quasar build -m pwa",
|
||||||
"buildpwatest": "NODE_ENV=production APP_VERSION='1.2.48' quasar build -m pwa",
|
"buildpwatest": "NODE_ENV=production APP_VERSION='1.2.49' quasar build -m pwa",
|
||||||
"type-check": "vue-tsc --noEmit",
|
"type-check": "vue-tsc --noEmit",
|
||||||
"type-check:watch": "vue-tsc --noEmit --watch",
|
"type-check:watch": "vue-tsc --noEmit --watch",
|
||||||
"buildspa": "quasar build -m spa",
|
"buildspa": "quasar build -m spa",
|
||||||
@@ -21,8 +21,8 @@
|
|||||||
"lintfile": "eslint --ext .js,.ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
"lintfile": "eslint --ext .js,.ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
||||||
"lintfileNoJS": "eslint --ext .ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
"lintfileNoJS": "eslint --ext .ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
||||||
"fix": "eslint -c ./eslint.config.js \"./src*/**/*.{ts,js,cjs,mjs,vue}\" --ignore-pattern .gitignore ./ --fix > file.out.txt",
|
"fix": "eslint -c ./eslint.config.js \"./src*/**/*.{ts,js,cjs,mjs,vue}\" --ignore-pattern .gitignore ./ --fix > file.out.txt",
|
||||||
"pwa": "NODE_ENV=development PORT=8097 APP_VERSION='1.2.48' quasar dev -m pwa",
|
"pwa": "NODE_ENV=development PORT=8097 APP_VERSION='1.2.49' quasar dev -m pwa",
|
||||||
"spa": "NODE_ENV=development PORT=8087 APP_VERSION='1.2.48' quasar dev",
|
"spa": "NODE_ENV=development PORT=8087 APP_VERSION='1.2.49' quasar dev",
|
||||||
"debug": "quasar dev --mode debug",
|
"debug": "quasar dev --mode debug",
|
||||||
"test": "echo \"No test specified\" && exit 0",
|
"test": "echo \"No test specified\" && exit 0",
|
||||||
"generate-sw": "workbox generateSW workbox-config.js",
|
"generate-sw": "workbox generateSW workbox-config.js",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "gruppomacro",
|
"name": "gruppomacro",
|
||||||
"version": "1.2.48",
|
"version": "1.2.49",
|
||||||
"description": "Gruppo Macro",
|
"description": "Gruppo Macro",
|
||||||
"productName": "Gruppo Macro",
|
"productName": "Gruppo Macro",
|
||||||
"author": "Surya",
|
"author": "Surya",
|
||||||
@@ -9,20 +9,20 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "PORT=8089 APP_VERSION='1.2.48' quasar dev",
|
"dev": "PORT=8089 APP_VERSION='1.2.49' quasar dev",
|
||||||
"dev_noCheck": "SKIP_TSC=true quasar dev",
|
"dev_noCheck": "SKIP_TSC=true quasar dev",
|
||||||
"build": "quasar build",
|
"build": "quasar build",
|
||||||
"buildpwa": "NODE_ENV=production APP_VERSION='1.2.48' quasar build -m pwa",
|
"buildpwa": "NODE_ENV=production APP_VERSION='1.2.49' quasar build -m pwa",
|
||||||
"buildpwatest": "NODE_ENV=production APP_VERSION='1.2.48' quasar build -m pwa",
|
"buildpwatest": "NODE_ENV=production APP_VERSION='1.2.49' quasar build -m pwa",
|
||||||
"type-check": "vue-tsc --noEmit",
|
"type-check": "vue-tsc --noEmit",
|
||||||
"type-check:watch": "vue-tsc --noEmit --watch",
|
"type-check:watch": "vue-tsc --noEmit --watch",
|
||||||
"buildspa": "APP_VERSION='1.2.48' quasar build -m spa",
|
"buildspa": "APP_VERSION='1.2.49' quasar build -m spa",
|
||||||
"lint": "eslint -c ./eslint.config.js \"./src*/**/*.{ts,js,cjs,mjs,vue}\"",
|
"lint": "eslint -c ./eslint.config.js \"./src*/**/*.{ts,js,cjs,mjs,vue}\"",
|
||||||
"lintfile": "eslint --ext .js,.ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
"lintfile": "eslint --ext .js,.ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
||||||
"lintfileNoJS": "eslint --ext .ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
"lintfileNoJS": "eslint --ext .ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
||||||
"fix": "eslint -c ./eslint.config.js \"./src*/**/*.{ts,js,cjs,mjs,vue}\" --ignore-pattern .gitignore ./ --fix > file.out.txt",
|
"fix": "eslint -c ./eslint.config.js \"./src*/**/*.{ts,js,cjs,mjs,vue}\" --ignore-pattern .gitignore ./ --fix > file.out.txt",
|
||||||
"pwa": "NODE_ENV=development PORT=8099 APP_VERSION='1.2.48' quasar dev -m pwa",
|
"pwa": "NODE_ENV=development PORT=8099 APP_VERSION='1.2.49' quasar dev -m pwa",
|
||||||
"spa": "NODE_ENV=development PORT=8089 APP_VERSION='1.2.48' quasar dev",
|
"spa": "NODE_ENV=development PORT=8089 APP_VERSION='1.2.49' quasar dev",
|
||||||
"debug": "quasar dev --mode debug",
|
"debug": "quasar dev --mode debug",
|
||||||
"test": "echo \"No test specified\" && exit 0",
|
"test": "echo \"No test specified\" && exit 0",
|
||||||
"generate-sw": "workbox generateSW workbox-config.js",
|
"generate-sw": "workbox generateSW workbox-config.js",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "kolibrilab",
|
"name": "kolibrilab",
|
||||||
"version": "1.2.48",
|
"version": "1.2.49",
|
||||||
"description": "kolibrilab",
|
"description": "kolibrilab",
|
||||||
"productName": "kolibrilab",
|
"productName": "kolibrilab",
|
||||||
"author": "Surya Paolo",
|
"author": "Surya Paolo",
|
||||||
@@ -8,11 +8,11 @@
|
|||||||
"keywords": [],
|
"keywords": [],
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "PORT=8083 APP_VERSION='1.2.48' quasar dev",
|
"dev": "PORT=8083 APP_VERSION='1.2.49' quasar dev",
|
||||||
"dev_noCheck": "SKIP_TSC=true quasar dev",
|
"dev_noCheck": "SKIP_TSC=true quasar dev",
|
||||||
"build": "quasar build",
|
"build": "quasar build",
|
||||||
"buildpwa": "NODE_ENV=production APP_VERSION='1.2.48' quasar build -m pwa",
|
"buildpwa": "NODE_ENV=production APP_VERSION='1.2.49' quasar build -m pwa",
|
||||||
"buildpwatest": "NODE_ENV=production APP_VERSION='1.2.48' quasar build -m pwa",
|
"buildpwatest": "NODE_ENV=production APP_VERSION='1.2.49' quasar build -m pwa",
|
||||||
"type-check": "vue-tsc --noEmit",
|
"type-check": "vue-tsc --noEmit",
|
||||||
"type-check:watch": "vue-tsc --noEmit --watch",
|
"type-check:watch": "vue-tsc --noEmit --watch",
|
||||||
"buildspa": "quasar build -m spa",
|
"buildspa": "quasar build -m spa",
|
||||||
@@ -20,8 +20,8 @@
|
|||||||
"lintfile": "eslint --ext .js,.ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
"lintfile": "eslint --ext .js,.ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
||||||
"lintfileNoJS": "eslint --ext .ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
"lintfileNoJS": "eslint --ext .ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
||||||
"fix": "eslint --ext .ts,.vue --ignore-path .gitignore ./ --fix > file.out.txt",
|
"fix": "eslint --ext .ts,.vue --ignore-path .gitignore ./ --fix > file.out.txt",
|
||||||
"pwa": "NODE_ENV=development PORT=8093 APP_VERSION='1.2.48' quasar dev -m pwa",
|
"pwa": "NODE_ENV=development PORT=8093 APP_VERSION='1.2.49' quasar dev -m pwa",
|
||||||
"spa": "NODE_ENV=development PORT=8083 APP_VERSION='1.2.48' quasar dev",
|
"spa": "NODE_ENV=development PORT=8083 APP_VERSION='1.2.49' quasar dev",
|
||||||
"spanorefresh": "NODE_ENV=development NODE_OPTIONS=--max_old_space_size=4096 DEBUG=v8:* quasar dev -m spa",
|
"spanorefresh": "NODE_ENV=development NODE_OPTIONS=--max_old_space_size=4096 DEBUG=v8:* quasar dev -m spa",
|
||||||
"test": "echo \"No test specified\" && exit 0",
|
"test": "echo \"No test specified\" && exit 0",
|
||||||
"generate-sw": "workbox generateSW workbox-config.js"
|
"generate-sw": "workbox generateSW workbox-config.js"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "nutriben",
|
"name": "nutriben",
|
||||||
"version": "1.2.48",
|
"version": "1.2.49",
|
||||||
"description": "Nutriben",
|
"description": "Nutriben",
|
||||||
"productName": "Nutriben",
|
"productName": "Nutriben",
|
||||||
"author": "Surya",
|
"author": "Surya",
|
||||||
@@ -9,20 +9,20 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "PORT=8093 APP_VERSION='1.2.48' quasar dev",
|
"dev": "PORT=8093 APP_VERSION='1.2.49' quasar dev",
|
||||||
"dev_noCheck": "SKIP_TSC=true quasar dev",
|
"dev_noCheck": "SKIP_TSC=true quasar dev",
|
||||||
"build": "quasar build",
|
"build": "quasar build",
|
||||||
"buildpwa": "NODE_ENV=production APP_VERSION='1.2.48' quasar build -m pwa",
|
"buildpwa": "NODE_ENV=production APP_VERSION='1.2.49' quasar build -m pwa",
|
||||||
"buildpwatest": "NODE_ENV=production APP_VERSION='1.2.48' quasar build -m pwa",
|
"buildpwatest": "NODE_ENV=production APP_VERSION='1.2.49' quasar build -m pwa",
|
||||||
"type-check": "vue-tsc --noEmit",
|
"type-check": "vue-tsc --noEmit",
|
||||||
"type-check:watch": "vue-tsc --noEmit --watch",
|
"type-check:watch": "vue-tsc --noEmit --watch",
|
||||||
"buildspa": "APP_VERSION='1.2.48' quasar build -m spa",
|
"buildspa": "APP_VERSION='1.2.49' quasar build -m spa",
|
||||||
"lint": "eslint -c ./eslint.config.js \"./src*/**/*.{ts,js,cjs,mjs,vue}\"",
|
"lint": "eslint -c ./eslint.config.js \"./src*/**/*.{ts,js,cjs,mjs,vue}\"",
|
||||||
"lintfile": "eslint --ext .js,.ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
"lintfile": "eslint --ext .js,.ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
||||||
"lintfileNoJS": "eslint --ext .ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
"lintfileNoJS": "eslint --ext .ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
||||||
"fix": "eslint -c ./eslint.config.js \"./src*/**/*.{ts,js,cjs,mjs,vue}\" --ignore-pattern .gitignore ./ --fix > file.out.txt",
|
"fix": "eslint -c ./eslint.config.js \"./src*/**/*.{ts,js,cjs,mjs,vue}\" --ignore-pattern .gitignore ./ --fix > file.out.txt",
|
||||||
"pwa": "NODE_ENV=development PORT=8099 APP_VERSION='1.2.48' quasar dev -m pwa",
|
"pwa": "NODE_ENV=development PORT=8099 APP_VERSION='1.2.49' quasar dev -m pwa",
|
||||||
"spa": "NODE_ENV=development PORT=8093 APP_VERSION='1.2.48' quasar dev",
|
"spa": "NODE_ENV=development PORT=8093 APP_VERSION='1.2.49' quasar dev",
|
||||||
"debug": "quasar dev --mode debug",
|
"debug": "quasar dev --mode debug",
|
||||||
"test": "echo \"No test specified\" && exit 0",
|
"test": "echo \"No test specified\" && exit 0",
|
||||||
"generate-sw": "workbox generateSW workbox-config.js",
|
"generate-sw": "workbox generateSW workbox-config.js",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "piuchebuono",
|
"name": "piuchebuono",
|
||||||
"version": "1.2.48",
|
"version": "1.2.49",
|
||||||
"description": "PiuCheBuono",
|
"description": "PiuCheBuono",
|
||||||
"productName": "PiuCheBuono",
|
"productName": "PiuCheBuono",
|
||||||
"author": "Surya",
|
"author": "Surya",
|
||||||
@@ -9,11 +9,11 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "PORT=8085 APP_VERSION='1.2.48' quasar dev",
|
"dev": "PORT=8085 APP_VERSION='1.2.49' quasar dev",
|
||||||
"dev_noCheck": "SKIP_TSC=true quasar dev",
|
"dev_noCheck": "SKIP_TSC=true quasar dev",
|
||||||
"build": "quasar build",
|
"build": "quasar build",
|
||||||
"buildpwa": "NODE_ENV=production APP_VERSION='1.2.48' quasar build -m pwa",
|
"buildpwa": "NODE_ENV=production APP_VERSION='1.2.49' quasar build -m pwa",
|
||||||
"buildpwatest": "NODE_ENV=production APP_VERSION='1.2.48' quasar build -m pwa",
|
"buildpwatest": "NODE_ENV=production APP_VERSION='1.2.49' quasar build -m pwa",
|
||||||
"type-check": "vue-tsc --noEmit",
|
"type-check": "vue-tsc --noEmit",
|
||||||
"type-check:watch": "vue-tsc --noEmit --watch",
|
"type-check:watch": "vue-tsc --noEmit --watch",
|
||||||
"buildspa": "quasar build -m spa",
|
"buildspa": "quasar build -m spa",
|
||||||
@@ -21,8 +21,8 @@
|
|||||||
"lintfile": "eslint --ext .js,.ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
"lintfile": "eslint --ext .js,.ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
||||||
"lintfileNoJS": "eslint --ext .ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
"lintfileNoJS": "eslint --ext .ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
||||||
"fix": "eslint -c ./eslint.config.js \"./src*/**/*.{ts,js,cjs,mjs,vue}\" --ignore-pattern .gitignore ./ --fix > file.out.txt",
|
"fix": "eslint -c ./eslint.config.js \"./src*/**/*.{ts,js,cjs,mjs,vue}\" --ignore-pattern .gitignore ./ --fix > file.out.txt",
|
||||||
"pwa": "NODE_ENV=development PORT=8085 APP_VERSION='1.2.48' quasar dev -m pwa",
|
"pwa": "NODE_ENV=development PORT=8085 APP_VERSION='1.2.49' quasar dev -m pwa",
|
||||||
"spa": "NODE_ENV=development PORT=8085 APP_VERSION='1.2.48' quasar dev",
|
"spa": "NODE_ENV=development PORT=8085 APP_VERSION='1.2.49' quasar dev",
|
||||||
"debug": "quasar dev --mode debug",
|
"debug": "quasar dev --mode debug",
|
||||||
"test": "echo \"No test specified\" && exit 0",
|
"test": "echo \"No test specified\" && exit 0",
|
||||||
"generate-sw": "workbox generateSW workbox-config.js",
|
"generate-sw": "workbox generateSW workbox-config.js",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "riso",
|
"name": "riso",
|
||||||
"version": "1.2.48",
|
"version": "1.2.49",
|
||||||
"description": "Siamo la Rete Italiana di Scambio Orizzontale, abbiamo creato questa piattaforma per metterla al servizio di chi vuole riscoprire il valore della condivisione e della cooperazione. Valori semplici e profondi che ci aiutano a ritrovare il Senso della Vita, perduto in questa società consumista, e riporti quei Sani Pricìpi Naturali ed Umani di Fratellanza che intere popolazioni antiche conoscevano bene.",
|
"description": "Siamo la Rete Italiana di Scambio Orizzontale, abbiamo creato questa piattaforma per metterla al servizio di chi vuole riscoprire il valore della condivisione e della cooperazione. Valori semplici e profondi che ci aiutano a ritrovare il Senso della Vita, perduto in questa società consumista, e riporti quei Sani Pricìpi Naturali ed Umani di Fratellanza che intere popolazioni antiche conoscevano bene.",
|
||||||
"productName": "Riso",
|
"productName": "Riso",
|
||||||
"author": "Surya",
|
"author": "Surya",
|
||||||
@@ -9,11 +9,11 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "APP_VERSION='1.2.48' PORT=8084 quasar dev",
|
"dev": "APP_VERSION='1.2.49' PORT=8084 quasar dev",
|
||||||
"dev_noCheck": "SKIP_TSC=true quasar dev",
|
"dev_noCheck": "SKIP_TSC=true quasar dev",
|
||||||
"build": "quasar build",
|
"build": "quasar build",
|
||||||
"buildpwa": "NODE_ENV=production APP_VERSION='1.2.48' quasar build -m pwa",
|
"buildpwa": "NODE_ENV=production APP_VERSION='1.2.49' quasar build -m pwa",
|
||||||
"buildpwatest": "NODE_ENV=production APP_VERSION='1.2.48' quasar build -m pwa",
|
"buildpwatest": "NODE_ENV=production APP_VERSION='1.2.49' quasar build -m pwa",
|
||||||
"type-check": "vue-tsc --noEmit",
|
"type-check": "vue-tsc --noEmit",
|
||||||
"type-check:watch": "vue-tsc --noEmit --watch",
|
"type-check:watch": "vue-tsc --noEmit --watch",
|
||||||
"buildspa": "quasar build -m spa",
|
"buildspa": "quasar build -m spa",
|
||||||
@@ -21,8 +21,8 @@
|
|||||||
"lintfile": "eslint --ext .js,.ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
"lintfile": "eslint --ext .js,.ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
||||||
"lintfileNoJS": "eslint --ext .ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
"lintfileNoJS": "eslint --ext .ts,.vue --ignore-path .gitignore ./ > file.out.txt",
|
||||||
"fix": "eslint -c ./eslint.config.js \"./src*/**/*.{ts,js,cjs,mjs,vue}\" --ignore-pattern .gitignore ./ --fix > file.out.txt",
|
"fix": "eslint -c ./eslint.config.js \"./src*/**/*.{ts,js,cjs,mjs,vue}\" --ignore-pattern .gitignore ./ --fix > file.out.txt",
|
||||||
"pwa": "NODE_ENV=development PORT=8094 APP_VERSION='1.2.48' quasar dev -m pwa",
|
"pwa": "NODE_ENV=development PORT=8094 APP_VERSION='1.2.49' quasar dev -m pwa",
|
||||||
"spa": "NODE_ENV=development PORT=8084 APP_VERSION='1.2.48' quasar dev",
|
"spa": "NODE_ENV=development PORT=8084 APP_VERSION='1.2.49' quasar dev",
|
||||||
"debug": "quasar dev --mode debug",
|
"debug": "quasar dev --mode debug",
|
||||||
"test": "echo \"No test specified\" && exit 0",
|
"test": "echo \"No test specified\" && exit 0",
|
||||||
"generate-sw": "workbox generateSW workbox-config.js",
|
"generate-sw": "workbox generateSW workbox-config.js",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
/* global workbox */
|
/* global workbox */
|
||||||
/* global cfgenv */
|
/* global cfgenv */
|
||||||
|
|
||||||
const VITE_APP_VERSION = '1.2.48';
|
const VITE_APP_VERSION = '1.2.49';
|
||||||
|
|
||||||
// Costanti di configurazione
|
// Costanti di configurazione
|
||||||
const DYNAMIC_CACHE = 'dynamic-cache-v2';
|
const DYNAMIC_CACHE = 'dynamic-cache-v2';
|
||||||
|
|||||||
@@ -80,6 +80,7 @@ export default defineComponent({
|
|||||||
const mytab = ref('descr');
|
const mytab = ref('descr');
|
||||||
|
|
||||||
const loading = ref(false);
|
const loading = ref(false);
|
||||||
|
const myscrapingbook = ref(null);
|
||||||
|
|
||||||
const updatetogm = ref(false);
|
const updatetogm = ref(false);
|
||||||
const field_updated_toGM = ref('');
|
const field_updated_toGM = ref('');
|
||||||
@@ -103,10 +104,10 @@ export default defineComponent({
|
|||||||
const loadMyScrapingBook = async () => {
|
const loadMyScrapingBook = async () => {
|
||||||
loading.value = true;
|
loading.value = true;
|
||||||
try {
|
try {
|
||||||
const myscrapingbook = await products.loadMyScrapingBook(
|
const myscrapingbookrec = await products.loadMyScrapingBook(
|
||||||
myproduct.value.isbn, false
|
myproduct.value.isbn, false
|
||||||
);
|
);
|
||||||
myproduct.value.myscrapingbook = myscrapingbook;
|
myscrapingbook.value = myscrapingbookrec;
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('Errore caricamento MyScrapingBook:', error);
|
console.error('Errore caricamento MyScrapingBook:', error);
|
||||||
} finally {
|
} finally {
|
||||||
@@ -186,14 +187,14 @@ export default defineComponent({
|
|||||||
|
|
||||||
function getPrompt() {
|
function getPrompt() {
|
||||||
// Prompt:
|
// Prompt:
|
||||||
let mydescr = 'Scrivimi la sinossi del seguente libro, che andrà nel catalogo libri, di massimo 680 battute, senza spiegazione, senza titolo iniziale, solo la sinossi. Togli eventuali riferimenti a chi ha fatto la prefazione. Rendilo un po\' accattivante, ma non troppo. \n\n';
|
let mydescr = 'Scrivimi la sinossi del libro che ti indicherò, che andrà in un catalogo libri, la lunghezza del testo finale dev\'essere compresa tra 760 e 780 caratteri, senza spiegazione, senza titolo iniziale, solo la sinossi. Togli eventuali riferimenti a chi ha fatto la prefazione. Rendilo un po\' accattivante, ma non troppo. \n\n';
|
||||||
return mydescr
|
return mydescr
|
||||||
}
|
}
|
||||||
|
|
||||||
function copyDescrizioneFromScrapingData() {
|
function copyDescrizioneFromScrapingData() {
|
||||||
let mydescr = '';
|
let mydescr = '';
|
||||||
|
|
||||||
const data = myproduct?.value.myscrapingbook;
|
const data = myscrapingbook.value;
|
||||||
if (!data) return false;
|
if (!data) return false;
|
||||||
|
|
||||||
mydescr = getPrompt()
|
mydescr = getPrompt()
|
||||||
@@ -240,7 +241,7 @@ export default defineComponent({
|
|||||||
handleShowAndSave,
|
handleShowAndSave,
|
||||||
copyDescrizioneFromScrapingData,
|
copyDescrizioneFromScrapingData,
|
||||||
copyDescrizioneFromGruppoMacro,
|
copyDescrizioneFromGruppoMacro,
|
||||||
loading,
|
myscrapingbook,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -81,43 +81,43 @@
|
|||||||
|
|
||||||
<div v-if="!loading">
|
<div v-if="!loading">
|
||||||
<div
|
<div
|
||||||
v-if="myproduct?.myscrapingbook?.descrizione_lunga"
|
v-if="myscrapingbook?.descrizione_lunga"
|
||||||
class="q-ma-xs q-pa-xs"
|
class="q-ma-xs q-pa-xs"
|
||||||
>
|
>
|
||||||
<div class="text-h6 q-mb-sm">
|
|
||||||
Descrizione Estratta da Amazon:
|
|
||||||
</div>
|
|
||||||
{{ myproduct?.myscrapingbook?.descrizione_lunga }}
|
|
||||||
<br />
|
|
||||||
<q-btn
|
<q-btn
|
||||||
rounded
|
rounded
|
||||||
color="primary"
|
color="primary"
|
||||||
label="Copia per ChatGPT"
|
label="Copia Descrizione Amazon (per ChatGPT)"
|
||||||
icon="content_copy"
|
icon="content_copy"
|
||||||
@click="copyDescrizioneFromScrapingData"
|
@click="copyDescrizioneFromScrapingData"
|
||||||
class="q-ma-md justify-center"
|
class="q-ma-md justify-center"
|
||||||
>
|
>
|
||||||
</q-btn>
|
</q-btn>
|
||||||
|
<div class="text-h6 q-mb-sm">
|
||||||
|
Descrizione Estratta da Amazon:
|
||||||
|
</div>
|
||||||
|
{{ myscrapingbook?.descrizione_lunga }}
|
||||||
|
<br />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
v-if="myproduct?.productInfo?.descrizione_completa_macro"
|
v-if="myproduct?.productInfo?.descrizione_completa_macro"
|
||||||
class="q-ma-xs q-pa-xs"
|
class="q-ma-xs q-pa-xs"
|
||||||
>
|
>
|
||||||
<div class="text-h6 q-mb-sm">
|
|
||||||
Descrizione Estratta dal sito GruppoMacro.com:
|
|
||||||
</div>
|
|
||||||
{{ myproduct?.productInfo?.descrizione_completa_macro }}
|
|
||||||
<br />
|
|
||||||
<q-btn
|
<q-btn
|
||||||
rounded
|
rounded
|
||||||
color="primary"
|
color="primary"
|
||||||
label="Copia per ChatGPT"
|
label="Copia Descrizione GruppoMacro (per ChatGPT)"
|
||||||
icon="content_copy"
|
icon="content_copy"
|
||||||
@click="copyDescrizioneFromGruppoMacro"
|
@click="copyDescrizioneFromGruppoMacro"
|
||||||
class="q-ma-md justify-center"
|
class="q-ma-md justify-center"
|
||||||
>
|
>
|
||||||
</q-btn>
|
</q-btn>
|
||||||
|
<div class="text-h6 q-mb-sm">
|
||||||
|
Descrizione Estratta dal sito GruppoMacro.com:
|
||||||
|
</div>
|
||||||
|
{{ myproduct?.productInfo?.descrizione_completa_macro }}
|
||||||
|
<br />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</q-tab-panel>
|
</q-tab-panel>
|
||||||
@@ -131,3 +131,4 @@
|
|||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
@import './CModifTrafiletto.scss';
|
@import './CModifTrafiletto.scss';
|
||||||
</style>
|
</style>
|
||||||
|
Hai sempre sognato un ricettario fatto da te, con i tuoi piatti migliori? Questo libro ti guida passo dopo passo nella creazione del tuo personale quaderno di cucina. Suddividi le ricette per tema, annota ingredienti, segreti e varianti, aggiungi le tue note e segui i consigli per comporre menu sorprendenti. Con utili sezioni su mise en place, attrezzi da cucina, stagionalità, conservazione e molto altro, sarà il tuo alleato in cucina tutto l’anno. Perfetto per chi ama cucinare con creatività, organizzazione e un pizzico di stile.
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ export interface ICatalog {
|
|||||||
img_bordata_stampa?: IImg,
|
img_bordata_stampa?: IImg,
|
||||||
img_intro_stampa?: IImg,
|
img_intro_stampa?: IImg,
|
||||||
pagina_introduttiva_sfondo_nero?: boolean
|
pagina_introduttiva_sfondo_nero?: boolean
|
||||||
|
backcolor?: string
|
||||||
|
|
||||||
pdf_generato?: string
|
pdf_generato?: string
|
||||||
data_generato?: Date
|
data_generato?: Date
|
||||||
|
|||||||
@@ -2050,6 +2050,7 @@ const msg_it = {
|
|||||||
img_bordata_stampa: 'Immagine di sfondo (per STAMPA)',
|
img_bordata_stampa: 'Immagine di sfondo (per STAMPA)',
|
||||||
img_intro_stampa: 'Copertina introduttiva (per STAMPA)',
|
img_intro_stampa: 'Copertina introduttiva (per STAMPA)',
|
||||||
pagina_introduttiva_sfondo_nero: 'Pagina intro a sfondo nero',
|
pagina_introduttiva_sfondo_nero: 'Pagina intro a sfondo nero',
|
||||||
|
backcolor: 'Colore di Sfondo Pagina Introduttiva',
|
||||||
isCatalogoGenerale: 'Fa parte del Catalogo Generale',
|
isCatalogoGenerale: 'Fa parte del Catalogo Generale',
|
||||||
collane: 'Collane',
|
collane: 'Collane',
|
||||||
idPageAssigned: 'Pagina Assegnata',
|
idPageAssigned: 'Pagina Assegnata',
|
||||||
|
|||||||
@@ -237,6 +237,7 @@ export const colTableCatalogList = [
|
|||||||
|
|
||||||
AddCol({ name: 'descr_introduttiva', label_trans: 'cataloglist.descr_introduttiva', fieldtype: costanti.FieldType.html, maxlength: 1300 }),
|
AddCol({ name: 'descr_introduttiva', label_trans: 'cataloglist.descr_introduttiva', fieldtype: costanti.FieldType.html, maxlength: 1300 }),
|
||||||
AddCol({ name: 'pagina_introduttiva_sfondo_nero', label_trans: 'cataloglist.pagina_introduttiva_sfondo_nero', fieldtype: costanti.FieldType.boolean }),
|
AddCol({ name: 'pagina_introduttiva_sfondo_nero', label_trans: 'cataloglist.pagina_introduttiva_sfondo_nero', fieldtype: costanti.FieldType.boolean }),
|
||||||
|
AddCol({ name: 'backcolor', label_trans: 'cataloglist.backcolor', fieldtype: costanti.FieldType.string }),
|
||||||
|
|
||||||
AddCol({
|
AddCol({
|
||||||
name: 'img_bordata',
|
name: 'img_bordata',
|
||||||
|
|||||||
@@ -77,6 +77,11 @@
|
|||||||
color="negative"
|
color="negative"
|
||||||
@click="EseguiFunz('ScraperMultipleDataDBStored')"
|
@click="EseguiFunz('ScraperMultipleDataDBStored')"
|
||||||
></q-btn>
|
></q-btn>
|
||||||
|
<q-btn
|
||||||
|
label="Estrai TUTTI i Dati da Amazon (Scraper) - No Update"
|
||||||
|
color="primary"
|
||||||
|
@click="EseguiFunz('ScraperEstraiDatiAmazon-NoUpdate')"
|
||||||
|
></q-btn>
|
||||||
<q-btn
|
<q-btn
|
||||||
label="Esporta CSV Dati Mancanti (num.pagine, formato, DataPubbl.)"
|
label="Esporta CSV Dati Mancanti (num.pagine, formato, DataPubbl.)"
|
||||||
color="primary"
|
color="primary"
|
||||||
|
|||||||
@@ -113,6 +113,11 @@ body {
|
|||||||
font-size: calc(20 * var(--scalecatalog) * 1px);
|
font-size: calc(20 * var(--scalecatalog) * 1px);
|
||||||
height: calc(380 * var(--scalecatalog) * 1px);
|
height: calc(380 * var(--scalecatalog) * 1px);
|
||||||
line-height: 130%;
|
line-height: 130%;
|
||||||
|
font-weight: bold;
|
||||||
|
|
||||||
|
padding: 8px;
|
||||||
|
border-radius: 20px;
|
||||||
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.book-text-down {
|
.book-text-down {
|
||||||
@@ -120,12 +125,28 @@ body {
|
|||||||
margin-bottom: calc(5 * var(--scalecatalog) * 1px);
|
margin-bottom: calc(5 * var(--scalecatalog) * 1px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.book-pagina-title {
|
.book-pagina-title, .book-pagina-title-footer {
|
||||||
font-family: 'DINPro', sans-serif;
|
font-family: 'DINPro', sans-serif;
|
||||||
margin-top: calc(20 * var(--scalecatalog) * 1px);
|
margin-top: calc(50 * var(--scalecatalog) * 1px);
|
||||||
margin-bottom: calc(5 * var(--scalecatalog) * 1px);
|
margin-bottom: calc(0 * var(--scalecatalog) * 1px);
|
||||||
font-size: calc(35 * var(--scalecatalog) * 1px);
|
font-size: calc(30 * var(--scalecatalog) * 1px);
|
||||||
height: calc(100 * var(--scalecatalog) * 1px);
|
height: calc(50 * var(--scalecatalog) * 1px);
|
||||||
|
text-transform: uppercase;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.book-pagina-title-footer{
|
||||||
|
font-size: calc(20 * var(--scalecatalog) * 1px) !important;
|
||||||
|
text-transform: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.book-pagina-fondo {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.categories {
|
.categories {
|
||||||
@@ -163,4 +184,4 @@ body {
|
|||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
border-color: #5c8ef4 !important;
|
border-color: #5c8ef4 !important;
|
||||||
box-shadow: 0 0 0 2px rgba(92, 142, 244, 0.3);
|
box-shadow: 0 0 0 2px rgba(92, 142, 244, 0.3);
|
||||||
}
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -178,7 +178,10 @@
|
|||||||
</q-inner-loading>
|
</q-inner-loading>
|
||||||
|
|
||||||
<q-btn
|
<q-btn
|
||||||
v-if="!showListaFiltrata && tools.is"
|
v-if="
|
||||||
|
!showListaFiltrata &&
|
||||||
|
(tools.isEditor() || tools.isCommerciale())
|
||||||
|
"
|
||||||
rounded
|
rounded
|
||||||
icon="fas fa-redo"
|
icon="fas fa-redo"
|
||||||
label="Rigenera Lista"
|
label="Rigenera Lista"
|
||||||
@@ -316,7 +319,11 @@
|
|||||||
</q-tabs>
|
</q-tabs>
|
||||||
|
|
||||||
<CTitleBanner
|
<CTitleBanner
|
||||||
v-show="tabcatalogo === 'visu' && !tools.isUtente() && arrProducts?.length > 0"
|
v-show="
|
||||||
|
tabcatalogo === 'visu' &&
|
||||||
|
!tools.isUtente() &&
|
||||||
|
arrProducts?.length > 0
|
||||||
|
"
|
||||||
class="q-pa-xs"
|
class="q-pa-xs"
|
||||||
title="Genera PDF"
|
title="Genera PDF"
|
||||||
bgcolor="bg-blue"
|
bgcolor="bg-blue"
|
||||||
@@ -352,7 +359,7 @@
|
|||||||
color="positive"
|
color="positive"
|
||||||
></q-btn>
|
></q-btn>
|
||||||
<q-btn
|
<q-btn
|
||||||
v-if="tools.isAdmin() && false"
|
v-if="tools.isAdmin() && true"
|
||||||
label="Debug"
|
label="Debug"
|
||||||
@click="toggleDebug()"
|
@click="toggleDebug()"
|
||||||
:push="optcatalogo.indebug"
|
:push="optcatalogo.indebug"
|
||||||
@@ -867,6 +874,36 @@
|
|||||||
></div>
|
></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- Testo sul footer -->
|
||||||
|
<div
|
||||||
|
v-if="recscheda.scheda?.dimensioni?.pagina?.testo_title"
|
||||||
|
:style="{
|
||||||
|
'--scalecatalog':
|
||||||
|
tools.getScale(optcatalogo),
|
||||||
|
'line-height':
|
||||||
|
recscheda.scheda.dimensioni.pagina
|
||||||
|
?.testo_title?.font.line_height,
|
||||||
|
display: 'flex',
|
||||||
|
flexDirection: 'column',
|
||||||
|
position: 'relative', // Posizionamento assoluto
|
||||||
|
bottom: '8.5%', // Posiziona in basso
|
||||||
|
left: '50%', // Centra orizzontalmente
|
||||||
|
transform: 'translateX(-50%)', // Correzione per centrare perfettamente
|
||||||
|
width: '100%', // Assicura che il contenitore occupi l'intera larghezza
|
||||||
|
textAlign: 'center', // Allinea il testo al centro
|
||||||
|
zIndex: '10', // Assicura che il testo sia visibile sopra altri elementi
|
||||||
|
}"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
v-html="getTitoloPagina(null, optcatalogo.arrSchede[0], true)"
|
||||||
|
></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div v-if="optcatalogo.indebug">
|
||||||
|
IMG:
|
||||||
|
{{ getImgIntroCatalogo(recscheda.scheda) }}
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- Itera sulle righe di ogni pagina -->
|
<!-- Itera sulle righe di ogni pagina -->
|
||||||
<div
|
<div
|
||||||
v-for="(row, rowIndex) in page"
|
v-for="(row, rowIndex) in page"
|
||||||
|
|||||||
@@ -162,19 +162,19 @@ export default defineComponent({
|
|||||||
imagefile = recimg.imagefile!;
|
imagefile = recimg.imagefile!;
|
||||||
fit = recimg.fit! || 'contain';
|
fit = recimg.fit! || 'contain';
|
||||||
imagefile = imagefile
|
imagefile = imagefile
|
||||||
? `url(${tools.getDirUpload() + shared_consts.getDirectoryByTable(shared_consts.TABLES_CATALOG) + '/' + trovatoraccolta._id + '/' + imagefile})`
|
? `url("${tools.getDirUpload() + shared_consts.getDirectoryByTable(shared_consts.TABLES_CATALOG) + '/' + trovatoraccolta._id + '/' + imagefile}")`
|
||||||
: '';
|
: '';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!imagefile) {
|
if (!imagefile) {
|
||||||
let myimg = costanti.CATALOGHI.PAG_SFONDO_DEFAULT;
|
let myimg = costanti.CATALOGHI.PAG_SFONDO_DEFAULT;
|
||||||
// Se non c'è un immagine di sfondo, allora prende quella di default
|
// Se non c'è un immagine di sfondo, allora prende quella di default
|
||||||
imagefile = `url(${tools.getDirUpload() + shared_consts.getDirectoryByTable(shared_consts.TABLES_CATALOG) + '/' + myimg})`;
|
imagefile = `url("${tools.getDirUpload() + shared_consts.getDirectoryByTable(shared_consts.TABLES_CATALOG) + '/' + myimg})"`;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!imagefile && mypage) {
|
if (!imagefile && mypage) {
|
||||||
imagefile = mypage.imgsfondo!.imagefile!;
|
imagefile = mypage.imgsfondo!.imagefile!;
|
||||||
imagefile = imagefile ? `url(${tools.getDirUpload() + costanti.DIR_CATALOGO + imagefile})` : '';
|
imagefile = imagefile ? `url("${tools.getDirUpload() + costanti.DIR_CATALOGO + imagefile}")` : '';
|
||||||
fit = mypage.imgsfondo!.fit!;
|
fit = mypage.imgsfondo!.fit!;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user