fix
This commit is contained in:
11
components.d.ts
vendored
11
components.d.ts
vendored
@@ -9,20 +9,31 @@ export {}
|
|||||||
declare module 'vue' {
|
declare module 'vue' {
|
||||||
export interface GlobalComponents {
|
export interface GlobalComponents {
|
||||||
ABadge: typeof import('ant-design-vue/es')['Badge']
|
ABadge: typeof import('ant-design-vue/es')['Badge']
|
||||||
|
ABreadcrumb: typeof import('ant-design-vue/es')['Breadcrumb']
|
||||||
ACheckbox: typeof import('ant-design-vue/es')['Checkbox']
|
ACheckbox: typeof import('ant-design-vue/es')['Checkbox']
|
||||||
|
ADatePicker: typeof import('ant-design-vue/es')['DatePicker']
|
||||||
ADrawer: typeof import('ant-design-vue/es')['Drawer']
|
ADrawer: typeof import('ant-design-vue/es')['Drawer']
|
||||||
AImage: typeof import('ant-design-vue/es')['Image']
|
AImage: typeof import('ant-design-vue/es')['Image']
|
||||||
AInputNumber: typeof import('ant-design-vue/es')['InputNumber']
|
AInputNumber: typeof import('ant-design-vue/es')['InputNumber']
|
||||||
|
AMenu: typeof import('ant-design-vue/es')['Menu']
|
||||||
|
AMenuItem: typeof import('ant-design-vue/es')['MenuItem']
|
||||||
AModal: typeof import('ant-design-vue/es')['Modal']
|
AModal: typeof import('ant-design-vue/es')['Modal']
|
||||||
|
APagination: typeof import('ant-design-vue/es')['Pagination']
|
||||||
APopover: typeof import('ant-design-vue/es')['Popover']
|
APopover: typeof import('ant-design-vue/es')['Popover']
|
||||||
ARangePicker: typeof import('ant-design-vue/es')['RangePicker']
|
ARangePicker: typeof import('ant-design-vue/es')['RangePicker']
|
||||||
ASelect: typeof import('ant-design-vue/es')['Select']
|
ASelect: typeof import('ant-design-vue/es')['Select']
|
||||||
ASelectOption: typeof import('ant-design-vue/es')['SelectOption']
|
ASelectOption: typeof import('ant-design-vue/es')['SelectOption']
|
||||||
ASlider: typeof import('ant-design-vue/es')['Slider']
|
ASlider: typeof import('ant-design-vue/es')['Slider']
|
||||||
|
ASpace: typeof import('ant-design-vue/es')['Space']
|
||||||
ASpin: typeof import('ant-design-vue/es')['Spin']
|
ASpin: typeof import('ant-design-vue/es')['Spin']
|
||||||
|
ASubMenu: typeof import('ant-design-vue/es')['SubMenu']
|
||||||
ASwitch: typeof import('ant-design-vue/es')['Switch']
|
ASwitch: typeof import('ant-design-vue/es')['Switch']
|
||||||
ATable: typeof import('ant-design-vue/es')['Table']
|
ATable: typeof import('ant-design-vue/es')['Table']
|
||||||
|
ATabPane: typeof import('ant-design-vue/es')['TabPane']
|
||||||
|
ATabs: typeof import('ant-design-vue/es')['Tabs']
|
||||||
|
ATimeRangePicker: typeof import('ant-design-vue/es')['TimeRangePicker']
|
||||||
AUpload: typeof import('ant-design-vue/es')['Upload']
|
AUpload: typeof import('ant-design-vue/es')['Upload']
|
||||||
|
ElCascader: typeof import('element-plus/es')['ElCascader']
|
||||||
RouterLink: typeof import('vue-router')['RouterLink']
|
RouterLink: typeof import('vue-router')['RouterLink']
|
||||||
RouterView: typeof import('vue-router')['RouterView']
|
RouterView: typeof import('vue-router')['RouterView']
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1001,7 +1001,7 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
transform: translate(100%, -100%);
|
transform: translate(100%, -50%);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
width: calc(4rem*1.2);
|
width: calc(4rem*1.2);
|
||||||
height: calc(4rem*1.2);
|
height: calc(4rem*1.2);
|
||||||
|
|||||||
@@ -1093,7 +1093,7 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
transform: translate(100%, -100%);
|
transform: translate(100%, -50%);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
width: calc(4rem*1.2);
|
width: calc(4rem*1.2);
|
||||||
height: calc(4rem*1.2);
|
height: calc(4rem*1.2);
|
||||||
|
|||||||
@@ -137,7 +137,7 @@
|
|||||||
<div class="content" v-show="speedState && scene?.value != 'extract'">
|
<div class="content" v-show="speedState && scene?.value != 'extract'">
|
||||||
<div v-for="item in speedList"
|
<div v-for="item in speedList"
|
||||||
v-show="(type_.type2 == 'Moodboard' && item?.value != 'flux') ||
|
v-show="(type_.type2 == 'Moodboard' && item?.value != 'flux') ||
|
||||||
(type_.type2 == 'Sketchboard' && item?.value != 'flux') ||
|
(type_.type2 == 'Sketchboard' && item?.value != 'flux' && item?.value != 'high') ||
|
||||||
(type_.type2 == 'Printboard' && item?.value != 'wx')"
|
(type_.type2 == 'Printboard' && item?.value != 'wx')"
|
||||||
:key="item.value" :class="{active:item.value == speedData.value}" @click.stop="setSpeed(item)" :title="item.title">{{ item.label }}</div>
|
:key="item.value" :class="{active:item.value == speedData.value}" @click.stop="setSpeed(item)" :title="item.title">{{ item.label }}</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -314,7 +314,7 @@ export default defineComponent({
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
price: "500",
|
price: "500",
|
||||||
sellWell: true,
|
sellWell: false,
|
||||||
activity: false, //活动打折
|
activity: false, //活动打折
|
||||||
type: {
|
type: {
|
||||||
value: "Month",
|
value: "Month",
|
||||||
@@ -337,7 +337,7 @@ export default defineComponent({
|
|||||||
value: "Year",
|
value: "Year",
|
||||||
label: computed(()=>t("Renew.Yearly")),
|
label: computed(()=>t("Renew.Yearly")),
|
||||||
},
|
},
|
||||||
PaymentType: "",
|
PaymentType: "CreditCard",
|
||||||
promotionData: {
|
promotionData: {
|
||||||
code: "",
|
code: "",
|
||||||
error: "",
|
error: "",
|
||||||
|
|||||||
@@ -195,7 +195,7 @@ export default defineComponent({
|
|||||||
};
|
};
|
||||||
const cancelDsign = () => {
|
const cancelDsign = () => {
|
||||||
payMethod.payMethodModel = false;
|
payMethod.payMethodModel = false;
|
||||||
store.dispatch('getLangType')
|
if(prop.type != 'credits')store.dispatch('getUserDetail')
|
||||||
};
|
};
|
||||||
const payAffirm = () => {
|
const payAffirm = () => {
|
||||||
if (!payMethodData.clause) {
|
if (!payMethodData.clause) {
|
||||||
|
|||||||
@@ -1283,7 +1283,7 @@ export default {
|
|||||||
changeBackground:'Change the background',
|
changeBackground:'Change the background',
|
||||||
toproductFlus:'Premium',
|
toproductFlus:'Premium',
|
||||||
toproductBasic:'Basic',
|
toproductBasic:'Basic',
|
||||||
generateWx:'High',
|
generateWx:'Premium',
|
||||||
generateFlux:'Advanced',
|
generateFlux:'Advanced',
|
||||||
generateNormal:'Normal',
|
generateNormal:'Normal',
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -31,6 +31,7 @@ let httpIp = import.meta.env.VITE_USER_NODE_ENV == 'development' ? "" : "";
|
|||||||
axios.defaults.baseURL = httpIp; //配置接口地址
|
axios.defaults.baseURL = httpIp; //配置接口地址
|
||||||
// console.log(axios.defaults.baseURL);
|
// console.log(axios.defaults.baseURL);
|
||||||
axios.defaults.baseURL = import.meta.env.VITE_APP_BASE_URL; //配置接口地址
|
axios.defaults.baseURL = import.meta.env.VITE_APP_BASE_URL; //配置接口地址
|
||||||
|
console.log(import.meta.env.VITE_APP_BASE_URL)
|
||||||
|
|
||||||
// 创建取消令牌
|
// 创建取消令牌
|
||||||
const CancelToken = axios.CancelToken;
|
const CancelToken = axios.CancelToken;
|
||||||
|
|||||||
@@ -118,7 +118,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="segmentation"></div>
|
<div class="segmentation"></div>
|
||||||
<div v-if="userDetail.systemUser != 0 || userDetail.systemUser == 3" @click="openUpgradeToPro" class="gallery_btn gallery_btn_radius" style="width: 100%;display: flex;justify-content: center;align-items: center;">
|
<div v-if="userDetail.systemUser != 0 || userDetail.systemUser != 3" @click="openUpgradeToPro" class="gallery_btn gallery_btn_radius" style="width: 100%;display: flex;justify-content: center;align-items: center;">
|
||||||
|
|
||||||
<i class="fi fi-br-dollar" style="margin-right: .6rem;display: flex;"></i>
|
<i class="fi fi-br-dollar" style="margin-right: .6rem;display: flex;"></i>
|
||||||
{{$t('Header.openUpgrade')}}
|
{{$t('Header.openUpgrade')}}
|
||||||
@@ -1606,7 +1606,6 @@ export default defineComponent({
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
img{
|
img{
|
||||||
background: #000;
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
object-fit: cover;
|
object-fit: cover;
|
||||||
|
|||||||
@@ -218,9 +218,9 @@ export default defineComponent({
|
|||||||
|
|
||||||
if(filter.isShowMark && !filter.isNoData)return
|
if(filter.isShowMark && !filter.isNoData)return
|
||||||
filter.isShowMark = true
|
filter.isShowMark = true
|
||||||
if(prop.otherUsers){
|
// if(prop.otherUsers){
|
||||||
data.accountId = store.state.UserHabit.userDetail.userId
|
data.accountId = store.state.UserHabit.userDetail.userId
|
||||||
}
|
// }
|
||||||
Https.axiosPost(Https.httpUrls.getPorfolio, data)
|
Https.axiosPost(Https.httpUrls.getPorfolio, data)
|
||||||
.then((rv) => {
|
.then((rv) => {
|
||||||
if(data.page == 1 && rv.content.length == 0){
|
if(data.page == 1 && rv.content.length == 0){
|
||||||
|
|||||||
@@ -436,7 +436,7 @@
|
|||||||
<div class="content" v-if="scene?.value != 'extract'" v-show="speedState">
|
<div class="content" v-if="scene?.value != 'extract'" v-show="speedState">
|
||||||
<div v-for="item in speedList" :class="{active:item.value == speedData.value}"
|
<div v-for="item in speedList" :class="{active:item.value == speedData.value}"
|
||||||
v-show="(selectCode == 'Moodboard' && item?.value != 'flux') ||
|
v-show="(selectCode == 'Moodboard' && item?.value != 'flux') ||
|
||||||
(selectCode == 'Sketchboard' && item?.value != 'flux') ||
|
(selectCode == 'Sketchboard' && item?.value != 'flux' && item?.value != 'high') ||
|
||||||
(selectCode == 'Printboard' && item?.value != 'wx')"
|
(selectCode == 'Printboard' && item?.value != 'wx')"
|
||||||
:key="item.value" @click.stop="setSpeed(item)" :title="item.title">{{ item.label }}</div>
|
:key="item.value" @click.stop="setSpeed(item)" :title="item.title">{{ item.label }}</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user