|
@@ -25,7 +25,25 @@
|
25
|
25
|
|
26
|
26
|
<div id="buy" style="display: none;">
|
27
|
27
|
<div style="padding: 50px 15px 40px 15px; line-height: 22px; background-color: #393D49; color: #fff; font-weight: 300;">
|
|
28
|
+
|
28
|
29
|
<fieldset class="layui-elem-field" style="width:100%;text-align: center;">
|
|
30
|
+ <legend style="font-size: 17px;margin-left:0px;">网盘链接:</legend>
|
|
31
|
+ <div class="layui-field-box" style="text-align: center;">
|
|
32
|
+ {$eyou.field.wplj}
|
|
33
|
+ </div>
|
|
34
|
+ </fieldset>
|
|
35
|
+
|
|
36
|
+ {eyou:if condition='(!empty($eyou.field.tqm))'}
|
|
37
|
+ <fieldset class="layui-elem-field" style="width:100%;text-align: center;">
|
|
38
|
+ <legend style="font-size: 17px;margin-left:0px;">提取码:</legend>
|
|
39
|
+ <div class="layui-field-box" style="text-align: center;">
|
|
40
|
+ {$eyou.field.tqm}
|
|
41
|
+ </div>
|
|
42
|
+ </fieldset>
|
|
43
|
+ {/eyou:if}
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+ <!--<fieldset class="layui-elem-field" style="width:100%;text-align: center;">
|
29
|
47
|
<legend style="font-size: 17px;margin-left:0px;">第一步: 扫一扫{eyou:global name='web_attrname_30' /}</legend>
|
30
|
48
|
<div class="layui-field-box" style="text-align: center;">
|
31
|
49
|
<img src="{eyou:global name='web_attr_30' /}" style="width: 150px;"/>
|
|
@@ -38,7 +56,7 @@
|
38
|
56
|
|
39
|
57
|
<img src="{eyou:global name='web_attr_26' /}" style="width: 150px;"/>
|
40
|
58
|
</div>
|
41
|
|
- </fieldset>
|
|
59
|
+ </fieldset>-->
|
42
|
60
|
</div>
|
43
|
61
|
</div>
|
44
|
62
|
|
|
@@ -89,20 +107,35 @@
|
89
|
107
|
type: 1
|
90
|
108
|
,title: false //不显示标题栏
|
91
|
109
|
,closeBtn: false
|
92
|
|
- ,area: '300px;'
|
|
110
|
+ ,area: '600px;'
|
93
|
111
|
,shade: 0.8
|
94
|
112
|
,id: 'LAY_layuipro' //设定一个id,防止重复弹出
|
95
|
113
|
//,btn: ['火速围观', '残忍拒绝']
|
96
|
|
- ,btn: ['关闭']
|
|
114
|
+ ,btn: ['打开链接','复制链接','关闭']
|
97
|
115
|
,btnAlign: 'c'
|
98
|
116
|
,moveType: 1 //拖拽模式,0或者1
|
99
|
117
|
,content: $('#buy').html()
|
100
|
118
|
,success: function(layero){
|
101
|
|
- /*var btn = layero.find('.layui-layer-btn');
|
|
119
|
+ var btn = layero.find('.layui-layer-btn');
|
102
|
120
|
btn.find('.layui-layer-btn0').attr({
|
103
|
|
- href: 'http://www.layui.com/'
|
|
121
|
+ href: '{$eyou.field.wplj}'
|
104
|
122
|
,target: '_blank'
|
105
|
|
- });*/
|
|
123
|
+ });
|
|
124
|
+ btn.find('.layui-layer-btn1').click(function(){
|
|
125
|
+ let text = "{$eyou.field.wplj}";
|
|
126
|
+ let longPressTimer = null;
|
|
127
|
+
|
|
128
|
+ // 复制方法
|
|
129
|
+ // 关键
|
|
130
|
+ navigator.clipboard
|
|
131
|
+ .writeText(text)
|
|
132
|
+ .then(() => {
|
|
133
|
+ window.alert("复制成功");
|
|
134
|
+ })
|
|
135
|
+ .catch((error) => {
|
|
136
|
+ window.alert("复制失败", error);
|
|
137
|
+ });
|
|
138
|
+ });
|
106
|
139
|
}
|
107
|
140
|
});
|
108
|
141
|
}
|