update
This commit is contained in:
28
package.json
28
package.json
@@ -12,36 +12,36 @@
|
|||||||
"commit": "git add . && git commit -m 'update' && git push"
|
"commit": "git add . && git commit -m 'update' && git push"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@tinymce/tinymce-vue": "^6.1.0",
|
"@tinymce/tinymce-vue": "^6.3.0",
|
||||||
"axios": "^1.8.4",
|
"axios": "^1.11.0",
|
||||||
"crypto-js": "^4.2.0",
|
"crypto-js": "^4.2.0",
|
||||||
"dayjs": "^1.11.13",
|
"dayjs": "^1.11.13",
|
||||||
"lodash": "^4.17.21",
|
"lodash": "^4.17.21",
|
||||||
"pinia": "^3.0.2",
|
"pinia": "^3.0.3",
|
||||||
"pinia-plugin-persistedstate": "^4.2.0",
|
"pinia-plugin-persistedstate": "^4.5.0",
|
||||||
"plyr": "^3.7.8",
|
"plyr": "^3.7.8",
|
||||||
"qrcode.vue": "^3.6.0",
|
"qrcode.vue": "^3.6.0",
|
||||||
"tinymce": "^7.8.0",
|
"tinymce": "^7.9.1",
|
||||||
"uqrcodejs": "^4.0.7",
|
"uqrcodejs": "^4.0.7",
|
||||||
"uuid": "^11.1.0",
|
"uuid": "^11.1.0",
|
||||||
"vite-plugin-vue-devtools": "^7.7.5",
|
"vite-plugin-vue-devtools": "^7.7.7",
|
||||||
"vue": "^3.5.13",
|
"vue": "3.6.0-alpha.2",
|
||||||
"vue-draggable-plus": "^0.6.0",
|
"vue-draggable-plus": "^0.6.0",
|
||||||
"vue-router": "^4.5.0"
|
"vue-router": "^4.5.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@arco-design/web-vue": "^2.57.0",
|
"@arco-design/web-vue": "^2.57.0",
|
||||||
"@arco-plugins/vite-vue": "^1.4.5",
|
"@arco-plugins/vite-vue": "^1.4.5",
|
||||||
"@types/crypto-js": "^4.2.2",
|
"@types/crypto-js": "^4.2.2",
|
||||||
"@vitejs/plugin-legacy": "^6.1.1",
|
"@vitejs/plugin-legacy": "^6.1.1",
|
||||||
"@vitejs/plugin-vue": "^5.2.3",
|
"@vitejs/plugin-vue": "^5.2.4",
|
||||||
"rollup-plugin-visualizer": "^5.14.0",
|
"rollup-plugin-visualizer": "^5.14.0",
|
||||||
"sass": "^1.86.3",
|
"sass": "^1.90.0",
|
||||||
"tailwindcss": "^3.4.17",
|
"tailwindcss": "^3.4.17",
|
||||||
"unplugin-auto-import": "^19.1.2",
|
"unplugin-auto-import": "^19.3.0",
|
||||||
"unplugin-vue-components": "^28.5.0",
|
"unplugin-vue-components": "^28.8.0",
|
||||||
"vite": "^6.3.2",
|
"vite": "^6.3.5",
|
||||||
"vite-plugin-bundle-obfuscator": "^1.5.0",
|
"vite-plugin-bundle-obfuscator": "^1.8.0",
|
||||||
"vite-plugin-compression": "^0.5.1"
|
"vite-plugin-compression": "^0.5.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
2810
pnpm-lock.yaml
generated
2810
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@@ -63,9 +63,11 @@ const getChooseContent = async (req) => {
|
|||||||
:wrapper-col-props="{span: 12, offset: 1}">
|
:wrapper-col-props="{span: 12, offset: 1}">
|
||||||
<a-form-item field="retention_time" label="保留时间" extra="达人发布成功后,该内容需要保留多久才可删除">
|
<a-form-item field="retention_time" label="保留时间" extra="达人发布成功后,该内容需要保留多久才可删除">
|
||||||
<a-input-number
|
<a-input-number
|
||||||
|
:precision="2"
|
||||||
v-model:model-value="form.retention_time"
|
v-model:model-value="form.retention_time"
|
||||||
placeholder="请输入保留时间"
|
placeholder="请输入保留时间"
|
||||||
:min="1"
|
:max="60"
|
||||||
|
:min="0.01"
|
||||||
></a-input-number>
|
></a-input-number>
|
||||||
<a-radio-group v-model:model-value="form.retention_type" type="button" class="ml-[10px] flex-shrink-0">
|
<a-radio-group v-model:model-value="form.retention_type" type="button" class="ml-[10px] flex-shrink-0">
|
||||||
<a-radio :value="1">分钟</a-radio>
|
<a-radio :value="1">分钟</a-radio>
|
||||||
@@ -74,8 +76,12 @@ const getChooseContent = async (req) => {
|
|||||||
</a-form-item>
|
</a-form-item>
|
||||||
|
|
||||||
<a-form-item field="check_time" label="审核时间" extra="商家收到每次回填后,多长时间内审核">
|
<a-form-item field="check_time" label="审核时间" extra="商家收到每次回填后,多长时间内审核">
|
||||||
<a-input-number v-model:model-value="form.check_time" placeholder="请输入保留时间" :min="1"
|
<a-input-number
|
||||||
:max="60"></a-input-number>
|
v-model:model-value="form.check_time"
|
||||||
|
placeholder="请输入保留时间"
|
||||||
|
:precision="2"
|
||||||
|
:min="0.01"
|
||||||
|
:max="60"></a-input-number>
|
||||||
<a-radio-group v-model:model-value="form.check_type" type="button" class="ml-[10px] flex-shrink-0">
|
<a-radio-group v-model:model-value="form.check_type" type="button" class="ml-[10px] flex-shrink-0">
|
||||||
<a-radio :value="1">分钟</a-radio>
|
<a-radio :value="1">分钟</a-radio>
|
||||||
<a-radio :value="2">小时</a-radio>
|
<a-radio :value="2">小时</a-radio>
|
||||||
|
|||||||
Reference in New Issue
Block a user