-
{{ value }}
-
{{ label }}
+
{{ value }}
+
{{ label }}
+
{{ subtitle }}
@@ -24,6 +25,10 @@ export default {
type: String,
required: true
},
+ subtitle: {
+ type: String,
+ default: ''
+ },
icon: {
type: String,
required: true
@@ -35,15 +40,64 @@ export default {
endColor: {
type: String,
required: true
+ },
+ width: {
+ type: [Number, String],
+ default: '100%'
+ },
+ height: {
+ type: [Number, String],
+ default: 120
}
},
computed: {
+ // 转换宽高为像素值
+ sizeInPx() {
+ const width = typeof this.width === 'number' ? `${this.width}px` : this.width;
+ const height = typeof this.height === 'number' ? `${this.height}px` : this.height;
+ return { width, height };
+ },
+ // 根据高度动态计算字体大小
+ fontSizes() {
+ const height = typeof this.height === 'number' ? this.height : parseInt(this.height);
+ const baseHeight = 120; // 基准高度
+ const scale = height / baseHeight;
+ return {
+ value: Math.max(16, Math.round(28 * scale)),
+ label: Math.max(12, Math.round(16 * scale)),
+ subtitle: Math.max(10, Math.round(12 * scale)),
+ icon: Math.max(32, Math.round(64 * scale))
+ };
+ },
+ cardStyle() {
+ return {
+ background: `linear-gradient(135deg, ${this.startColor}15, ${this.endColor}15)`,
+ width: this.sizeInPx.width,
+ height: this.sizeInPx.height
+ }
+ },
iconStyle() {
return {
background: `linear-gradient(135deg, ${this.startColor}, ${this.endColor})`,
'-webkit-background-clip': 'text',
'-webkit-text-fill-color': 'transparent',
- 'background-clip': 'text'
+ 'background-clip': 'text',
+ 'font-size': `${this.fontSizes.icon}px`
+ }
+ },
+ valueStyle() {
+ return {
+ 'font-size': `${this.fontSizes.value}px`
+ }
+ },
+ labelStyle() {
+ return {
+ 'font-size': `${this.fontSizes.label}px`
+ }
+ },
+ subtitleStyle() {
+ return {
+ 'font-size': `${this.fontSizes.subtitle}px`
}
}
}
@@ -52,14 +106,13 @@ export default {
\ No newline at end of file
diff --git a/src/views/bst/model/components/ModelEditDialog.vue b/src/views/bst/model/components/ModelEditDialog.vue
index ebbe71f..decb439 100644
--- a/src/views/bst/model/components/ModelEditDialog.vue
+++ b/src/views/bst/model/components/ModelEditDialog.vue
@@ -47,12 +47,13 @@
-
@@ -72,6 +73,7 @@ import AreaRemoteSelect from '@/components/Business/Area/AreaRemoteSelect.vue';
import { RoleKeys } from '@/utils/enums';
import SuitInput from '@/components/Business/Suit/SuitInput.vue';
import { mapGetters } from 'vuex';
+import SuitRemoteSelect from '@/components/Business/Suit/SuitRemoteSelect.vue';
export default {
name: "ModelEditDialog",
@@ -79,7 +81,8 @@ export default {
FormCol,
UserInput,
AreaRemoteSelect,
- SuitInput
+ SuitInput,
+ SuitRemoteSelect
},
props: {
visible: {
@@ -131,7 +134,7 @@ export default {
}
},
computed: {
- ...mapGetters(['userId']),
+ ...mapGetters(['userId', 'nickName']),
dialogVisible: {
get() {
return this.visible;
@@ -146,11 +149,15 @@ export default {
userId: this.form.userId
}
},
- suitNames() {
+ // 套餐初始化选项
+ initSuitOptions() {
if (this.form.suitList == null || this.form.suitList.length === 0) {
- return "";
+ return [];
}
- return this.form.suitList.map(item => item.name).join(',');
+ return this.form.suitList.map(item => ({
+ id: item.id,
+ name: item.name
+ }));
}
},
methods: {
@@ -161,6 +168,7 @@ export default {
this.$message.warning("由于更换了所属用户,套餐数据已清空");
}
},
+ // 套餐获取选项前回调
beforeOpenSuit() {
if (this.form.userId == null) {
this.$modal.msgError("请先选择所属用户");
@@ -194,7 +202,7 @@ export default {
// dto
suitIds: [],
// vo
- suitNames: null,
+ userName: this.nickName,
// 初始化数据
...this.initData
};
diff --git a/src/views/bst/order/components/OrderVerifyDialog.vue b/src/views/bst/order/components/OrderVerifyDialog.vue
new file mode 100644
index 0000000..9fd5296
--- /dev/null
+++ b/src/views/bst/order/components/OrderVerifyDialog.vue
@@ -0,0 +1,115 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/bst/order/index.vue b/src/views/bst/order/index.vue
index 62197a7..ba9e74e 100644
--- a/src/views/bst/order/index.vue
+++ b/src/views/bst/order/index.vue
@@ -231,6 +231,14 @@
v-has-permi="['bst:order:refund']"
v-show="OrderStatus.canRefund().includes(scope.row.status)"
>退款
+ 审核
@@ -244,6 +252,8 @@
/>
+
+
@@ -252,7 +262,8 @@ import { listOrder, endOrder } from "@/api/bst/order";
import { $showColumns } from '@/utils/mixins';
import FormCol from "@/components/FormCol/index.vue";
import { OrderStatus } from "@/utils/enums";
-import OrderRefundDialog from "./components/OrderRefundDialog.vue";
+import OrderRefundDialog from "@/views/bst/order/components/OrderRefundDialog.vue";
+import OrderVerifyDialog from "@/views/bst/order/components/OrderVerifyDialog.vue";
// 默认排序字段
const defaultSort = {
@@ -264,7 +275,7 @@ export default {
name: "Order",
mixins: [$showColumns],
dicts: ['order_status', 'suit_type', 'order_return_type', 'order_return_mode', 'suit_rental_unit', 'suit_riding_rule'],
- components: {FormCol, OrderRefundDialog},
+ components: {FormCol, OrderRefundDialog, OrderVerifyDialog},
data() {
return {
span: 24,
@@ -274,7 +285,7 @@ export default {
{key: 'id', visible: false, label: 'ID', minWidth: null, sortable: true, overflow: false, align: 'center', width: "80"},
{key: 'no', visible: true, label: '订单号', minWidth: null, sortable: true, overflow: false, align: 'center', width: "100"},
{key: 'suitName', visible: true, label: '套餐', minWidth: "200", sortable: true, overflow: false, align: 'left', width: null},
- {key: 'device', visible: true, label: '设备', minWidth: "150", sortable: false, overflow: false, align: 'left', width: null},
+ {key: 'device', visible: true, label: '当前设备', minWidth: "150", sortable: false, overflow: false, align: 'left', width: null},
{key: 'totalFee', visible: true, label: '费用', minWidth: "230", sortable: false, overflow: false, align: 'left', width: null},
{key: 'useInfo', visible: true, label: '使用', minWidth: "130", sortable: false, overflow: false, align: 'left', width: null},
{key: 'time', visible: true, label: '时间', minWidth: "180", sortable: false, overflow: false, align: 'left', width: null},
@@ -330,13 +341,18 @@ export default {
},
row: {},
showRefundDialog: false,
+ showVerifyDialog: false,
};
},
created() {
this.getList();
},
methods: {
+ handleVerify(row) {
+ this.showVerifyDialog = true;
+ },
handleView(row) {
+ this.row = row;
this.$router.push(`/view/order/${row.id}`)
},
handleEnd(row) {
diff --git a/src/views/bst/order/view/view.vue b/src/views/bst/order/view/view.vue
index bf22c5f..4067862 100644
--- a/src/views/bst/order/view/view.vue
+++ b/src/views/bst/order/view/view.vue
@@ -3,8 +3,37 @@
+
+ 结束
+ 退款
+ 审核
+
-
+
{{ detail.no | dv}}
@@ -37,7 +66,7 @@
-
+
{{ detail.suitName }}
@@ -53,7 +82,7 @@
-
+
@@ -100,31 +129,38 @@
-
+
-
+
-
+
-
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/system/user/components/UserFormDialog.vue b/src/views/system/user/components/UserFormDialog.vue
index 7073e8d..e0af23f 100644
--- a/src/views/system/user/components/UserFormDialog.vue
+++ b/src/views/system/user/components/UserFormDialog.vue
@@ -1,12 +1,12 @@