{"id":3559,"date":"2022-03-16T17:23:56","date_gmt":"2022-03-16T09:23:56","guid":{"rendered":"https:\/\/egonlin.com\/?p=3559"},"modified":"2022-04-26T14:03:41","modified_gmt":"2022-04-26T06:03:41","slug":"%e7%ac%ac%e4%b8%83%e8%8a%82%ef%bc%9a%e8%ae%a2%e5%8d%95%e7%bb%93%e6%9e%9c%e9%a1%b5","status":"publish","type":"post","link":"https:\/\/egonlin.com\/?p=3559","title":{"rendered":"\u7b2c\u4e03\u8282\uff1a\u8ba2\u5355\u7ed3\u679c\u9875"},"content":{"rendered":"<h3>\u8ba2\u5355\u7ed3\u679c\u9875<\/h3>\n<p><strong>\u9700\u6c42\uff1a<\/strong> \u663e\u793a\u5f53\u524d\u8ba2\u5355\u4fe1\u606f\uff0c\u7528\u6237\u53ef\u4ee5\u5728\u8be5\u9875\u9762\u5206\u4eab\u7ed9\u597d\u53cb\uff0c\u8ba9\u597d\u53cb\u53c2\u52a0\u83b7\u53d6\u4ed6\u8d2d\u4e70\u7684\u793c\u7269\u3002<\/p>\n<h4>\u5c0f\u7a0b\u5e8f\u7aef<\/h4>\n<p>1 \u8bf7\u6c42\u8ba2\u5355\u6570\u636e\uff0c\u663e\u793a\u8ba2\u5355\u4fe1\u606f\uff0c\u8d2d\u4e70\u8005\u53ef\u4ee5\u5728\u8fd9\u91cc\u5206\u4eab\u7ed9\u597d\u53cb\u3002<\/p>\n<p>app.json<\/p>\n<pre><code class=\"language-json\"> {\n  &quot;pages&quot;: [\n    &quot;pages\/index\/index&quot;,\n    &quot;pages\/list\/list&quot;,\n    &quot;pages\/item\/item&quot;,\n    &quot;pages\/login\/login&quot;,    \n    &quot;pages\/payment\/payresult\/payresult&quot;\n  ],\n  &quot;window&quot;: {\n    &quot;backgroundTextStyle&quot;: &quot;light&quot;,\n    &quot;navigationBarBackgroundColor&quot;: &quot;#e50e38&quot;,\n    &quot;navigationBarTitleText&quot;: &quot;\u767e\u6b65\u751f\u6d3b&quot;,\n    &quot;navigationBarTextStyle&quot;: &quot;#fff&quot;,\n    &quot;enablePullDownRefresh&quot;: false,\n    &quot;backgroundColor&quot;: &quot;#e50e38&quot;\n  },\n}\n<\/code><\/pre>\n<p>payresult.wxml<\/p>\n<pre><code class=\"language-html\">&lt;view class=&quot;container&quot;&gt;\n  &lt;view class=&quot;success-status&quot;&gt;\n    &lt;view class=&quot;tip&quot;&gt;\u793c\u7269\u51c6\u5907\u5b8c\u6bd5\uff0c\u9001\u51fa\u53bb\u5427&lt;\/view&gt;\n    &lt;view class=&quot;open-condition&quot;&gt;\u8bb0\u5f97\u63d0\u9192\u5bf9\u65b9\u586b\u5199\u6536\u8d27\u5730\u5740\u54e6&lt;\/view&gt;\n  &lt;\/view&gt;\n  &lt;image class=&#039;avatar&#039; src=&#039;{{userInfo.avatarUrl}}&#039;&gt;&lt;\/image&gt;\n  &lt;scroll-view class=&quot;detail-box&quot;&gt;\n      &lt;view class=&quot;u-info&quot;&gt;{{userInfo.nickName}}\u9001\u51fa{{totalNum}}\u4efd\u793c\u7269&lt;\/view&gt;\n      &lt;view class=&quot;wish&quot;&gt;{{wish}}&lt;\/view&gt;\n      &lt;view class=&quot;product-wrap&quot;&gt;\n          &lt;image src=&quot;{{showPic}}&quot;&gt;&lt;\/image&gt;\n\n      &lt;\/view&gt;\n  &lt;\/scroll-view&gt;\n  &lt;button class=&quot;btn-share&quot; open-type=&quot;share&quot;&gt; \u9001\u7ed9\u670b\u53cb &lt;text class=&quot;fa fa-flag&quot;&gt;&lt;\/text&gt;&lt;\/button&gt;\n&lt;\/view&gt;<\/code><\/pre>\n<p>payresult.wxss<\/p>\n<pre><code class=\"language-css\">.btn-share{\n  width: 480rpx;\n  height: 88rpx;\n  border-radius: 44rpx;\n  background: #e50e38;\n  color: #fff;\n  line-height: 88rpx;\n  text-align: center;\n  margin-top: 40rpx;\n  letter-spacing: 2rpx;\n  font-size: 36rpx;\n  position: absolute;\n  bottom: 120rpx;\n}\npage{\n  background: #e50e38;\n  width: 100%;\n  height: 100%;\n}\n.container{\n  width: 100%;\n  height: 100%;\n  padding: 0;\n}\n.container .success-status{\n  padding: 36rpx 0;\n  color: #fff;\n  height: 20%;\n}\n.container .success-status .tip{\n  text-align: center;\n  line-height: 60rpx;\n  font-size: 36rpx;\n}\n.container .success-status .open-condition{\n  text-align: center;\n  line-height: 60rpx;\n  font-size: 28rpx;\n}\n.detail-box{\n  position: relative;\n  height: 80%;\n  background: #fff;\n  width: 718rpx;\n  margin: 0 16rpx;\n  border-top-left-radius: 16rpx;\n  border-top-right-radius: 16rpx;\n  text-align: center;\n}\n.avatar{\n  position:absolute;\n  width:120rpx;\n  height:120rpx;\n  top:20%;\n  left:50%;\n  margin-top:-60rpx;\n  margin-left:-60rpx;\n  border-radius: 50%;\n  z-index: 999;\n}\n.u-info{\n  text-align: center;\n  padding-top:80rpx;\n  font-size:28rpx;\n}\n.wish{\n  text-align: center;\n  padding-top:32rpx;\n  font-size:36rpx;\n  margin-bottom: 20rpx;\n}\n.detail-box .name{\n  text-align: center;\n  font-size: 28rpx;\n  margin-bottom: 20rpx;\n}\n.detail-box image{\n  width: 450rpx;\n  height: 450rpx;\n  text-align: center\n}\n.product-wrap{\n  border: 2rpx solid #aa924c;\n  width: 450rpx;\n  margin: 20rpx 134rpx;\n}<\/code><\/pre>\n<p>payresult.js<\/p>\n<div id=\"rml_readmorelogin_placeholder\" style=\"position:relative;\"><div id=\"rml_fade_content\" style=\"position: absolute;\r\ntop:-10em;\r\nwidth:100%;\r\nheight:10em;\r\nbackground: -webkit-linear-gradient(rgba(255, 255, 255, 0) 0%,#ffffff 100%);\r\nbackground-image: -moz-linear-gradient(rgba(255, 255, 255, 0) 0%,#ffffff 100%);\r\nbackground-image: -o-linear-gradient(rgba(255, 255, 255, 0) 0%,#ffffff 100%);\r\nbackground-image: linear-gradient(rgba(255, 255, 255, 0) 0%,#ffffff 100%);\r\nbackground-image: -ms-linear-gradient(rgba(255, 255, 255, 0) 0%,#ffffff 100%);\"><\/div><div class=\"wpf-controller aru_rml_from_in_post\" style=\"background-color:#eeeeee;border:5px solid #cce6ff;\" id=\"ARU_ReadMoreLogin_ReadMoreLoginController\"><h2 id=\"Header\">\u67e5\u770b\u66f4\u591a<\/h2><div id=\"Message\"><p>\u8054\u7cfb\u7ba1\u7406\u5458\u5fae\u4fe1tutu19192010\uff0c\u6ce8\u518c\u8d26\u53f7<\/p>\n<\/div><div id=\"StatusBarHeader\"><\/div><form id=\"ARU_ReadMoreLogin_ReadMoreLoginController\"><input name=\"post_id\" value=\"3559\" type=\"hidden\"\/><input name=\"_init_callback\" value=\"InitLogin\" type=\"hidden\"\/><input name=\"post_id\" value=\"3559\" type=\"hidden\"\/><input name=\"rt_ype\" value=\"1\" type=\"hidden\"\/><input name=\"nonce\" value=\"b249db13d3\" type=\"hidden\"\/><input name=\"_wpnonce\" value=\"b0e6d8f8bf\" type=\"hidden\"\/><input name=\"_controller\" value=\"ARU_ReadMoreLogin\\ReadMoreLoginController\" type=\"hidden\"\/><input name=\"_proxy_controller\" value=\"ARU_ReadMoreLogin\\ReadMoreLoginController\" type=\"hidden\"\/><input name=\"_view\" value=\"ARU_ReadMoreLogin\\ReadMoreLoginView\" type=\"hidden\"\/><table class=\"wpf-table-placeholder\"><tbody class=\"wpf-table-placeholder\"><tr class=\"wpf-table-placeholder\"><td class=\"wpf-table-placeholder-input\" width=\"400px\"><table class=\"wpf-table-placeholder\"><tbody class=\"wpf-table-placeholder\"><tr class=\"wpf-table-placeholder\"><th class=\"wpf-table-placeholder-input\"><label class=\"wpf-label\">Username:<\/label><\/th><\/tr><tr class=\"wpf-table-placeholder\"><td class=\"wpf-table-placeholder-input\"><input class=\"regular-text text_input\" name=\"username\" value=\"\" type=\"text\"\/><\/td><\/tr><tr class=\"wpf-table-placeholder\"><th class=\"wpf-table-placeholder-input\"><label class=\"wpf-label\">Password:<\/label><\/th><\/tr><tr class=\"wpf-table-placeholder\"><td class=\"wpf-table-placeholder-input\"><input class=\"regular-text text_input\" name=\"password\" value=\"\" type=\"password\"\/><\/td><\/tr><\/tbody><\/table><p class=\"wpf-table-placeholder submit\"><button class=\"wp_plugin_framework_ajax_button\" type=\"button\" style=\"background-color:#4D90FE;;color:#ffffff;;border:1px solid #3079ed;\" name=\"_event\" value=\"ButtonLogin\">Log in<\/button><\/p><\/td><td class=\"wpf-table-placeholder-input\"><\/td><\/tr><\/tbody><\/table><\/form><div id=\"ButtonStartRegister\"><a href=\"https:\/\/egonlin.com\/wp-login.php?action=register\">Register<\/a><\/div><div id=\"Link1\"><a href=\"https:\/\/egonlin.com\/wp-login.php?action=lostpassword\">Forgotten username or password?<\/a><\/div><div id=\"StatusBarFooter\"><\/div><\/div><\/div><div id=aru_remaining_content><\/div>","protected":false},"excerpt":{"rendered":"<p>\u8ba2\u5355\u7ed3\u679c\u9875 \u9700\u6c42\uff1a \u663e\u793a\u5f53\u524d\u8ba2\u5355\u4fe1\u606f\uff0c\u7528\u6237\u53ef\u4ee5\u5728\u8be5\u9875\u9762\u5206\u4eab\u7ed9\u597d\u53cb\uff0c\u8ba9\u597d\u53cb\u53c2\u52a0\u83b7\u53d6\u4ed6\u8d2d\u4e70\u7684\u793c\u7269\u3002 \u5c0f\u7a0b\u5e8f\u7aef 1  [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":[],"categories":[307,309],"tags":[],"_links":{"self":[{"href":"https:\/\/egonlin.com\/index.php?rest_route=\/wp\/v2\/posts\/3559"}],"collection":[{"href":"https:\/\/egonlin.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/egonlin.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/egonlin.com\/index.php?rest_route=\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/egonlin.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=3559"}],"version-history":[{"count":0,"href":"https:\/\/egonlin.com\/index.php?rest_route=\/wp\/v2\/posts\/3559\/revisions"}],"wp:attachment":[{"href":"https:\/\/egonlin.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=3559"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/egonlin.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=3559"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/egonlin.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=3559"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}