hookehuyr

✨ feat: 甲方需求调整删除证书上面日期

...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
33 </div> 33 </div>
34 </div> 34 </div>
35 </div> 35 </div>
36 - <div class="date">{{ item.donate_date }}</div> 36 + <!-- <div class="date">{{ item.donate_date }}</div> -->
37 <div class="text"> 37 <div class="text">
38 证书编号:{{ item.cert_code }} 38 证书编号:{{ item.cert_code }}
39 </div> 39 </div>
...@@ -55,11 +55,9 @@ ...@@ -55,11 +55,9 @@
55 </template> 55 </template>
56 56
57 <script setup> 57 <script setup>
58 -// TODO:图片需要更换
59 import icon_cert from '@images/zhengshu@2x.png' 58 import icon_cert from '@images/zhengshu@2x.png'
60 import icon_stamp01 from '@images/stamp01.png' 59 import icon_stamp01 from '@images/stamp01.png'
61 import icon_stamp02 from '@images/stamp02.png' 60 import icon_stamp02 from '@images/stamp02.png'
62 -import donate_bg_c_2 from '@images/donate_bg_c_2.png'
63 import donate_top from '@images/donate_top.png' 61 import donate_top from '@images/donate_top.png'
64 import donate_center from '@images/donate_center.png' 62 import donate_center from '@images/donate_center.png'
65 import donate_bottom from '@images/donate_bottom.png' 63 import donate_bottom from '@images/donate_bottom.png'
...@@ -141,7 +139,7 @@ export default { ...@@ -141,7 +139,7 @@ export default {
141 .organizer { 139 .organizer {
142 margin: 1rem; 140 margin: 1rem;
143 overflow: hidden; 141 overflow: hidden;
144 - 142 + margin-right: 2rem;
145 .wrapper { 143 .wrapper {
146 float: right; 144 float: right;
147 font-size: 0.8rem; 145 font-size: 0.8rem;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
2 * @Author: hookehuyr hookehuyr@gmail.com 2 * @Author: hookehuyr hookehuyr@gmail.com
3 * @Date: 2022-05-31 22:09:58 3 * @Date: 2022-05-31 22:09:58
4 * @LastEditors: hookehuyr hookehuyr@gmail.com 4 * @LastEditors: hookehuyr hookehuyr@gmail.com
5 - * @LastEditTime: 2022-06-17 13:42:56 5 + * @LastEditTime: 2022-06-17 14:52:12
6 * @FilePath: /tswj/src/components/DonateFlower/index.vue 6 * @FilePath: /tswj/src/components/DonateFlower/index.vue
7 * @Description: 捐花组件 7 * @Description: 捐花组件
8 --> 8 -->
...@@ -152,7 +152,7 @@ const addDonate = async (params) => { ...@@ -152,7 +152,7 @@ const addDonate = async (params) => {
152 const { data } = await addDonateAPI(params); 152 const { data } = await addDonateAPI(params);
153 if (data.id) { 153 if (data.id) {
154 closeBtn(); 154 closeBtn();
155 - // TODO: 微信支付 155 + // TAG: 微信支付
156 wechatPay(data.id); 156 wechatPay(data.id);
157 // 交易成功跳转回调页面 157 // 交易成功跳转回调页面
158 // TEMP: 临时传参 donate_id, 页面到时候给到后端跳转 158 // TEMP: 临时传参 donate_id, 页面到时候给到后端跳转
...@@ -210,7 +210,7 @@ const cancelDonate = () => { ...@@ -210,7 +210,7 @@ const cancelDonate = () => {
210 closeBtn(); 210 closeBtn();
211 } 211 }
212 212
213 -// TODO: 微信支付 213 +// TAG: 微信支付
214 const wechatPay = (id) => { 214 const wechatPay = (id) => {
215 const base = 'http://voice.onwall.cn/WxpayAPI/voice_pay/jsapi_voice.php' 215 const base = 'http://voice.onwall.cn/WxpayAPI/voice_pay/jsapi_voice.php'
216 location.href = `${base}?i=${id}` 216 location.href = `${base}?i=${id}`
......