1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<template>
<div>
<div style="display: flex;align-items: center;justify-content: space-between;" v-if="isShow">
<div>
<a-input-search v-model:value="value" placeholder="请输入商品名" style="width: 200px;margin-left: 20px;"
@search="onSearch" />
<!-- <a-space direction="vertical">
<a-select v-model:value="value1" :size="size" style="width: 200px;margin-left: 20px;" :options="options"></a-select>
</a-space> -->
</div>
<div>
<a-button type="primary" block @click="onCreatePay">新建支付项</a-button>
</div>
</div>
<div style="margin-top: 10px;" v-if="isShow">
<a-table :dataSource="list" :columns="columns">
<template #bodyCell="{ column, record }">
<div v-if="column.key == 'picurl'">
<div style="display:flex;align-items: center;">
<a-image :width="100" :src="record.picurl" />
<div>{{ record.subject }}
</div>
</div>
</div>
<div v-else-if="column.key == 'status'">
<div v-if="record.status == 0" style="color: rgb(12, 191, 33);">
正常
</div>
<div v-else-if="record.status == 1" style="color: #e6a23c;">
预警额度
</div>
<div v-else style="color: #f56c6c;">
风控
</div>
</div>
<div v-if="column.key == 'tags'">
<a-button type="primary" @click="onEdit">编辑</a-button>
<a-button type="primary" style="margin-left: 20px;" @click="onCopy">支付链接</a-button>
<a-button type="primary" style="margin-left: 20px;">统计</a-button>
<a-popconfirm
title="确定下架这条数据"
ok-text="确定"
cancel-text="取消"
@confirm="onDel(record)"
>
<a-button type="primary" style="margin-left: 20px">删除</a-button>
</a-popconfirm>
</div>
</template>
</a-table>
</div>
<div v-else>
<CreatePay @onBack="onBack"></CreatePay>
</div>
<a-modal v-model:visible="visible" title="Basic Modal" @ok="handleOk">
<p>Some contents...</p>
<p>Some contents...</p>
<p>Some contents...</p>
</a-modal>
</div>
</template>
<script lang="ts" setup>
import { ref, defineExpose, onMounted } from 'vue';
import type { SelectProps } from 'ant-design-vue';
import { getUid } from '@/utils/userInfo'
import { onUpdateGoodsPay, onfindby } from '@/api/index'
import CreatePay from './components/createpay/index.vue'
const popupScroll = () => {
console.log('popupScroll');
};
const value = ref<string>('');
const optionss = ref<Array<Object>>([])
const options = [...Array(25)].map((_, i) => ({ value: (i + 10).toString(36) + (i + 1) }))
let list = ref()
let isShow = ref(true)
const columns = [
{
title: '支付项目名称',
dataIndex: 'picurl',
key: 'picurl',
},
{
title: '绑定商品编号',
dataIndex: 'goodsid',
key: 'goodsid',
},
{
title: '支付金额',
dataIndex: 'price',
key: 'price',
},
{
title: '状态',
dataIndex: 'status',
key: 'status',
},
{
title: '创始人',
dataIndex: 'userid',
key: 'userid',
},
{
title: '备注',
dataIndex: 'body',
key: 'body',
},
{
title: '操作',
dataIndex: 'tags',
key: 'tags',
},
]
const visible = ref<boolean>(false);
const showModal = () => {
visible.value = true;
};
const handleOk = (e: MouseEvent) => {
console.log(e);
visible.value = false;
};
const onEdit = (e: any) => {
visible.value =!visible.value
}
const onSearch = async () => {
const params = {
status: "0",
name: value.value,
uid: getUid()
}
const data = await onfindby(params)
list.value = data.data
console.log(list, 'list');
};
const onBack = (e: Number) => {
isShow.value = !isShow.value;
onSearch()
};
const onCreatePay = async()=>{
isShow.value = !isShow.value
}
const onCopy =()=>{
console.log(11);
}
const onDel = async(e:any)=>{
console.log(e,'e');
e.status = '1'
e.uid =getUid()
e.goodspayditch = e.goodspayditch2
e.goodsid=e.goodspayditch[0].goodsid
const data = await onUpdateGoodsPay(e)
console.log(data,'data');
}
onMounted(async () => {
onSearch()
})
defineExpose({
size: ref<SelectProps['size']>('middle'),
value1: ref('a1'),
options,
value,
isShow,
onSearch,
columns,
onEdit,
optionss,
onCreatePay,
onBack,
onCopy,
onDel
})
</script>
<style lang="less" scoped>
</style>