7bd866831780abcf5a59c4cbb7d1be456eea7c99..e0a8ce586ded0d6043b1e5ec3bb050f37622897f
5 天以前 wangzhibo
add 碳积分支付
e0a8ce 对比 | 目录
6 天以前 wangzhibo
bug fixing
da0230 对比 | 目录
4个文件已修改
13 ■■■■ 已修改文件
.gitignore 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/modules/order/dict/index.ts 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/modules/order/views/refund.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/modules/shop/views/recycleorder.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
.gitignore
@@ -1,9 +1,8 @@
.DS_Store
node_modules/
/dist/
/build/
dist-ssr/
build/cool/eps.d.ts
build/cool/eps.json
# Log files
npm-debug.log*
src/modules/order/dict/index.ts
@@ -12,5 +12,6 @@
export const PayType = [
    { label: "待支付", value: 0, type: "info" },
    { label: "微信", value: 1, color: "#2aae67" },
    { label: "支付宝", value: 2, color: "#1678FF" }
    { label: "支付宝", value: 2, color: "#1678FF" },
    { label: "碳积分", value: 3, color: "#1a16ff" }
];
src/modules/order/views/refund.vue
@@ -55,7 +55,8 @@
const options = reactive({
    payType: [
        { label: "微信", value: 1, color: "#2aae67" },
        { label: "支付宝", value: 2, color: "1678FF" }
        { label: "支付宝", value: 2, color: "1678FF" },
        { label: "碳积分", value: 3, color: "1a16ff" },
    ],
    status: [
        { label: "申请中", value: 0, type: "info" },
src/modules/shop/views/recycleorder.vue
@@ -140,7 +140,7 @@
        },
        {
            label: t('碳积分'),
            prop: "carbonPoint",
            prop: "totalCarbonPoint",
            hook: "number",
            component: { name: "el-input-number", props: { min: 0 } },
            span: 12,
@@ -178,7 +178,7 @@
        { label: t('预约ID'), prop: "appointmentId", minWidth: 120 },
        { label: t('状态'), prop: "status", minWidth: 120, dict: options.status },
        { label: t('总重量'), prop: "totalWeight", minWidth: 140, sortable: "custom" },
        { label: t('碳积分'), prop: "carbonPoint", minWidth: 140, sortable: "custom" },
        { label: t('碳积分'), prop: "totalCarbonPoint", minWidth: 140, sortable: "custom" },
        {
            label: t('完成时间'),
            prop: "finishTime",