|
@@ -39,7 +39,11 @@
|
|
|
<descriptions-item label="订单类型:">{{
|
|
|
auditDto.payUserType | payUserTypeFormat
|
|
|
}}</descriptions-item>
|
|
|
- <descriptions-item :span="3" label="备注:">{{ musicGroupPaymentCalenders[0] ? musicGroupPaymentCalenders[0].memo : null }}</descriptions-item>
|
|
|
+ <descriptions-item :span="3" label="备注:">
|
|
|
+ <span style="display: inline-block;max-width: 100%;">
|
|
|
+ <overflow-text :text="musicGroupPaymentCalenders[0] ? musicGroupPaymentCalenders[0].memo : null"></overflow-text>
|
|
|
+ </span>
|
|
|
+ </descriptions-item>
|
|
|
</descriptions>
|
|
|
<el-alert title="课程信息"
|
|
|
:closable="false"
|
|
@@ -196,6 +200,7 @@ import Vue from "vue";
|
|
|
import numeral from 'numeral'
|
|
|
import { musicGroupPaymentCalenderView } from "../api";
|
|
|
import descriptions from "@/components/Descriptions";
|
|
|
+import Item from '@/layout/components/Sidebar/Item.vue';
|
|
|
Vue.use(descriptions);
|
|
|
const initData = {
|
|
|
auditDto: {},
|
|
@@ -208,6 +213,7 @@ const initData = {
|
|
|
username: '',
|
|
|
};
|
|
|
export default {
|
|
|
+ components: { Item },
|
|
|
props: ["detail"],
|
|
|
data () {
|
|
|
return {
|