切换导航条
此项目
正在载入...
登录
anyv
/
xkeasy
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
王晓刚
6 years ago
提交
533fbde9f8f28facbec0fcb8508058cc9205c518
1 个父辈
b043bc40
1 个管道 的构建
通过
耗费 46 秒
一键复制
变更
1
构建
1
隐藏空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
20 行增加
和
2 行删除
public/themes/simpleboot3/portal/order_salesman/get_one.html
public/themes/simpleboot3/portal/order_salesman/get_one.html
查看文件 @
533fbde
...
...
@@ -122,8 +122,13 @@
<!--</div>-->
<!-- 地址信息 -->
<div
class=
"log_four_input"
>
<div
class=
"log_four_input_title"
style=
"margin-bottom: 0.2rem;"
>
地址信息
<div
style=
"display: flex;align-items: center;justify-content: space-between;"
>
<div
class=
"log_four_input_title"
style=
"margin-bottom: 0.2rem;"
>
地址信息
</div>
<div
class=
"log_four_input_title"
onclick=
"copyText()"
style=
"margin-bottom: 0.2rem;"
>
一键复制
</div>
</div>
<if
condition=
"$data.is_courier eq 2"
>
<div
class=
"log_four_input_one"
>
...
...
@@ -175,6 +180,7 @@
<img
src=
"__TMPL__/public/assets/images/29.png"
alt=
""
/>
</div>
</div>
<div
hidden
id=
"keydiv"
>
{$data.name} {$data.phone} {$data.region} {$data.region_detail}
</div>
<else/>
<div
class=
"log_four_input_one city_word"
>
<div
class=
"log_four_input_one_left"
>
...
...
@@ -244,6 +250,7 @@
<img
src=
"__TMPL__/public/assets/images/29.png"
alt=
""
/>
</div>
</div>
<div
hidden
id=
"keydiv"
>
{$data.name} {$data.phone} {$data.region} {$data.school} {$data.grade}-{$data.class} {$data.beiyong_address}
</div>
</if>
...
...
@@ -313,6 +320,17 @@
<script>
</script>
<script>
function
copyText
()
{
var
Url2
=
document
.
getElementById
(
"keydiv"
).
innerText
;
var
oInput
=
document
.
createElement
(
'input'
);
oInput
.
value
=
Url2
;
document
.
body
.
appendChild
(
oInput
);
oInput
.
select
();
document
.
execCommand
(
"Copy"
);
oInput
.
className
=
'oInput'
;
oInput
.
style
.
display
=
'none'
;
alert
(
'复制成功'
);
}
<
notempty
name
=
'$school'
>
var
myschool
=
{
$school
};
school_s
(
myschool
);
...
...
请
注册
或
登录
后发表评论