mirror of
https://github.com/Tencent/tdesign-vue-next-starter.git
synced 2024-12-23 09:06:48 +08:00
refactor(setup): use setup script
This commit is contained in:
parent
c02c4117a0
commit
e3055c16b6
|
@ -1,15 +0,0 @@
|
||||||
# 选择一个 Base 镜像
|
|
||||||
FROM node:16
|
|
||||||
|
|
||||||
# 设置工作目录
|
|
||||||
WORKDIR /space
|
|
||||||
|
|
||||||
# 将 by 中的文件列表 COPY 过来
|
|
||||||
COPY . .
|
|
||||||
|
|
||||||
# 根据 COPY 过来的文件进行依赖的安装
|
|
||||||
RUN npm i
|
|
||||||
|
|
||||||
# 设置好需要的环境变量
|
|
||||||
ENV NODE_PATH=/space/node_modules
|
|
||||||
|
|
|
@ -1,20 +0,0 @@
|
||||||
server {
|
|
||||||
if ($request_method = HEAD) {
|
|
||||||
return 200;
|
|
||||||
}
|
|
||||||
|
|
||||||
location / {
|
|
||||||
alias /usr/share/nginx/html/;
|
|
||||||
index index.html index.htm;
|
|
||||||
try_files $uri $uri/ /index.html;
|
|
||||||
}
|
|
||||||
|
|
||||||
access_log /var/log/nginx/access.log main;
|
|
||||||
error_log /var/log/nginx/error.log error;
|
|
||||||
|
|
||||||
|
|
||||||
error_page 500 502 503 504 /50x.html;
|
|
||||||
location = /50x.html {
|
|
||||||
root /usr/share/nginx/html;
|
|
||||||
}
|
|
||||||
}
|
|
11
src/App.vue
11
src/App.vue
|
@ -1,13 +1,11 @@
|
||||||
<template>
|
<template>
|
||||||
<router-view :class="[mode]" />
|
<router-view :class="[mode]" />
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent, computed, onMounted } from 'vue';
|
import { computed, onMounted } from 'vue';
|
||||||
import { useStore } from 'vuex';
|
import { useStore } from 'vuex';
|
||||||
import config from '@/config/style';
|
import config from '@/config/style';
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
setup() {
|
|
||||||
const store = useStore();
|
const store = useStore();
|
||||||
|
|
||||||
const mode = computed(() => {
|
const mode = computed(() => {
|
||||||
|
@ -17,11 +15,6 @@ export default defineComponent({
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
store.dispatch('setting/changeTheme', { ...config });
|
store.dispatch('setting/changeTheme', { ...config });
|
||||||
});
|
});
|
||||||
return {
|
|
||||||
mode,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
<style lang="less">
|
<style lang="less">
|
||||||
@import '@/style/variables.less';
|
@import '@/style/variables.less';
|
||||||
|
|
|
@ -52,8 +52,8 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { computed, defineComponent, PropType } from 'vue';
|
import { computed, defineProps, PropType, defineEmits } from 'vue';
|
||||||
import {
|
import {
|
||||||
ShopIcon,
|
ShopIcon,
|
||||||
CalendarIcon,
|
CalendarIcon,
|
||||||
|
@ -71,63 +71,35 @@ export interface CardProductType {
|
||||||
name: string;
|
name: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export default defineComponent({
|
const props = defineProps({
|
||||||
name: 'ListCardComponent',
|
|
||||||
components: {
|
|
||||||
ShopIcon,
|
|
||||||
CalendarIcon,
|
|
||||||
ServiceIcon,
|
|
||||||
UserAvatarIcon,
|
|
||||||
LaptopIcon,
|
|
||||||
MoreIcon,
|
|
||||||
AddIcon,
|
|
||||||
},
|
|
||||||
props: {
|
|
||||||
product: {
|
product: {
|
||||||
type: Object as PropType<CardProductType>,
|
type: Object as PropType<CardProductType>,
|
||||||
default: () => {
|
|
||||||
return {};
|
|
||||||
},
|
},
|
||||||
},
|
});
|
||||||
},
|
|
||||||
emits: ['manage-product', 'delete-item'],
|
const emit = defineEmits(['manage-product', 'delete-item']);
|
||||||
setup(props, ctx) {
|
|
||||||
const { emit } = ctx;
|
const cardClass = computed(() => ['list-card-item', { 'list-card-item__disabled': !props.product.isSetup }]);
|
||||||
const cardClass = computed(() => [
|
|
||||||
'list-card-item',
|
|
||||||
{
|
|
||||||
'list-card-item__disabled': !props.product.isSetup,
|
|
||||||
},
|
|
||||||
]);
|
|
||||||
|
|
||||||
const cardLogoClass = computed(() => [
|
const cardLogoClass = computed(() => [
|
||||||
'list-card-item_detail--logo',
|
'list-card-item_detail--logo',
|
||||||
{
|
{ 'list-card-item_detail--logo__disabled': !props.product.isSetup },
|
||||||
'list-card-item_detail--logo__disabled': !props.product.isSetup,
|
|
||||||
},
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
const cardControlClass = computed(() => [
|
const cardControlClass = computed(() => [
|
||||||
'list-card-item_detail--control',
|
'list-card-item_detail--control',
|
||||||
{
|
{ 'list-card-item_detail--control__disabled': !props.product.isSetup },
|
||||||
'list-card-item_detail--control__disabled': !props.product.isSetup,
|
|
||||||
},
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
return {
|
const typeMap = ['A', 'B', 'C', 'D', 'E'];
|
||||||
cardClass,
|
|
||||||
cardLogoClass,
|
const handleClickManage = (product: CardProductType) => {
|
||||||
cardControlClass,
|
|
||||||
typeMap: ['A', 'B', 'C', 'D', 'E'],
|
|
||||||
handleClickManage(product) {
|
|
||||||
emit('manage-product', product);
|
emit('manage-product', product);
|
||||||
},
|
|
||||||
handleClickDelete(product) {
|
|
||||||
emit('delete-item', product);
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
},
|
|
||||||
});
|
const handleClickDelete = (product: CardProductType) => {
|
||||||
|
emit('delete-item', product);
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
|
|
|
@ -16,38 +16,27 @@
|
||||||
<div v-if="size !== 'small'" class="card-spacer-bottom" />
|
<div v-if="size !== 'small'" class="card-spacer-bottom" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent, PropType, computed } from 'vue';
|
import { defineProps, computed } from 'vue';
|
||||||
|
|
||||||
export default defineComponent({
|
const props = defineProps({
|
||||||
name: 'Card',
|
title: String,
|
||||||
props: {
|
subtitle: String,
|
||||||
title: {
|
describe: String,
|
||||||
type: String as PropType<string>,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
subtitle: {
|
|
||||||
type: String as PropType<string>,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
compact: {
|
compact: {
|
||||||
type: Boolean as PropType<boolean>,
|
type: Boolean,
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
describe: {
|
|
||||||
type: String as PropType<string>,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
size: {
|
size: {
|
||||||
type: String as PropType<string>,
|
type: String,
|
||||||
default: 'default',
|
default: 'default',
|
||||||
},
|
},
|
||||||
border: {
|
border: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
},
|
});
|
||||||
setup(props) {
|
|
||||||
const containerCls = computed(() => {
|
const containerCls = computed(() => {
|
||||||
const { compact, border } = props;
|
const { compact, border } = props;
|
||||||
return ['card-container', { 'card-container-compact': compact, 'card-container--border': border }];
|
return ['card-container', { 'card-container-compact': compact, 'card-container--border': border }];
|
||||||
|
@ -73,14 +62,6 @@ export default defineComponent({
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
});
|
});
|
||||||
|
|
||||||
return {
|
|
||||||
containerCls,
|
|
||||||
titleCls,
|
|
||||||
titleTextCls,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
<style lang="less">
|
<style lang="less">
|
||||||
@import '@/style/variables';
|
@import '@/style/variables';
|
||||||
|
|
|
@ -1,23 +1,20 @@
|
||||||
<template>
|
<template>
|
||||||
<div :style="style" class="color-container" />
|
<div :style="style" class="color-container" />
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { computed, defineComponent, PropType } from 'vue';
|
import { defineProps, computed } from 'vue';
|
||||||
import { useStore } from 'vuex';
|
import { useStore } from 'vuex';
|
||||||
import { getBrandColor } from '@/config/color';
|
import { getBrandColor } from '@/config/color';
|
||||||
|
|
||||||
const panelColor =
|
const panelColor =
|
||||||
'conic-gradient(from 90deg at 50% 50%, #FF0000 -19.41deg, #FF0000 18.76deg, #FF8A00 59.32deg, #FFE600 99.87deg, #14FF00 141.65deg, #00A3FF 177.72deg, #0500FF 220.23deg, #AD00FF 260.13deg, #FF00C7 300.69deg, #FF0000 340.59deg, #FF0000 378.76deg)';
|
'conic-gradient(from 90deg at 50% 50%, #FF0000 -19.41deg, #FF0000 18.76deg, #FF8A00 59.32deg, #FFE600 99.87deg, #14FF00 141.65deg, #00A3FF 177.72deg, #0500FF 220.23deg, #AD00FF 260.13deg, #FF00C7 300.69deg, #FF0000 340.59deg, #FF0000 378.76deg)';
|
||||||
|
|
||||||
export default defineComponent({
|
const props = defineProps({
|
||||||
name: 'Color',
|
|
||||||
props: {
|
|
||||||
value: {
|
value: {
|
||||||
type: String as PropType<string>,
|
type: String,
|
||||||
default: 'default',
|
|
||||||
},
|
},
|
||||||
},
|
});
|
||||||
setup(props) {
|
|
||||||
const store = useStore();
|
const store = useStore();
|
||||||
|
|
||||||
const style = computed(() => {
|
const style = computed(() => {
|
||||||
|
@ -27,12 +24,6 @@ export default defineComponent({
|
||||||
background: value !== 'dynamic' ? getBrandColor(value, colorList)['@brand-color'] : panelColor,
|
background: value !== 'dynamic' ? getBrandColor(value, colorList)['@brand-color'] : panelColor,
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
return {
|
|
||||||
style,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
.color-container {
|
.color-container {
|
||||||
|
|
|
@ -8,35 +8,21 @@
|
||||||
<slot />
|
<slot />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent, PropType, computed } from 'vue';
|
import { defineProps, computed } from 'vue';
|
||||||
import Result403Icon from '@/assets/assets-result-403.svg?component';
|
import Result403Icon from '@/assets/assets-result-403.svg?component';
|
||||||
import Result404Icon from '@/assets/assets-result-404.svg?component';
|
import Result404Icon from '@/assets/assets-result-404.svg?component';
|
||||||
import Result500Icon from '@/assets/assets-result-500.svg?component';
|
import Result500Icon from '@/assets/assets-result-500.svg?component';
|
||||||
import ResultIeIcon from '@/assets/assets-result-ie.svg?component';
|
import ResultIeIcon from '@/assets/assets-result-ie.svg?component';
|
||||||
import ResultWifiIcon from '@/assets/assets-result-wifi.svg?component';
|
import ResultWifiIcon from '@/assets/assets-result-wifi.svg?component';
|
||||||
|
|
||||||
export default defineComponent({
|
const props = defineProps({
|
||||||
name: 'Result',
|
bgUrl: String,
|
||||||
props: {
|
title: String,
|
||||||
bgUrl: {
|
tip: String,
|
||||||
type: String as PropType<string>,
|
type: String,
|
||||||
default: '',
|
});
|
||||||
},
|
|
||||||
title: {
|
|
||||||
type: String as PropType<string>,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
tip: {
|
|
||||||
type: String as PropType<string>,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
type: {
|
|
||||||
type: String as PropType<string>,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
setup(props) {
|
|
||||||
const dynamicComponent = computed(() => {
|
const dynamicComponent = computed(() => {
|
||||||
switch (props.type) {
|
switch (props.type) {
|
||||||
case '403':
|
case '403':
|
||||||
|
@ -53,11 +39,6 @@ export default defineComponent({
|
||||||
return Result403Icon;
|
return Result403Icon;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
return {
|
|
||||||
dynamicComponent,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
@import '@/style/variables';
|
@import '@/style/variables';
|
||||||
|
|
|
@ -1,22 +1,17 @@
|
||||||
<template>
|
<template>
|
||||||
<img :class="className" :src="url" />
|
<img :class="className" :src="url" />
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent, computed, PropType } from 'vue';
|
import { computed, defineProps } from 'vue';
|
||||||
|
|
||||||
export default defineComponent({
|
const props = defineProps({
|
||||||
name: 'Thumbnail',
|
url: String,
|
||||||
props: {
|
|
||||||
url: {
|
|
||||||
type: String as PropType<string>,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
type: {
|
type: {
|
||||||
type: String as PropType<string>,
|
type: String,
|
||||||
default: 'layout',
|
default: 'layout',
|
||||||
},
|
},
|
||||||
},
|
});
|
||||||
setup(props) {
|
|
||||||
const className = computed(() => {
|
const className = computed(() => {
|
||||||
const { type } = props;
|
const { type } = props;
|
||||||
return [
|
return [
|
||||||
|
@ -27,9 +22,6 @@ export default defineComponent({
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
});
|
});
|
||||||
return { className };
|
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
@import url('@/style/index.less');
|
@import url('@/style/index.less');
|
||||||
|
|
|
@ -20,26 +20,18 @@
|
||||||
<span>{{ describe }}</span>
|
<span>{{ describe }}</span>
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent, computed, PropType } from 'vue';
|
import { defineProps, computed } from 'vue';
|
||||||
|
|
||||||
export default defineComponent({
|
const props = defineProps({
|
||||||
name: 'Trend',
|
type: String,
|
||||||
props: {
|
describe: [String, Number],
|
||||||
type: {
|
|
||||||
type: String as PropType<string>,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
describe: {
|
|
||||||
type: [String, Number] as PropType<string | number>,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
isReverseColor: {
|
isReverseColor: {
|
||||||
type: Boolean as PropType<boolean>,
|
type: Boolean,
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
},
|
});
|
||||||
setup(props) {
|
|
||||||
const containerCls = computed(() => {
|
const containerCls = computed(() => {
|
||||||
const { isReverseColor, type } = props;
|
const { isReverseColor, type } = props;
|
||||||
return [
|
return [
|
||||||
|
@ -53,13 +45,6 @@ export default defineComponent({
|
||||||
});
|
});
|
||||||
|
|
||||||
const iconCls = computed(() => ['trend-icon-container']);
|
const iconCls = computed(() => ['trend-icon-container']);
|
||||||
|
|
||||||
return {
|
|
||||||
containerCls,
|
|
||||||
iconCls,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
|
|
|
@ -6,16 +6,10 @@
|
||||||
</t-breadcrumb>
|
</t-breadcrumb>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent, computed } from 'vue';
|
import { computed } from 'vue';
|
||||||
import { useRoute } from 'vue-router';
|
import { useRoute } from 'vue-router';
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: 'TdesignStarterBreadcrumb',
|
|
||||||
props: {
|
|
||||||
isVisible: Boolean,
|
|
||||||
},
|
|
||||||
setup() {
|
|
||||||
const crumbs = computed(() => {
|
const crumbs = computed(() => {
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
|
|
||||||
|
@ -32,12 +26,6 @@ export default defineComponent({
|
||||||
}, []);
|
}, []);
|
||||||
return breadcrumbs;
|
return breadcrumbs;
|
||||||
});
|
});
|
||||||
|
|
||||||
return {
|
|
||||||
crumbs,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.tdesign-breadcrumb {
|
.tdesign-breadcrumb {
|
||||||
|
|
|
@ -2,18 +2,8 @@
|
||||||
<div :class="prefix + '-footer'">Copyright @ 2021-{{ new Date().getFullYear() }} Tencent. All Rights Reserved</div>
|
<div :class="prefix + '-footer'">Copyright @ 2021-{{ new Date().getFullYear() }} Tencent. All Rights Reserved</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent } from 'vue';
|
|
||||||
import { prefix } from '@/config/global';
|
import { prefix } from '@/config/global';
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: `${prefix}-footer`,
|
|
||||||
setup() {
|
|
||||||
return {
|
|
||||||
prefix,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
|
|
|
@ -63,8 +63,8 @@
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent, PropType, computed, ref } from 'vue';
|
import { defineProps, PropType, computed } from 'vue';
|
||||||
import { useStore } from 'vuex';
|
import { useStore } from 'vuex';
|
||||||
import { useRouter, useRoute } from 'vue-router';
|
import { useRouter, useRoute } from 'vue-router';
|
||||||
|
|
||||||
|
@ -76,24 +76,17 @@ import Notice from './Notice.vue';
|
||||||
import Search from './Search.vue';
|
import Search from './Search.vue';
|
||||||
import MenuContent from './MenuContent';
|
import MenuContent from './MenuContent';
|
||||||
|
|
||||||
export default defineComponent({
|
const props = defineProps({
|
||||||
components: {
|
|
||||||
tLogoFull,
|
|
||||||
Notice,
|
|
||||||
Search,
|
|
||||||
MenuContent,
|
|
||||||
},
|
|
||||||
props: {
|
|
||||||
theme: {
|
theme: {
|
||||||
type: String as PropType<string>,
|
type: String,
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
layout: {
|
layout: {
|
||||||
type: String as PropType<string>,
|
type: String,
|
||||||
default: 'top',
|
default: 'top',
|
||||||
},
|
},
|
||||||
showLogo: {
|
showLogo: {
|
||||||
type: Boolean as PropType<boolean>,
|
type: Boolean,
|
||||||
default: true,
|
default: true,
|
||||||
},
|
},
|
||||||
menu: {
|
menu: {
|
||||||
|
@ -101,19 +94,19 @@ export default defineComponent({
|
||||||
default: () => [],
|
default: () => [],
|
||||||
},
|
},
|
||||||
isFixed: {
|
isFixed: {
|
||||||
type: Boolean as PropType<boolean>,
|
type: Boolean,
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
isCompact: {
|
isCompact: {
|
||||||
type: Boolean as PropType<boolean>,
|
type: Boolean,
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
maxLevel: {
|
maxLevel: {
|
||||||
type: Number as PropType<number>,
|
type: Number,
|
||||||
default: 3,
|
default: 3,
|
||||||
},
|
},
|
||||||
},
|
});
|
||||||
setup(props) {
|
|
||||||
const store = useStore();
|
const store = useStore();
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
|
|
||||||
|
@ -133,8 +126,6 @@ export default defineComponent({
|
||||||
.join('');
|
.join('');
|
||||||
});
|
});
|
||||||
|
|
||||||
const showMenu = computed(() => !(props.layout === 'mix' && props.showLogo));
|
|
||||||
|
|
||||||
const layoutCls = computed(() => [`${prefix}-header-layout`]);
|
const layoutCls = computed(() => [`${prefix}-header-layout`]);
|
||||||
|
|
||||||
const menuCls = computed(() => {
|
const menuCls = computed(() => {
|
||||||
|
@ -149,15 +140,9 @@ export default defineComponent({
|
||||||
];
|
];
|
||||||
});
|
});
|
||||||
|
|
||||||
const userVisible = ref(false);
|
|
||||||
const userVisibleChange = (value: boolean) => {
|
|
||||||
userVisible.value = value;
|
|
||||||
};
|
|
||||||
|
|
||||||
const changeCollapsed = () => {
|
const changeCollapsed = () => {
|
||||||
store.commit('setting/toggleSidebarCompact');
|
store.commit('setting/toggleSidebarCompact');
|
||||||
};
|
};
|
||||||
const isSidebarCompact = computed(() => store.state.setting.isSidebarCompact);
|
|
||||||
|
|
||||||
const handleNav = (url) => {
|
const handleNav = (url) => {
|
||||||
router.push(url);
|
router.push(url);
|
||||||
|
@ -174,24 +159,6 @@ export default defineComponent({
|
||||||
const navToHelper = () => {
|
const navToHelper = () => {
|
||||||
window.open('http://tdesign.tencent.com/starter/docs/get-started');
|
window.open('http://tdesign.tencent.com/starter/docs/get-started');
|
||||||
};
|
};
|
||||||
|
|
||||||
return {
|
|
||||||
isSidebarCompact,
|
|
||||||
toggleSettingPanel,
|
|
||||||
active,
|
|
||||||
showMenu,
|
|
||||||
layoutCls,
|
|
||||||
userVisible,
|
|
||||||
userVisibleChange,
|
|
||||||
menuCls,
|
|
||||||
changeCollapsed,
|
|
||||||
handleNav,
|
|
||||||
handleLogout,
|
|
||||||
navToGitHub,
|
|
||||||
navToHelper,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
<style lang="less">
|
<style lang="less">
|
||||||
@import '@/style/variables.less';
|
@import '@/style/variables.less';
|
||||||
|
|
|
@ -45,14 +45,12 @@
|
||||||
</t-popup>
|
</t-popup>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent, computed } from 'vue';
|
import { computed } from 'vue';
|
||||||
import { useRouter } from 'vue-router';
|
import { useRouter } from 'vue-router';
|
||||||
import { useStore } from 'vuex';
|
import { useStore } from 'vuex';
|
||||||
import { NotificationItem } from '@/interface';
|
import { NotificationItem } from '@/interface';
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
setup() {
|
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const store = useStore();
|
const store = useStore();
|
||||||
const { msgData } = store.state.notification;
|
const { msgData } = store.state.notification;
|
||||||
|
@ -78,14 +76,6 @@ export default defineComponent({
|
||||||
const goDetail = () => {
|
const goDetail = () => {
|
||||||
router.push('/detail/secondary');
|
router.push('/detail/secondary');
|
||||||
};
|
};
|
||||||
|
|
||||||
return {
|
|
||||||
goDetail,
|
|
||||||
unreadMsg,
|
|
||||||
setRead,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
|
|
|
@ -36,16 +36,13 @@
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent, ref, PropType } from 'vue';
|
import { ref, defineProps } from 'vue';
|
||||||
|
|
||||||
|
const layout = defineProps({
|
||||||
|
type: String,
|
||||||
|
});
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
props: {
|
|
||||||
layout: {
|
|
||||||
type: String as PropType<string>,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
setup() {
|
|
||||||
const isSearchFocus = ref(false);
|
const isSearchFocus = ref(false);
|
||||||
const searchData = ref('');
|
const searchData = ref('');
|
||||||
const changeSearchFocus = (value: boolean) => {
|
const changeSearchFocus = (value: boolean) => {
|
||||||
|
@ -54,13 +51,6 @@ export default defineComponent({
|
||||||
}
|
}
|
||||||
isSearchFocus.value = value;
|
isSearchFocus.value = value;
|
||||||
};
|
};
|
||||||
return {
|
|
||||||
isSearchFocus,
|
|
||||||
searchData,
|
|
||||||
changeSearchFocus,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
<style lang="less">
|
<style lang="less">
|
||||||
@import '@/style/variables.less';
|
@import '@/style/variables.less';
|
||||||
|
|
|
@ -90,8 +90,8 @@
|
||||||
</div>
|
</div>
|
||||||
</t-drawer>
|
</t-drawer>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent, ref, computed, watch, onMounted } from 'vue';
|
import { ref, computed, watch, onMounted } from 'vue';
|
||||||
import { useStore } from 'vuex';
|
import { useStore } from 'vuex';
|
||||||
import { ColorPicker } from 'vue-color-kit';
|
import { ColorPicker } from 'vue-color-kit';
|
||||||
import { MessagePlugin, PopupVisibleChangeContext } from 'tdesign-vue-next';
|
import { MessagePlugin, PopupVisibleChangeContext } from 'tdesign-vue-next';
|
||||||
|
@ -118,10 +118,6 @@ const MODE_OPTIONS = [
|
||||||
{ type: 'auto', text: '跟随系统' },
|
{ type: 'auto', text: '跟随系统' },
|
||||||
];
|
];
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: 'DefaultLayoutSetting',
|
|
||||||
components: { Thumbnail, ColorContainer, ColorPicker },
|
|
||||||
setup() {
|
|
||||||
const formData = ref({ ...STYLE_CONFIG });
|
const formData = ref({ ...STYLE_CONFIG });
|
||||||
const store = useStore();
|
const store = useStore();
|
||||||
const colors = ref();
|
const colors = ref();
|
||||||
|
@ -161,10 +157,10 @@ export default defineComponent({
|
||||||
store.dispatch('setting/changeTheme', { ...setting, brandTheme: hex });
|
store.dispatch('setting/changeTheme', { ...setting, brandTheme: hex });
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
const changeColor = (val) => {
|
const changeColor = (val) => {
|
||||||
const { hex } = val;
|
const { hex } = val;
|
||||||
const { setting } = store.state;
|
const { setting } = store.state;
|
||||||
|
|
||||||
// hex 主题色
|
// hex 主题色
|
||||||
const newPalette = Color.getPaletteByGradation({
|
const newPalette = Color.getPaletteByGradation({
|
||||||
colors: [hex],
|
colors: [hex],
|
||||||
|
@ -218,33 +214,17 @@ export default defineComponent({
|
||||||
const handleCloseDrawer = () => {
|
const handleCloseDrawer = () => {
|
||||||
store.commit('setting/toggleSettingPanel', false);
|
store.commit('setting/toggleSettingPanel', false);
|
||||||
};
|
};
|
||||||
return {
|
|
||||||
mode,
|
const getThumbnailUrl = (name: string): string => {
|
||||||
changeColor,
|
|
||||||
isColoPickerDisplay,
|
|
||||||
onPopupVisibleChange,
|
|
||||||
MODE_OPTIONS,
|
|
||||||
LAYOUT_OPTION,
|
|
||||||
COLOR_OPTIONS,
|
|
||||||
formData,
|
|
||||||
showSettingPanel,
|
|
||||||
handleCopy,
|
|
||||||
getModeIcon,
|
|
||||||
handleCloseDrawer,
|
|
||||||
getThumbnailUrl(name: string): string {
|
|
||||||
return `https://tdesign.gtimg.com/tdesign-pro/setting/${name}.png`;
|
return `https://tdesign.gtimg.com/tdesign-pro/setting/${name}.png`;
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => formData.value,
|
||||||
|
(newVal) => {
|
||||||
|
store.dispatch('setting/changeTheme', newVal);
|
||||||
},
|
},
|
||||||
watch: {
|
);
|
||||||
formData: {
|
|
||||||
handler(newVal) {
|
|
||||||
this.$store.dispatch('setting/changeTheme', newVal);
|
|
||||||
},
|
|
||||||
deep: true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
<style lang="less">
|
<style lang="less">
|
||||||
@import '@/style/variables';
|
@import '@/style/variables';
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<div>
|
<div>
|
||||||
<t-row :gutter="[16, 16]">
|
<t-row :gutter="[16, 16]">
|
||||||
<t-col v-for="(item, index) in PANE_LIST" :key="item.title" :xs="6" :xl="3">
|
<t-col v-for="(item, index) in PANE_LIST" :key="item.title" :xs="6" :xl="3">
|
||||||
<card :subtitle="item.title" :style="{ height: '168px' }" :class="{ 'main-color': index == 0 }" size="small">
|
<card :subtitle="item.title" :style="{ height: '168px' }" :class="{ 'main-color': index == 0 }">
|
||||||
<div class="dashboard-item">
|
<div class="dashboard-item">
|
||||||
<div class="dashboard-item-top">
|
<div class="dashboard-item-top">
|
||||||
<span :style="{ fontSize: `${resizeTime * 36}px` }">{{ item.number }}</span>
|
<span :style="{ fontSize: `${resizeTime * 36}px` }">{{ item.number }}</span>
|
||||||
|
@ -202,8 +202,8 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent, onMounted, watch, ref, onUnmounted, nextTick, computed } from 'vue';
|
import { onMounted, watch, ref, onUnmounted, nextTick, computed } from 'vue';
|
||||||
import { useStore } from 'vuex';
|
import { useStore } from 'vuex';
|
||||||
|
|
||||||
import * as echarts from 'echarts/core';
|
import * as echarts from 'echarts/core';
|
||||||
|
@ -241,13 +241,6 @@ const getThisMonth = (checkedValues?: string[]) => {
|
||||||
return `${date.getFullYear()}-${startMonth} 至 ${date2.getFullYear()}-${endMonth}`;
|
return `${date.getFullYear()}-${startMonth} 至 ${date2.getFullYear()}-${endMonth}`;
|
||||||
};
|
};
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: 'DashboardBase',
|
|
||||||
components: {
|
|
||||||
Card,
|
|
||||||
Trend,
|
|
||||||
},
|
|
||||||
setup() {
|
|
||||||
const store = useStore();
|
const store = useStore();
|
||||||
const resizeTime = ref(1);
|
const resizeTime = ref(1);
|
||||||
|
|
||||||
|
@ -379,31 +372,19 @@ export default defineComponent({
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
return {
|
const onCurrencyChange = (checkedValues: string[]) => {
|
||||||
resizeTime,
|
|
||||||
currentMonth,
|
|
||||||
LAST_7_DAYS,
|
|
||||||
PANE_LIST,
|
|
||||||
BUY_TEND_LIST,
|
|
||||||
SALE_TEND_LIST,
|
|
||||||
SALE_COLUMNS,
|
|
||||||
BUY_COLUMNS,
|
|
||||||
onCurrencyChange(checkedValues: string[]) {
|
|
||||||
currentMonth.value = getThisMonth(checkedValues);
|
currentMonth.value = getThisMonth(checkedValues);
|
||||||
monitorChart.setOption(getLineChartDataSet({ dateTime: checkedValues, ...chartColors.value }));
|
monitorChart.setOption(getLineChartDataSet({ dateTime: checkedValues, ...chartColors.value }));
|
||||||
},
|
|
||||||
onStokeDataChange(checkedValues: string[]) {
|
|
||||||
stokeChart.setOption(constructInitDataset({ dateTime: checkedValues, ...chartColors.value }));
|
|
||||||
},
|
|
||||||
rehandleClickOp(val: MouseEvent) {
|
|
||||||
console.log(val);
|
|
||||||
},
|
|
||||||
getRankClass(index: number) {
|
|
||||||
return ['dashboard-rank', { 'dashboard-rank__top': index < 3 }];
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
},
|
const onStokeDataChange = (checkedValues: string[]) => {
|
||||||
});
|
stokeChart.setOption(constructInitDataset({ dateTime: checkedValues, ...chartColors.value }));
|
||||||
|
};
|
||||||
|
const rehandleClickOp = (val: MouseEvent) => {
|
||||||
|
console.log(val);
|
||||||
|
};
|
||||||
|
const getRankClass = (index: number) => {
|
||||||
|
return ['dashboard-rank', { 'dashboard-rank__top': index < 3 }];
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
@import './index.less';
|
@import './index.less';
|
||||||
|
|
|
@ -57,8 +57,8 @@
|
||||||
</card>
|
</card>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent, nextTick, onMounted, onUnmounted, watch, computed } from 'vue';
|
import { nextTick, onMounted, onUnmounted, watch, computed } from 'vue';
|
||||||
import { useStore } from 'vuex';
|
import { useStore } from 'vuex';
|
||||||
|
|
||||||
import * as echarts from 'echarts/core';
|
import * as echarts from 'echarts/core';
|
||||||
|
@ -76,14 +76,6 @@ import Card from '@/components/card/index.vue';
|
||||||
|
|
||||||
echarts.use([GridComponent, LegendComponent, TooltipComponent, LineChart, ScatterChart, CanvasRenderer]);
|
echarts.use([GridComponent, LegendComponent, TooltipComponent, LineChart, ScatterChart, CanvasRenderer]);
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: 'DashboardDetail',
|
|
||||||
components: {
|
|
||||||
Card,
|
|
||||||
Trend,
|
|
||||||
ProductCard,
|
|
||||||
},
|
|
||||||
setup() {
|
|
||||||
const store = useStore();
|
const store = useStore();
|
||||||
const chartColors = computed(() => store.state.setting.chartColors);
|
const chartColors = computed(() => store.state.setting.chartColors);
|
||||||
// lineChart logic
|
// lineChart logic
|
||||||
|
@ -147,20 +139,14 @@ export default defineComponent({
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
return {
|
const onSatisfyChange = () => {
|
||||||
LAST_7_DAYS,
|
|
||||||
PRODUCT_LIST,
|
|
||||||
PANE_LIST_DATA,
|
|
||||||
onSatisfyChange() {
|
|
||||||
scatterChart.setOption(getScatterDataSet({ ...chartColors.value }));
|
scatterChart.setOption(getScatterDataSet({ ...chartColors.value }));
|
||||||
},
|
};
|
||||||
onMaterialChange(value: string[]) {
|
|
||||||
|
const onMaterialChange = (value: string[]) => {
|
||||||
const chartColors = computed(() => store.state.setting.chartColors);
|
const chartColors = computed(() => store.state.setting.chartColors);
|
||||||
lineChart.setOption(getFolderLineDataSet({ dateTime: value, ...chartColors.value }));
|
lineChart.setOption(getFolderLineDataSet({ dateTime: value, ...chartColors.value }));
|
||||||
},
|
|
||||||
};
|
};
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
@import url('./index.less');
|
@import url('./index.less');
|
||||||
|
|
|
@ -109,23 +109,16 @@
|
||||||
</t-dialog>
|
</t-dialog>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent, ref, onMounted } from 'vue';
|
import { ref, onMounted } from 'vue';
|
||||||
import { prefix } from '@/config/global';
|
import { prefix } from '@/config/global';
|
||||||
import { BASE_INFO_DATA, TABLE_COLUMNS_DATA, PRODUCT_LIST } from './constants';
|
import { BASE_INFO_DATA, TABLE_COLUMNS_DATA as columns, PRODUCT_LIST } from './constants';
|
||||||
import request from '@/utils/request';
|
import request from '@/utils/request';
|
||||||
import { ResDataType } from '@/interface';
|
import { ResDataType } from '@/interface';
|
||||||
|
|
||||||
import Card from '@/components/card/index.vue';
|
import Card from '@/components/card/index.vue';
|
||||||
import Product from './components/Product.vue';
|
import Product from './components/Product.vue';
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: 'DetailAdvanced',
|
|
||||||
components: {
|
|
||||||
Card,
|
|
||||||
Product,
|
|
||||||
},
|
|
||||||
setup() {
|
|
||||||
const data = ref([]);
|
const data = ref([]);
|
||||||
const pagination = ref({
|
const pagination = ref({
|
||||||
defaultPageSize: 10,
|
defaultPageSize: 10,
|
||||||
|
@ -166,34 +159,21 @@ export default defineComponent({
|
||||||
});
|
});
|
||||||
|
|
||||||
const visible = ref(false);
|
const visible = ref(false);
|
||||||
|
const sortChange = (val) => {
|
||||||
return {
|
|
||||||
BASE_INFO_DATA,
|
|
||||||
prefix,
|
|
||||||
PRODUCT_LIST,
|
|
||||||
columns: TABLE_COLUMNS_DATA,
|
|
||||||
data,
|
|
||||||
pagination,
|
|
||||||
visible,
|
|
||||||
updateCurrent,
|
|
||||||
sortChange(val) {
|
|
||||||
console.log(val);
|
console.log(val);
|
||||||
},
|
|
||||||
rehandleChange(changeParams, triggerAndData) {
|
|
||||||
console.log('统一Change', changeParams, triggerAndData);
|
|
||||||
},
|
|
||||||
listClick() {
|
|
||||||
visible.value = true;
|
|
||||||
},
|
|
||||||
deleteClickOp(columns) {
|
|
||||||
data.value.splice(columns.rowIndex, 1);
|
|
||||||
},
|
|
||||||
onConfirm() {
|
|
||||||
visible.value = false;
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
},
|
const rehandleChange = (changeParams, triggerAndData) => {
|
||||||
});
|
console.log('统一Change', changeParams, triggerAndData);
|
||||||
|
};
|
||||||
|
const listClick = () => {
|
||||||
|
visible.value = true;
|
||||||
|
};
|
||||||
|
const deleteClickOp = (columns) => {
|
||||||
|
data.value.splice(columns.rowIndex, 1);
|
||||||
|
};
|
||||||
|
const onConfirm = () => {
|
||||||
|
visible.value = false;
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
@import url('./index.less');
|
@import url('./index.less');
|
||||||
|
|
|
@ -26,8 +26,7 @@
|
||||||
</card>
|
</card>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent } from 'vue';
|
|
||||||
import Card from '@/components/card/index.vue';
|
import Card from '@/components/card/index.vue';
|
||||||
|
|
||||||
const BASE_INFO_DATA = [
|
const BASE_INFO_DATA = [
|
||||||
|
@ -108,16 +107,6 @@ const BASE_INFO_DATA = [
|
||||||
type: null,
|
type: null,
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: 'ListBase',
|
|
||||||
components: { Card },
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
BASE_INFO_DATA,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
@import url('./index.less');
|
@import url('./index.less');
|
||||||
|
|
|
@ -68,8 +68,8 @@
|
||||||
</t-dialog>
|
</t-dialog>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent, onMounted, onUnmounted, ref, watch, computed } from 'vue';
|
import { onMounted, onUnmounted, ref, watch, computed } from 'vue';
|
||||||
import { useStore } from 'vuex';
|
import { useStore } from 'vuex';
|
||||||
|
|
||||||
import * as echarts from 'echarts/core';
|
import * as echarts from 'echarts/core';
|
||||||
|
@ -78,7 +78,7 @@ import { BarChart, LineChart } from 'echarts/charts';
|
||||||
import { CanvasRenderer } from 'echarts/renderers';
|
import { CanvasRenderer } from 'echarts/renderers';
|
||||||
|
|
||||||
import { changeChartsTheme, getSmoothLineDataSet, get2ColBarChartDataSet } from '../../dashboard/base/index';
|
import { changeChartsTheme, getSmoothLineDataSet, get2ColBarChartDataSet } from '../../dashboard/base/index';
|
||||||
import { BASE_INFO_DATA, TABLE_COLUMNS } from './constants';
|
import { BASE_INFO_DATA, TABLE_COLUMNS as columns } from './constants';
|
||||||
|
|
||||||
import { prefix } from '@/config/global';
|
import { prefix } from '@/config/global';
|
||||||
import Card from '@/components/card/index.vue';
|
import Card from '@/components/card/index.vue';
|
||||||
|
@ -96,10 +96,6 @@ echarts.use([
|
||||||
CanvasRenderer,
|
CanvasRenderer,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: 'DetailDeploy',
|
|
||||||
components: { Card },
|
|
||||||
setup() {
|
|
||||||
const store = useStore();
|
const store = useStore();
|
||||||
|
|
||||||
const chartColors = computed(() => store.state.setting.chartColors);
|
const chartColors = computed(() => store.state.setting.chartColors);
|
||||||
|
@ -182,32 +178,22 @@ export default defineComponent({
|
||||||
changeChartsTheme([monitorChart, dataChart]);
|
changeChartsTheme([monitorChart, dataChart]);
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
return {
|
|
||||||
prefix,
|
const sortChange = (val) => {
|
||||||
BASE_INFO_DATA,
|
|
||||||
columns: TABLE_COLUMNS,
|
|
||||||
data,
|
|
||||||
pagination,
|
|
||||||
visible,
|
|
||||||
sortChange(val) {
|
|
||||||
console.log(val);
|
console.log(val);
|
||||||
},
|
|
||||||
rehandleChange(changeParams, triggerAndData) {
|
|
||||||
console.log('统一Change', changeParams, triggerAndData);
|
|
||||||
},
|
|
||||||
listClick() {
|
|
||||||
visible.value = true;
|
|
||||||
},
|
|
||||||
onConfirm() {
|
|
||||||
visible.value = false;
|
|
||||||
},
|
|
||||||
deleteClickOp(e) {
|
|
||||||
data.value.splice(e.rowIndex, 1);
|
|
||||||
},
|
|
||||||
onAlertChange,
|
|
||||||
};
|
};
|
||||||
},
|
const rehandleChange = (changeParams, triggerAndData) => {
|
||||||
});
|
console.log('统一Change', changeParams, triggerAndData);
|
||||||
|
};
|
||||||
|
const listClick = () => {
|
||||||
|
visible.value = true;
|
||||||
|
};
|
||||||
|
const onConfirm = () => {
|
||||||
|
visible.value = false;
|
||||||
|
};
|
||||||
|
const deleteClickOp = (e) => {
|
||||||
|
data.value.splice(e.rowIndex, 1);
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
@import url('../base/index.less');
|
@import url('../base/index.less');
|
||||||
|
|
|
@ -49,8 +49,8 @@
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent, ref, computed, ComputedRef } from 'vue';
|
import { ref, computed, ComputedRef } from 'vue';
|
||||||
import { useStore } from 'vuex';
|
import { useStore } from 'vuex';
|
||||||
import { NOTIFICATION_TYPES } from '@/constants';
|
import { NOTIFICATION_TYPES } from '@/constants';
|
||||||
import { NotificationItem } from '@/interface';
|
import { NotificationItem } from '@/interface';
|
||||||
|
@ -71,12 +71,6 @@ const TAB_LIST = [
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: 'DetailSecondary',
|
|
||||||
components: {
|
|
||||||
EmptyIcon,
|
|
||||||
},
|
|
||||||
setup() {
|
|
||||||
const tabValue = ref('msgData');
|
const tabValue = ref('msgData');
|
||||||
|
|
||||||
const visible = ref(false);
|
const visible = ref(false);
|
||||||
|
@ -119,20 +113,6 @@ export default defineComponent({
|
||||||
visible.value = false;
|
visible.value = false;
|
||||||
store.commit('notification/setMsgData', changeMsg);
|
store.commit('notification/setMsgData', changeMsg);
|
||||||
};
|
};
|
||||||
|
|
||||||
return {
|
|
||||||
TAB_LIST,
|
|
||||||
NOTIFICATION_TYPES,
|
|
||||||
visible,
|
|
||||||
selectedItem,
|
|
||||||
tabValue,
|
|
||||||
msgDataList,
|
|
||||||
handleClickDeleteBtn,
|
|
||||||
setReadStatus,
|
|
||||||
deleteMsg,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
@import url('./index.less');
|
@import url('./index.less');
|
||||||
|
|
|
@ -154,30 +154,22 @@
|
||||||
</div>
|
</div>
|
||||||
</t-form>
|
</t-form>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent, ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
import { MessagePlugin } from 'tdesign-vue-next';
|
import { MessagePlugin } from 'tdesign-vue-next';
|
||||||
import { FORM_RULES, INITIAL_DATA, TYPE_OPTIONS, PARTY_A_OPTIONS, PARTY_B_OPTIONS } from './constants';
|
import { FORM_RULES, INITIAL_DATA, TYPE_OPTIONS, PARTY_A_OPTIONS, PARTY_B_OPTIONS } from './constants';
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: 'FormBase',
|
|
||||||
setup() {
|
|
||||||
const formData = ref({ ...INITIAL_DATA });
|
const formData = ref({ ...INITIAL_DATA });
|
||||||
return {
|
|
||||||
TYPE_OPTIONS,
|
const onReset = () => {
|
||||||
PARTY_A_OPTIONS,
|
|
||||||
PARTY_B_OPTIONS,
|
|
||||||
FORM_RULES,
|
|
||||||
formData,
|
|
||||||
onReset() {
|
|
||||||
MessagePlugin.warning('取消新建');
|
MessagePlugin.warning('取消新建');
|
||||||
},
|
};
|
||||||
onSubmit({ validateResult }) {
|
const onSubmit = ({ validateResult }) => {
|
||||||
if (validateResult === true) {
|
if (validateResult === true) {
|
||||||
MessagePlugin.success('新建成功');
|
MessagePlugin.success('新建成功');
|
||||||
}
|
}
|
||||||
},
|
};
|
||||||
beforeUpload(file) {
|
const beforeUpload = (file) => {
|
||||||
if (!/\.(pdf)$/.test(file.name)) {
|
if (!/\.(pdf)$/.test(file.name)) {
|
||||||
MessagePlugin.warning('请上传pdf文件');
|
MessagePlugin.warning('请上传pdf文件');
|
||||||
return false;
|
return false;
|
||||||
|
@ -187,17 +179,14 @@ export default defineComponent({
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
},
|
|
||||||
handleFail({ file }) {
|
|
||||||
MessagePlugin.error(`文件 ${file.name} 上传失败`);
|
|
||||||
},
|
|
||||||
// 用于格式化接口响应值,error 会被用于上传失败的提示文字;url 表示文件/图片地址
|
|
||||||
formatResponse(res) {
|
|
||||||
return { ...res, error: '上传失败,请重试', url: res.url };
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
},
|
const handleFail = ({ file }) => {
|
||||||
});
|
MessagePlugin.error(`文件 ${file.name} 上传失败`);
|
||||||
|
};
|
||||||
|
// 用于格式化接口响应值,error 会被用于上传失败的提示文字;url 表示文件/图片地址
|
||||||
|
const formatResponse = (res) => {
|
||||||
|
return { ...res, error: '上传失败,请重试', url: res.url };
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
@import url('./index.less');
|
@import url('./index.less');
|
||||||
|
|
|
@ -139,8 +139,8 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent, ref, computed } from 'vue';
|
import { ref, computed } from 'vue';
|
||||||
import { useRouter } from 'vue-router';
|
import { useRouter } from 'vue-router';
|
||||||
import { ValidateResultContext } from 'tdesign-vue-next';
|
import { ValidateResultContext } from 'tdesign-vue-next';
|
||||||
import Card from '@/components/card/index.vue';
|
import Card from '@/components/card/index.vue';
|
||||||
|
@ -155,10 +155,6 @@ import {
|
||||||
INITIAL_DATA3,
|
INITIAL_DATA3,
|
||||||
} from './constants';
|
} from './constants';
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: 'FormStep',
|
|
||||||
components: { Card },
|
|
||||||
setup() {
|
|
||||||
const formData1 = ref({ ...INITIAL_DATA1 });
|
const formData1 = ref({ ...INITIAL_DATA1 });
|
||||||
const formData2 = ref({ ...INITIAL_DATA2 });
|
const formData2 = ref({ ...INITIAL_DATA2 });
|
||||||
const formData3 = ref({ ...INITIAL_DATA3 });
|
const formData3 = ref({ ...INITIAL_DATA3 });
|
||||||
|
@ -177,31 +173,18 @@ export default defineComponent({
|
||||||
return '--';
|
return '--';
|
||||||
});
|
});
|
||||||
|
|
||||||
return {
|
const onSubmit = (result: ValidateResultContext<FormData>, val: number) => {
|
||||||
NAME_OPTIONS,
|
|
||||||
TYPE_OPTIONS,
|
|
||||||
ADDRESS_OPTIONS,
|
|
||||||
FORM_RULES,
|
|
||||||
formData1,
|
|
||||||
formData2,
|
|
||||||
formData3,
|
|
||||||
activeForm,
|
|
||||||
amount,
|
|
||||||
onSubmit(result: ValidateResultContext<FormData>, val: number) {
|
|
||||||
if (result.validateResult === true) {
|
if (result.validateResult === true) {
|
||||||
activeForm.value = val;
|
activeForm.value = val;
|
||||||
}
|
}
|
||||||
},
|
};
|
||||||
onReset(val: number) {
|
const onReset = (val: number) => {
|
||||||
activeForm.value = val;
|
activeForm.value = val;
|
||||||
},
|
};
|
||||||
complete() {
|
const complete = () => {
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
router.replace({ path: '/detail/advanced' });
|
router.replace({ path: '/detail/advanced' });
|
||||||
},
|
|
||||||
};
|
};
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
@import url('./index.less');
|
@import url('./index.less');
|
||||||
|
|
|
@ -64,8 +64,8 @@
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent, ref, onMounted, computed } from 'vue';
|
import { ref, onMounted, computed } from 'vue';
|
||||||
import { useRouter } from 'vue-router';
|
import { useRouter } from 'vue-router';
|
||||||
import { SearchIcon } from 'tdesign-icons-vue-next';
|
import { SearchIcon } from 'tdesign-icons-vue-next';
|
||||||
import { MessagePlugin } from 'tdesign-vue-next';
|
import { MessagePlugin } from 'tdesign-vue-next';
|
||||||
|
@ -78,14 +78,6 @@ import request from '@/utils/request';
|
||||||
|
|
||||||
import { COLUMNS } from './constants';
|
import { COLUMNS } from './constants';
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: 'ListBaseCard',
|
|
||||||
components: {
|
|
||||||
Card,
|
|
||||||
SearchIcon,
|
|
||||||
Trend,
|
|
||||||
},
|
|
||||||
setup() {
|
|
||||||
const data = ref([]);
|
const data = ref([]);
|
||||||
const pagination = ref({
|
const pagination = ref({
|
||||||
defaultPageSize: 20,
|
defaultPageSize: 20,
|
||||||
|
@ -155,44 +147,27 @@ export default defineComponent({
|
||||||
resetIdx();
|
resetIdx();
|
||||||
};
|
};
|
||||||
|
|
||||||
return {
|
const rowKey = 'index';
|
||||||
CONTRACT_STATUS,
|
|
||||||
CONTRACT_TYPES,
|
const rehandleSelectChange = (val: number[]) => {
|
||||||
CONTRACT_PAYMENT_TYPES,
|
|
||||||
COLUMNS,
|
|
||||||
data,
|
|
||||||
searchValue,
|
|
||||||
dataLoading,
|
|
||||||
pagination,
|
|
||||||
confirmBody,
|
|
||||||
confirmVisible,
|
|
||||||
rowKey: 'index',
|
|
||||||
onConfirmDelete,
|
|
||||||
onCancel,
|
|
||||||
selectedRowKeys,
|
|
||||||
rehandleSelectChange(val: number[]) {
|
|
||||||
selectedRowKeys.value = val;
|
selectedRowKeys.value = val;
|
||||||
},
|
};
|
||||||
rehandlePageChange(curr, pageInfo) {
|
const rehandlePageChange = (curr, pageInfo) => {
|
||||||
console.log('分页变化', curr, pageInfo);
|
console.log('分页变化', curr, pageInfo);
|
||||||
},
|
};
|
||||||
rehandleChange(changeParams, triggerAndData) {
|
const rehandleChange = (changeParams, triggerAndData) => {
|
||||||
console.log('统一Change', changeParams, triggerAndData);
|
console.log('统一Change', changeParams, triggerAndData);
|
||||||
},
|
};
|
||||||
handleClickDetail() {
|
const handleClickDetail = () => {
|
||||||
router.push('/detail/base');
|
router.push('/detail/base');
|
||||||
},
|
};
|
||||||
handleSetupContract() {
|
const handleSetupContract = () => {
|
||||||
router.push('/form/base');
|
router.push('/form/base');
|
||||||
},
|
};
|
||||||
handleClickDelete(row: { rowIndex: any }) {
|
const handleClickDelete = (row: { rowIndex: any }) => {
|
||||||
deleteIdx.value = row.rowIndex;
|
deleteIdx.value = row.rowIndex;
|
||||||
confirmVisible.value = true;
|
confirmVisible.value = true;
|
||||||
},
|
|
||||||
};
|
};
|
||||||
},
|
|
||||||
methods: {},
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
@import '@/style/variables';
|
@import '@/style/variables';
|
||||||
|
|
|
@ -58,8 +58,8 @@
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent, ref, computed, onMounted } from 'vue';
|
import { ref, computed, onMounted } from 'vue';
|
||||||
import { SearchIcon } from 'tdesign-icons-vue-next';
|
import { SearchIcon } from 'tdesign-icons-vue-next';
|
||||||
import { MessagePlugin } from 'tdesign-vue-next';
|
import { MessagePlugin } from 'tdesign-vue-next';
|
||||||
import Card from '@/components/card/Card.vue';
|
import Card from '@/components/card/Card.vue';
|
||||||
|
@ -76,14 +76,6 @@ const INITIAL_DATA = {
|
||||||
amount: 0,
|
amount: 0,
|
||||||
};
|
};
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: 'ListBase',
|
|
||||||
components: {
|
|
||||||
SearchIcon,
|
|
||||||
Card,
|
|
||||||
DialogForm,
|
|
||||||
},
|
|
||||||
setup() {
|
|
||||||
const pagination = ref({ current: 1, pageSize: 12, total: 0 });
|
const pagination = ref({ current: 1, pageSize: 12, total: 0 });
|
||||||
const deleteProduct = ref(undefined);
|
const deleteProduct = ref(undefined);
|
||||||
|
|
||||||
|
@ -121,43 +113,31 @@ export default defineComponent({
|
||||||
const confirmVisible = ref(false);
|
const confirmVisible = ref(false);
|
||||||
const formData = ref({ ...INITIAL_DATA });
|
const formData = ref({ ...INITIAL_DATA });
|
||||||
|
|
||||||
return {
|
const onPageSizeChange = (size: number) => {
|
||||||
pagination,
|
|
||||||
productList,
|
|
||||||
dataLoading,
|
|
||||||
formDialogVisible,
|
|
||||||
confirmBody,
|
|
||||||
searchValue,
|
|
||||||
confirmVisible,
|
|
||||||
formData,
|
|
||||||
onPageSizeChange(size: number) {
|
|
||||||
pagination.value.pageSize = size;
|
pagination.value.pageSize = size;
|
||||||
pagination.value.current = 1;
|
pagination.value.current = 1;
|
||||||
},
|
};
|
||||||
onCurrentChange(current: number) {
|
const onCurrentChange = (current: number) => {
|
||||||
pagination.value.current = current;
|
pagination.value.current = current;
|
||||||
},
|
};
|
||||||
handleDeleteItem(product) {
|
const handleDeleteItem = (product) => {
|
||||||
confirmVisible.value = true;
|
confirmVisible.value = true;
|
||||||
deleteProduct.value = product;
|
deleteProduct.value = product;
|
||||||
},
|
};
|
||||||
onConfirmDelete() {
|
const onConfirmDelete = () => {
|
||||||
const { index } = deleteProduct.value;
|
const { index } = deleteProduct.value;
|
||||||
productList.value.splice(index - 1, 1);
|
productList.value.splice(index - 1, 1);
|
||||||
confirmVisible.value = false;
|
confirmVisible.value = false;
|
||||||
MessagePlugin.success('删除成功');
|
MessagePlugin.success('删除成功');
|
||||||
},
|
};
|
||||||
onCancel() {
|
const onCancel = () => {
|
||||||
deleteProduct.value = undefined;
|
deleteProduct.value = undefined;
|
||||||
formData.value = { ...INITIAL_DATA };
|
formData.value = { ...INITIAL_DATA };
|
||||||
},
|
};
|
||||||
handleManageProduct(product) {
|
const handleManageProduct = (product) => {
|
||||||
formDialogVisible.value = true;
|
formDialogVisible.value = true;
|
||||||
formData.value = { ...product, status: product?.isSetup ? '1' : '0' };
|
formData.value = { ...product, status: product?.isSetup ? '1' : '0' };
|
||||||
},
|
|
||||||
};
|
};
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
@import '@/style/variables.less';
|
@import '@/style/variables.less';
|
||||||
|
|
|
@ -102,8 +102,8 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent, ref, computed, onMounted } from 'vue';
|
import { ref, computed, onMounted } from 'vue';
|
||||||
import { MessagePlugin } from 'tdesign-vue-next';
|
import { MessagePlugin } from 'tdesign-vue-next';
|
||||||
import Trend from '@/components/trend/index.vue';
|
import Trend from '@/components/trend/index.vue';
|
||||||
import request from '@/utils/request';
|
import request from '@/utils/request';
|
||||||
|
@ -167,18 +167,11 @@ const searchForm = {
|
||||||
type: '',
|
type: '',
|
||||||
};
|
};
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: 'ListTable',
|
|
||||||
components: {
|
|
||||||
Trend,
|
|
||||||
},
|
|
||||||
setup() {
|
|
||||||
const formData = ref({ ...searchForm });
|
const formData = ref({ ...searchForm });
|
||||||
const tableConfig = {
|
const rowKey = 'index';
|
||||||
rowKey: 'index',
|
const verticalAlign = 'top';
|
||||||
verticalAlign: 'top',
|
const hover = true;
|
||||||
hover: true,
|
|
||||||
};
|
|
||||||
const pagination = ref({
|
const pagination = ref({
|
||||||
defaultPageSize: 20,
|
defaultPageSize: 20,
|
||||||
total: 100,
|
total: 100,
|
||||||
|
@ -238,44 +231,25 @@ export default defineComponent({
|
||||||
fetchData();
|
fetchData();
|
||||||
});
|
});
|
||||||
|
|
||||||
return {
|
const handleClickDelete = ({ row }) => {
|
||||||
data,
|
|
||||||
COLUMNS,
|
|
||||||
CONTRACT_STATUS,
|
|
||||||
CONTRACT_STATUS_OPTIONS,
|
|
||||||
CONTRACT_TYPES,
|
|
||||||
CONTRACT_TYPE_OPTIONS,
|
|
||||||
CONTRACT_PAYMENT_TYPES,
|
|
||||||
formData,
|
|
||||||
pagination,
|
|
||||||
confirmVisible,
|
|
||||||
confirmBody,
|
|
||||||
...tableConfig,
|
|
||||||
onConfirmDelete,
|
|
||||||
onCancel,
|
|
||||||
dataLoading,
|
|
||||||
handleClickDelete({ row }) {
|
|
||||||
deleteIdx.value = row.rowIndex;
|
deleteIdx.value = row.rowIndex;
|
||||||
confirmVisible.value = true;
|
confirmVisible.value = true;
|
||||||
},
|
|
||||||
onReset(val) {
|
|
||||||
console.log(val);
|
|
||||||
},
|
|
||||||
onSubmit(val) {
|
|
||||||
console.log(val);
|
|
||||||
},
|
|
||||||
rehandlePageChange(curr, pageInfo) {
|
|
||||||
console.log('分页变化', curr, pageInfo);
|
|
||||||
},
|
|
||||||
rehandleChange(changeParams, triggerAndData) {
|
|
||||||
console.log('统一Change', changeParams, triggerAndData);
|
|
||||||
},
|
|
||||||
rehandleClickOp({ text, row }) {
|
|
||||||
console.log(text, row);
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
},
|
const onReset = (val) => {
|
||||||
});
|
console.log(val);
|
||||||
|
};
|
||||||
|
const onSubmit = (val) => {
|
||||||
|
console.log(val);
|
||||||
|
};
|
||||||
|
const rehandlePageChange = (curr, pageInfo) => {
|
||||||
|
console.log('分页变化', curr, pageInfo);
|
||||||
|
};
|
||||||
|
const rehandleChange = (changeParams, triggerAndData) => {
|
||||||
|
console.log('统一Change', changeParams, triggerAndData);
|
||||||
|
};
|
||||||
|
const rehandleClickOp = ({ text, row }) => {
|
||||||
|
console.log(text, row);
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less">
|
<style lang="less">
|
||||||
|
|
|
@ -1,14 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<common-table />
|
<common-table />
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent } from 'vue';
|
|
||||||
import CommonTable from '../components/CommonTable.vue';
|
import CommonTable from '../components/CommonTable.vue';
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: 'ListBase',
|
|
||||||
components: {
|
|
||||||
CommonTable,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -15,38 +15,24 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent, ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
import { SearchIcon } from 'tdesign-icons-vue-next';
|
import { SearchIcon } from 'tdesign-icons-vue-next';
|
||||||
import { prefix } from '@/config/global';
|
|
||||||
|
|
||||||
import { TREE_DATA } from './constants';
|
import { TREE_DATA } from './constants';
|
||||||
import CommonTable from '../components/CommonTable.vue';
|
import CommonTable from '../components/CommonTable.vue';
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: 'ListTree',
|
|
||||||
components: {
|
|
||||||
SearchIcon,
|
|
||||||
CommonTable,
|
|
||||||
},
|
|
||||||
setup() {
|
|
||||||
const filterByText = ref();
|
const filterByText = ref();
|
||||||
const filterText = ref();
|
const filterText = ref();
|
||||||
return {
|
|
||||||
prefix,
|
const expanded = ['0', '0-0', '0-1', '0-2', '0-3', '0-4'];
|
||||||
TREE_DATA,
|
|
||||||
expanded: ['0', '0-0', '0-1', '0-2', '0-3', '0-4'],
|
const onInput = () => {
|
||||||
filterText,
|
|
||||||
filterByText,
|
|
||||||
onInput() {
|
|
||||||
filterByText.value = (node) => {
|
filterByText.value = (node) => {
|
||||||
const rs = node.label.indexOf(filterText.value) >= 0;
|
const rs = node.label.indexOf(filterText.value) >= 0;
|
||||||
return rs;
|
return rs;
|
||||||
};
|
};
|
||||||
},
|
|
||||||
};
|
};
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
@import '@/style/variables.less';
|
@import '@/style/variables.less';
|
||||||
|
|
|
@ -15,14 +15,10 @@
|
||||||
</header>
|
</header>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent } from 'vue';
|
|
||||||
import { useStore } from 'vuex';
|
import { useStore } from 'vuex';
|
||||||
import LogoFullIcon from '@/assets/assets-logo-full.svg?component';
|
import LogoFullIcon from '@/assets/assets-logo-full.svg?component';
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
components: { LogoFullIcon },
|
|
||||||
setup() {
|
|
||||||
const store = useStore();
|
const store = useStore();
|
||||||
const toggleSettingPanel = () => {
|
const toggleSettingPanel = () => {
|
||||||
store.commit('setting/toggleSettingPanel', true);
|
store.commit('setting/toggleSettingPanel', true);
|
||||||
|
@ -35,14 +31,6 @@ export default defineComponent({
|
||||||
const navToHelper = () => {
|
const navToHelper = () => {
|
||||||
window.open('http://tdesign.tencent.com/starter/docs/get-started');
|
window.open('http://tdesign.tencent.com/starter/docs/get-started');
|
||||||
};
|
};
|
||||||
|
|
||||||
return {
|
|
||||||
toggleSettingPanel,
|
|
||||||
navToGitHub,
|
|
||||||
navToHelper,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
|
|
|
@ -70,8 +70,8 @@
|
||||||
</t-form>
|
</t-form>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent, ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
import { useRouter } from 'vue-router';
|
import { useRouter } from 'vue-router';
|
||||||
import { useStore } from 'vuex';
|
import { useStore } from 'vuex';
|
||||||
import QrcodeVue from 'qrcode.vue';
|
import QrcodeVue from 'qrcode.vue';
|
||||||
|
@ -93,9 +93,6 @@ const FORM_RULES = {
|
||||||
verifyCode: [{ required: true, message: '验证码必填', type: 'error' }],
|
verifyCode: [{ required: true, message: '验证码必填', type: 'error' }],
|
||||||
};
|
};
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
components: { QrcodeVue },
|
|
||||||
setup() {
|
|
||||||
const type = ref('password');
|
const type = ref('password');
|
||||||
|
|
||||||
const formData = ref({ ...INITIAL_DATA });
|
const formData = ref({ ...INITIAL_DATA });
|
||||||
|
@ -124,17 +121,4 @@ export default defineComponent({
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
return {
|
|
||||||
FORM_RULES,
|
|
||||||
formData,
|
|
||||||
showPsw,
|
|
||||||
type,
|
|
||||||
switchType,
|
|
||||||
countDown,
|
|
||||||
handleCounter,
|
|
||||||
onSubmit,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -70,8 +70,8 @@
|
||||||
</t-form>
|
</t-form>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent, ref } from 'vue';
|
import { defineEmits, ref } from 'vue';
|
||||||
import { MessagePlugin } from 'tdesign-vue-next';
|
import { MessagePlugin } from 'tdesign-vue-next';
|
||||||
import { useCounter } from '@/hooks';
|
import { useCounter } from '@/hooks';
|
||||||
|
|
||||||
|
@ -93,10 +93,7 @@ const FORM_RULES = {
|
||||||
verifyCode: [{ required: true, message: '验证码必填', type: 'error' }],
|
verifyCode: [{ required: true, message: '验证码必填', type: 'error' }],
|
||||||
};
|
};
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
setup(props, ctx) {
|
|
||||||
const type = ref('phone');
|
const type = ref('phone');
|
||||||
const emailOptions = ref([]);
|
|
||||||
|
|
||||||
const form = ref();
|
const form = ref();
|
||||||
const formData = ref({ ...INITIAL_DATA });
|
const formData = ref({ ...INITIAL_DATA });
|
||||||
|
@ -105,6 +102,8 @@ export default defineComponent({
|
||||||
|
|
||||||
const [countDown, handleCounter] = useCounter();
|
const [countDown, handleCounter] = useCounter();
|
||||||
|
|
||||||
|
const emit = defineEmits(['registerSuccess']);
|
||||||
|
|
||||||
const onSubmit = ({ validateResult }) => {
|
const onSubmit = ({ validateResult }) => {
|
||||||
if (validateResult === true) {
|
if (validateResult === true) {
|
||||||
if (!formData.value.checked) {
|
if (!formData.value.checked) {
|
||||||
|
@ -112,7 +111,6 @@ export default defineComponent({
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
MessagePlugin.success('注册成功');
|
MessagePlugin.success('注册成功');
|
||||||
const { emit } = ctx;
|
|
||||||
emit('registerSuccess');
|
emit('registerSuccess');
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -121,19 +119,4 @@ export default defineComponent({
|
||||||
form.value.reset();
|
form.value.reset();
|
||||||
type.value = val;
|
type.value = val;
|
||||||
};
|
};
|
||||||
|
|
||||||
return {
|
|
||||||
FORM_RULES,
|
|
||||||
formData,
|
|
||||||
showPsw,
|
|
||||||
form,
|
|
||||||
type,
|
|
||||||
emailOptions,
|
|
||||||
countDown,
|
|
||||||
handleCounter,
|
|
||||||
onSubmit,
|
|
||||||
switchType,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -22,34 +22,18 @@
|
||||||
<footer class="copyright">Copyright @ 2021-2022 Tencent. All Rights Reserved</footer>
|
<footer class="copyright">Copyright @ 2021-2022 Tencent. All Rights Reserved</footer>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent, ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
|
|
||||||
import Login from './components/Login.vue';
|
import Login from './components/Login.vue';
|
||||||
import Register from './components/Register.vue';
|
import Register from './components/Register.vue';
|
||||||
import LoginHeader from './components/Header.vue';
|
import LoginHeader from './components/Header.vue';
|
||||||
import TdesignSetting from '@/layouts/setting.vue';
|
import TdesignSetting from '@/layouts/setting.vue';
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: 'LoginIndex',
|
|
||||||
components: {
|
|
||||||
Login,
|
|
||||||
Register,
|
|
||||||
LoginHeader,
|
|
||||||
TdesignSetting,
|
|
||||||
},
|
|
||||||
setup() {
|
|
||||||
const type = ref('login');
|
const type = ref('login');
|
||||||
const switchType = (val: string) => {
|
const switchType = (val: string) => {
|
||||||
type.value = val;
|
type.value = val;
|
||||||
};
|
};
|
||||||
|
|
||||||
return {
|
|
||||||
type,
|
|
||||||
switchType,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
<style lang="less">
|
<style lang="less">
|
||||||
@import url('./index.less');
|
@import url('./index.less');
|
||||||
|
|
|
@ -4,12 +4,6 @@
|
||||||
</result>
|
</result>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent } from 'vue';
|
|
||||||
import Result from '@/components/result/index.vue';
|
import Result from '@/components/result/index.vue';
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: 'Result403',
|
|
||||||
components: { Result },
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -4,12 +4,6 @@
|
||||||
</result>
|
</result>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent } from 'vue';
|
|
||||||
import Result from '@/components/result/index.vue';
|
import Result from '@/components/result/index.vue';
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: 'Result404',
|
|
||||||
components: { Result },
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -4,12 +4,6 @@
|
||||||
</result>
|
</result>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent } from 'vue';
|
|
||||||
import Result from '@/components/result/index.vue';
|
import Result from '@/components/result/index.vue';
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: 'Result500',
|
|
||||||
components: { Result },
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -19,15 +19,9 @@
|
||||||
</result>
|
</result>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent } from 'vue';
|
|
||||||
import Result from '@/components/result/index.vue';
|
import Result from '@/components/result/index.vue';
|
||||||
import Thumbnail from '@/components/thumbnail/index.vue';
|
import Thumbnail from '@/components/thumbnail/index.vue';
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: 'ResultBrowserIncompatible',
|
|
||||||
components: { Result, Thumbnail },
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
@import '@/style/variables.less';
|
@import '@/style/variables.less';
|
||||||
|
|
|
@ -10,14 +10,6 @@
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
|
||||||
import { defineComponent } from 'vue';
|
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: 'ResultSuccess',
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
@import '@/style/variables.less';
|
@import '@/style/variables.less';
|
||||||
|
|
||||||
|
|
|
@ -7,12 +7,6 @@
|
||||||
</result>
|
</result>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent } from 'vue';
|
|
||||||
import Result from '@/components/result/index.vue';
|
import Result from '@/components/result/index.vue';
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: 'ResultNetworkError',
|
|
||||||
components: { Result },
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -10,14 +10,6 @@
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
|
||||||
import { defineComponent } from 'vue';
|
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: 'ResultSuccess',
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
@import '@/style/variables.less';
|
@import '@/style/variables.less';
|
||||||
|
|
||||||
|
|
|
@ -89,8 +89,8 @@
|
||||||
</t-col>
|
</t-col>
|
||||||
</t-row>
|
</t-row>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import { defineComponent, nextTick, onMounted, onUnmounted, watch, computed } from 'vue';
|
import { nextTick, onMounted, onUnmounted, watch, computed } from 'vue';
|
||||||
import { useStore } from 'vuex';
|
import { useStore } from 'vuex';
|
||||||
import * as echarts from 'echarts/core';
|
import * as echarts from 'echarts/core';
|
||||||
import { GridComponent, TooltipComponent, LegendComponent } from 'echarts/components';
|
import { GridComponent, TooltipComponent, LegendComponent } from 'echarts/components';
|
||||||
|
@ -109,11 +109,6 @@ import Card from '@/components/card/index.vue';
|
||||||
|
|
||||||
echarts.use([GridComponent, TooltipComponent, LineChart, CanvasRenderer, LegendComponent]);
|
echarts.use([GridComponent, TooltipComponent, LineChart, CanvasRenderer, LegendComponent]);
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
components: {
|
|
||||||
Card,
|
|
||||||
},
|
|
||||||
setup() {
|
|
||||||
let lineContainer: HTMLElement;
|
let lineContainer: HTMLElement;
|
||||||
let lineChart: echarts.ECharts;
|
let lineChart: echarts.ECharts;
|
||||||
const store = useStore();
|
const store = useStore();
|
||||||
|
@ -176,17 +171,6 @@ export default defineComponent({
|
||||||
changeChartsTheme([lineChart]);
|
changeChartsTheme([lineChart]);
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
return {
|
|
||||||
LAST_7_DAYS,
|
|
||||||
USER_INFO_LIST,
|
|
||||||
TEAM_MEMBERS,
|
|
||||||
PRODUCT_LIST,
|
|
||||||
onLineChange,
|
|
||||||
getIcon,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
@import url('./index.less');
|
@import url('./index.less');
|
||||||
|
|
Loading…
Reference in New Issue
Block a user