|
@@ -12,113 +12,117 @@
|
|
<el-form label-position="top">
|
|
<el-form label-position="top">
|
|
<el-form-item clearable label="品类">
|
|
<el-form-item clearable label="品类">
|
|
<el-radio-group v-model="formData.product" @change="getTypeName()">
|
|
<el-radio-group v-model="formData.product" @change="getTypeName()">
|
|
- <el-radio-button v-for="item in typeGroup" :label="item.value" :key="item.value">{{ item.label }}</el-radio-button>
|
|
|
|
|
|
+ <el-radio-button v-for="item in typeGroup" :label="item.value" :key="item.value">{{
|
|
|
|
+ item.label
|
|
|
|
+ }}
|
|
|
|
+ </el-radio-button>
|
|
</el-radio-group>
|
|
</el-radio-group>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<el-form-item clearable label="自定义关键词">
|
|
<el-form-item clearable label="自定义关键词">
|
|
<el-input
|
|
<el-input
|
|
- type="textarea"
|
|
|
|
- clearable
|
|
|
|
- :rows="5"
|
|
|
|
- show-word-limit
|
|
|
|
- maxlength="2000"
|
|
|
|
- placeholder="示范:手持吸尘器、翡翠吊坠"
|
|
|
|
- v-model="formData.description" />
|
|
|
|
|
|
+ type="textarea"
|
|
|
|
+ clearable
|
|
|
|
+ :rows="5"
|
|
|
|
+ show-word-limit
|
|
|
|
+ maxlength="2000"
|
|
|
|
+ placeholder="示范:手持吸尘器、翡翠吊坠"
|
|
|
|
+ v-model="formData.description"/>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<el-form-item label="类别">
|
|
<el-form-item label="类别">
|
|
- <el-select class="wid100" style="width:200px" v-model="formData.category" filterable clearable :multiple="formData.product == 'jewelry'" placeholder="请选择">
|
|
|
|
|
|
+ <el-select class="wid100" style="width:200px" v-model="formData.category" filterable clearable
|
|
|
|
+ :multiple="formData.product == 'jewelry'" placeholder="请选择">
|
|
<el-option
|
|
<el-option
|
|
- v-for="item in categoryList"
|
|
|
|
- :key="item.value"
|
|
|
|
- :label="item.label"
|
|
|
|
- :value="item.value" />
|
|
|
|
|
|
+ v-for="item in categoryList"
|
|
|
|
+ :key="item.value"
|
|
|
|
+ :label="item.label"
|
|
|
|
+ :value="item.value"/>
|
|
</el-select>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<template v-if="formData.product == 'jewelry'">
|
|
<template v-if="formData.product == 'jewelry'">
|
|
- <el-row :gutter="20">
|
|
|
|
- <el-col :span="8">
|
|
|
|
- <el-form-item label="适用场景">
|
|
|
|
- <el-select v-model="formData.scene" clearable filterable placeholder="请选择">
|
|
|
|
- <el-option
|
|
|
|
- v-for="item in useScenelist"
|
|
|
|
- :key="item.value"
|
|
|
|
- :label="item.label"
|
|
|
|
- :value="item.value" />
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :span="8">
|
|
|
|
- <el-form-item label="工艺">
|
|
|
|
- <el-select v-model="formData.workmanship" clearable filterable placeholder="请选择">
|
|
|
|
- <el-option
|
|
|
|
- v-for="item in technologyList"
|
|
|
|
- :key="item.value"
|
|
|
|
- :label="item.label"
|
|
|
|
- :value="item.value" />
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :span="8">
|
|
|
|
- <el-form-item label="图案造型">
|
|
|
|
- <el-select v-model="formData.pattern" clearable filterable placeholder="请选择">
|
|
|
|
- <el-option
|
|
|
|
- v-for="item in imageTypeList"
|
|
|
|
- :key="item.value"
|
|
|
|
- :label="item.label"
|
|
|
|
- :value="item.value" />
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- </el-row>
|
|
|
|
- <el-row :gutter="20">
|
|
|
|
- <el-col :span="8">
|
|
|
|
- <el-form-item label="款式">
|
|
|
|
- <el-select v-model="formData.modeling" clearable filterable placeholder="请选择">
|
|
|
|
- <el-option
|
|
|
|
- v-for="item in styleList"
|
|
|
|
- :key="item.value"
|
|
|
|
- :label="item.label"
|
|
|
|
- :value="item.value" />
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :span="8">
|
|
|
|
- <el-form-item label="主材质">
|
|
|
|
- <el-select v-model="formData.mainMaterial" clearable filterable placeholder="请选择">
|
|
|
|
- <el-option
|
|
|
|
- v-for="item in mainMaterialList"
|
|
|
|
- :key="item.value"
|
|
|
|
- :label="item.label"
|
|
|
|
- :value="item.value" />
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :span="8">
|
|
|
|
- <el-form-item label="镶嵌材质">
|
|
|
|
- <el-select v-model="formData.studdedMaterial" clearable filterable placeholder="请选择">
|
|
|
|
- <el-option
|
|
|
|
- v-for="item in mosaicMaterial"
|
|
|
|
- :key="item.value"
|
|
|
|
- :label="item.label"
|
|
|
|
- :value="item.value" />
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- </el-row>
|
|
|
|
- <el-row :gutter="20">
|
|
|
|
- <el-col :span="12">
|
|
|
|
- <el-form-item label="风格">
|
|
|
|
- <el-select v-model="formData.region" filterable clearable placeholder="请选择">
|
|
|
|
- <el-option
|
|
|
|
- v-for="item in styleColorList"
|
|
|
|
- :key="item.value"
|
|
|
|
- :label="item.label"
|
|
|
|
- :value="item.value" />
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- </el-row>
|
|
|
|
- </template>
|
|
|
|
|
|
+ <el-row :gutter="20">
|
|
|
|
+ <el-col :span="8">
|
|
|
|
+ <el-form-item label="适用场景">
|
|
|
|
+ <el-select v-model="formData.scene" clearable filterable placeholder="请选择">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="item in useScenelist"
|
|
|
|
+ :key="item.value"
|
|
|
|
+ :label="item.label"
|
|
|
|
+ :value="item.value"/>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="8">
|
|
|
|
+ <el-form-item label="工艺">
|
|
|
|
+ <el-select v-model="formData.workmanship" clearable filterable placeholder="请选择">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="item in technologyList"
|
|
|
|
+ :key="item.value"
|
|
|
|
+ :label="item.label"
|
|
|
|
+ :value="item.value"/>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="8">
|
|
|
|
+ <el-form-item label="图案造型">
|
|
|
|
+ <el-select v-model="formData.pattern" clearable filterable placeholder="请选择">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="item in imageTypeList"
|
|
|
|
+ :key="item.value"
|
|
|
|
+ :label="item.label"
|
|
|
|
+ :value="item.value"/>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-row>
|
|
|
|
+ <el-row :gutter="20">
|
|
|
|
+ <el-col :span="8">
|
|
|
|
+ <el-form-item label="款式">
|
|
|
|
+ <el-select v-model="formData.modeling" clearable filterable placeholder="请选择">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="item in styleList"
|
|
|
|
+ :key="item.value"
|
|
|
|
+ :label="item.label"
|
|
|
|
+ :value="item.value"/>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="8">
|
|
|
|
+ <el-form-item label="主材质">
|
|
|
|
+ <el-select v-model="formData.mainMaterial" clearable filterable placeholder="请选择">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="item in mainMaterialList"
|
|
|
|
+ :key="item.value"
|
|
|
|
+ :label="item.label"
|
|
|
|
+ :value="item.value"/>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="8">
|
|
|
|
+ <el-form-item label="镶嵌材质">
|
|
|
|
+ <el-select v-model="formData.studdedMaterial" clearable filterable placeholder="请选择">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="item in mosaicMaterial"
|
|
|
|
+ :key="item.value"
|
|
|
|
+ :label="item.label"
|
|
|
|
+ :value="item.value"/>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-row>
|
|
|
|
+ <el-row :gutter="20">
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="风格">
|
|
|
|
+ <el-select v-model="formData.region" filterable clearable placeholder="请选择">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="item in styleColorList"
|
|
|
|
+ :key="item.value"
|
|
|
|
+ :label="item.label"
|
|
|
|
+ :value="item.value"/>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-row>
|
|
|
|
+ </template>
|
|
</el-form>
|
|
</el-form>
|
|
</div>
|
|
</div>
|
|
<div class="head-title">
|
|
<div class="head-title">
|
|
@@ -130,7 +134,8 @@
|
|
</div>
|
|
</div>
|
|
<el-row :gutter="20">
|
|
<el-row :gutter="20">
|
|
<el-col :span="6" v-for="item in imageScaleList" :key="item.size">
|
|
<el-col :span="6" v-for="item in imageScaleList" :key="item.size">
|
|
- <div class="scale-item center-center" :class="{active: formData.sizeStyle === item.value}" @click="onGetScalc(item)">
|
|
|
|
|
|
+ <div class="scale-item center-center" :class="{active: formData.sizeStyle === item.value}"
|
|
|
|
+ @click="onGetScalc(item)">
|
|
<div>
|
|
<div>
|
|
<div class="scale">{{ item.size }}</div>
|
|
<div class="scale">{{ item.size }}</div>
|
|
<!-- <div class="scale scale-name">{{ item.label }}</div> -->
|
|
<!-- <div class="scale scale-name">{{ item.label }}</div> -->
|
|
@@ -169,36 +174,37 @@
|
|
</div>
|
|
</div>
|
|
<div class="slider-demo-block flex">
|
|
<div class="slider-demo-block flex">
|
|
<el-slider
|
|
<el-slider
|
|
- :min="1"
|
|
|
|
- :max="30"
|
|
|
|
- :step="1"
|
|
|
|
- show-stops v-model="formData.creativity" />
|
|
|
|
- <div class="slider-input">
|
|
|
|
- <el-input-number
|
|
|
|
- v-model="formData.creativity"
|
|
|
|
:min="1"
|
|
:min="1"
|
|
:max="30"
|
|
:max="30"
|
|
- class="mx-4"
|
|
|
|
- controls-position="right"
|
|
|
|
|
|
+ :step="1"
|
|
|
|
+ show-stops v-model="formData.creativity"/>
|
|
|
|
+ <div class="slider-input">
|
|
|
|
+ <el-input-number
|
|
|
|
+ v-model="formData.creativity"
|
|
|
|
+ :min="1"
|
|
|
|
+ :max="30"
|
|
|
|
+ class="mx-4"
|
|
|
|
+ controls-position="right"
|
|
/>
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
- <!-- <div class="silder-item">
|
|
|
|
|
|
+ <div class="silder-item">
|
|
<div class="tips">今日剩余额度 <b>{{ state.user.quota }}</b></div>
|
|
<div class="tips">今日剩余额度 <b>{{ state.user.quota }}</b></div>
|
|
- </div> -->
|
|
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="s-footer center-center">
|
|
<div class="s-footer center-center">
|
|
- <el-button size="large" class="btn-wid" type="primary" :loading="loading" @click="creatTask">开始生成</el-button>
|
|
|
|
|
|
+ <el-button size="large" class="btn-wid" type="primary" :loading="loading" @click="creatTask">开始生成
|
|
|
|
+ </el-button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</el-scrollbar>
|
|
</el-scrollbar>
|
|
</template>
|
|
</template>
|
|
<script setup>
|
|
<script setup>
|
|
-import { ref, reactive, onMounted, getCurrentInstance, watch } from 'vue'
|
|
|
|
-import { useStore } from 'vuex'
|
|
|
|
-import { ElMessage } from 'element-plus'
|
|
|
|
|
|
+import {ref, reactive, onMounted, getCurrentInstance, watch} from 'vue'
|
|
|
|
+import {useStore} from 'vuex'
|
|
|
|
+import {ElMessage} from 'element-plus'
|
|
import emitter from '@/utils/bus'
|
|
import emitter from '@/utils/bus'
|
|
import {
|
|
import {
|
|
typeList,
|
|
typeList,
|
|
@@ -219,19 +225,20 @@ import {
|
|
rechargeableToothbrush, //电动牙刷
|
|
rechargeableToothbrush, //电动牙刷
|
|
laptopComputer, // 笔记本电脑
|
|
laptopComputer, // 笔记本电脑
|
|
} from '@/utils/formEnum'
|
|
} from '@/utils/formEnum'
|
|
-import { postCreatTask } from '@/network/api/user'
|
|
|
|
|
|
+import {postCreatTask} from '@/network/api/user'
|
|
|
|
+
|
|
const internalInstance = getCurrentInstance()
|
|
const internalInstance = getCurrentInstance()
|
|
const props = defineProps({
|
|
const props = defineProps({
|
|
taskDetail: Object
|
|
taskDetail: Object
|
|
})
|
|
})
|
|
|
|
|
|
-let { state, dispatch } = useStore()
|
|
|
|
|
|
+let {state, dispatch} = useStore()
|
|
|
|
|
|
let loading = ref(false)
|
|
let loading = ref(false)
|
|
const rainGroup = ref([
|
|
const rainGroup = ref([
|
|
- { label: '2048:2048', value: 1 },
|
|
|
|
- { label: '4096:4096', value: 2 },
|
|
|
|
- { label: '1636:1536', value: 3 },
|
|
|
|
|
|
+ {label: '2048:2048', value: 1},
|
|
|
|
+ {label: '4096:4096', value: 2},
|
|
|
|
+ {label: '1636:1536', value: 3},
|
|
])
|
|
])
|
|
let categoryList = ref([])
|
|
let categoryList = ref([])
|
|
let formData = ref({
|
|
let formData = ref({
|
|
@@ -249,11 +256,13 @@ let formData = ref({
|
|
size: 1,
|
|
size: 1,
|
|
creativity: 7
|
|
creativity: 7
|
|
})
|
|
})
|
|
|
|
+
|
|
function getTypeName() {
|
|
function getTypeName() {
|
|
- let type = formData.value.product
|
|
|
|
- formData.value.category = ''
|
|
|
|
|
|
+ let type = formData.value.product;
|
|
|
|
+ formData.value.category = '';
|
|
setData(type)
|
|
setData(type)
|
|
}
|
|
}
|
|
|
|
+
|
|
function setData(type) {
|
|
function setData(type) {
|
|
if (type === 'jewelry') { // 珠宝
|
|
if (type === 'jewelry') { // 珠宝
|
|
categoryList.value = typeList
|
|
categoryList.value = typeList
|
|
@@ -271,22 +280,40 @@ function setData(type) {
|
|
categoryList.value = []
|
|
categoryList.value = []
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-function onGetScalc (item) {
|
|
|
|
|
|
+
|
|
|
|
+function onGetScalc(item) {
|
|
formData.value.sizeStyle = item.value
|
|
formData.value.sizeStyle = item.value
|
|
internalInstance.ctx.$forceUpdate()
|
|
internalInstance.ctx.$forceUpdate()
|
|
}
|
|
}
|
|
-function onGetSize (item) {
|
|
|
|
|
|
+
|
|
|
|
+function onGetSize(item) {
|
|
formData.size = item.value
|
|
formData.size = item.value
|
|
internalInstance.ctx.$forceUpdate()
|
|
internalInstance.ctx.$forceUpdate()
|
|
}
|
|
}
|
|
-function onSetRatin (item) {
|
|
|
|
|
|
+
|
|
|
|
+function onSetRatin(item) {
|
|
formData.value.size = item.value
|
|
formData.value.size = item.value
|
|
internalInstance.ctx.$forceUpdate()
|
|
internalInstance.ctx.$forceUpdate()
|
|
}
|
|
}
|
|
|
|
+
|
|
// 创建任务
|
|
// 创建任务
|
|
const creatTask = async () => {
|
|
const creatTask = async () => {
|
|
// console.log(formData.value)
|
|
// console.log(formData.value)
|
|
- const { description, category, scene, workmanship, pattern, modeling, mainMaterial, studdedMaterial, style, sizeStyle, size, creativity, product } = formData.value
|
|
|
|
|
|
+ const {
|
|
|
|
+ description,
|
|
|
|
+ category,
|
|
|
|
+ scene,
|
|
|
|
+ workmanship,
|
|
|
|
+ pattern,
|
|
|
|
+ modeling,
|
|
|
|
+ mainMaterial,
|
|
|
|
+ studdedMaterial,
|
|
|
|
+ style,
|
|
|
|
+ sizeStyle,
|
|
|
|
+ size,
|
|
|
|
+ creativity,
|
|
|
|
+ product
|
|
|
|
+ } = formData.value
|
|
let param = {
|
|
let param = {
|
|
product,
|
|
product,
|
|
description,
|
|
description,
|
|
@@ -302,9 +329,16 @@ const creatTask = async () => {
|
|
size,
|
|
size,
|
|
creativity
|
|
creativity
|
|
}
|
|
}
|
|
- if (product != 'jewelry') {
|
|
|
|
|
|
+ if (product !== 'jewelry') {
|
|
param.category = [category]
|
|
param.category = [category]
|
|
|
|
+ } else {
|
|
|
|
+ console.log(param.category)
|
|
|
|
+ if (param.category === null || param.category === "") {
|
|
|
|
+ param.category = [];
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+
|
|
loading.value = true
|
|
loading.value = true
|
|
try {
|
|
try {
|
|
const res = await postCreatTask(param)
|
|
const res = await postCreatTask(param)
|
|
@@ -314,21 +348,21 @@ const creatTask = async () => {
|
|
ElMessage.success(res.message)
|
|
ElMessage.success(res.message)
|
|
dispatch('user/getInfo')
|
|
dispatch('user/getInfo')
|
|
}
|
|
}
|
|
- }catch(err) {
|
|
|
|
|
|
+ } catch (err) {
|
|
loading.value = false
|
|
loading.value = false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// const isPage = ref(false)
|
|
// const isPage = ref(false)
|
|
watch(() => props.taskDetail, (newVal) => {
|
|
watch(() => props.taskDetail, (newVal) => {
|
|
- if (newVal) {
|
|
|
|
- setData(newVal.task.product)
|
|
|
|
- Object.assign(formData.value, newVal.task)
|
|
|
|
- if (newVal.task.product != 'jewelry') {
|
|
|
|
- formData.value.category = newVal.task.category.join('')
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- { deep: true }
|
|
|
|
|
|
+ if (newVal) {
|
|
|
|
+ setData(newVal.task.product)
|
|
|
|
+ Object.assign(formData.value, newVal.task)
|
|
|
|
+ if (newVal.task.product != 'jewelry') {
|
|
|
|
+ formData.value.category = newVal.task.category.join('')
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {deep: true}
|
|
)
|
|
)
|
|
onMounted(() => {
|
|
onMounted(() => {
|
|
if (JSON.stringify(props.taskDetail.task) != '{}') {
|
|
if (JSON.stringify(props.taskDetail.task) != '{}') {
|
|
@@ -342,16 +376,20 @@ onMounted(() => {
|
|
padding-left: 22px;
|
|
padding-left: 22px;
|
|
padding-right: 32px;
|
|
padding-right: 32px;
|
|
}
|
|
}
|
|
|
|
+
|
|
.sub-title {
|
|
.sub-title {
|
|
padding-top: 12px;
|
|
padding-top: 12px;
|
|
padding-bottom: 14px;
|
|
padding-bottom: 14px;
|
|
}
|
|
}
|
|
|
|
+
|
|
.slider-input {
|
|
.slider-input {
|
|
padding-left: 10px;
|
|
padding-left: 10px;
|
|
}
|
|
}
|
|
|
|
+
|
|
.wid100 {
|
|
.wid100 {
|
|
width: 100%;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
+
|
|
.scale-item {
|
|
.scale-item {
|
|
width: 100%;
|
|
width: 100%;
|
|
height: 54px;
|
|
height: 54px;
|
|
@@ -360,6 +398,7 @@ onMounted(() => {
|
|
border-radius: 10px;
|
|
border-radius: 10px;
|
|
border-width: 2px;
|
|
border-width: 2px;
|
|
text-align: center;
|
|
text-align: center;
|
|
|
|
+
|
|
.scale-text {
|
|
.scale-text {
|
|
font-size: 12px;
|
|
font-size: 12px;
|
|
line-height: 20px;
|
|
line-height: 20px;
|
|
@@ -369,18 +408,22 @@ onMounted(() => {
|
|
&:hover {
|
|
&:hover {
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
+
|
|
&.active {
|
|
&.active {
|
|
border-style: solid;
|
|
border-style: solid;
|
|
border-color: #4A0DA3;
|
|
border-color: #4A0DA3;
|
|
}
|
|
}
|
|
|
|
+
|
|
.scale {
|
|
.scale {
|
|
font-size: 14px;
|
|
font-size: 14px;
|
|
color: var(--page-textsub-color);
|
|
color: var(--page-textsub-color);
|
|
}
|
|
}
|
|
|
|
+
|
|
.scale-name {
|
|
.scale-name {
|
|
margin-top: 5px;
|
|
margin-top: 5px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
.silder-item {
|
|
.silder-item {
|
|
.tips {
|
|
.tips {
|
|
padding-top: 20px;
|
|
padding-top: 20px;
|
|
@@ -389,11 +432,13 @@ onMounted(() => {
|
|
color: #fc011a;
|
|
color: #fc011a;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
.s-footer {
|
|
.s-footer {
|
|
margin-top: 40px;
|
|
margin-top: 40px;
|
|
padding-top: 23px;
|
|
padding-top: 23px;
|
|
padding-bottom: 28px;
|
|
padding-bottom: 28px;
|
|
border-top: 1px solid var(--page-border-color);
|
|
border-top: 1px solid var(--page-border-color);
|
|
|
|
+
|
|
.btn-wid {
|
|
.btn-wid {
|
|
width: 328px;
|
|
width: 328px;
|
|
}
|
|
}
|