leisure-core 0.4.30 → 0.4.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -36,6 +36,13 @@
|
|
|
36
36
|
<span>¥{{ formatMoney(scope.row.commissions) }}</span>
|
|
37
37
|
</template>
|
|
38
38
|
</vxe-column>
|
|
39
|
+
<vxe-column align="center" title="状态">
|
|
40
|
+
<template slot-scope="scope">
|
|
41
|
+
<span v-if="scope.row.cstatus==0">正常</span>
|
|
42
|
+
<span v-if="scope.row.cstatus==1">已经核销</span>
|
|
43
|
+
<span v-if="scope.row.cstatus==0">无效-已经退票</span>
|
|
44
|
+
</template>
|
|
45
|
+
</vxe-column>
|
|
39
46
|
<vxe-column align="center" title="交易日期">
|
|
40
47
|
<template slot-scope="scope">
|
|
41
48
|
<span>{{ parseTime(scope.row.cdate) }}</span>
|
package/le-cp/src/sub.vue
CHANGED
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
</el-form-item>
|
|
29
29
|
<el-form-item v-rfooter>
|
|
30
30
|
<div style="display: flex">
|
|
31
|
-
<div v-if="!form.cp_link_nick" class="warning-text">
|
|
31
|
+
<!-- <div v-if="!form.cp_link_nick" class="warning-text">
|
|
32
32
|
必须绑定联系人,未绑定,无法统计佣金
|
|
33
|
-
</div>
|
|
33
|
+
</div> -->
|
|
34
34
|
<el-button type="primary" @click="onSubmit">保存</el-button>
|
|
35
35
|
<le-button-qr
|
|
36
36
|
:qrCodeUrl="qrcode"
|