Compare commits

...

6 Commits

Author SHA1 Message Date
姜鑫 817bf95924 Merge pull request 'style: 🎨 样式修改' (#7) from dev into test 2 years ago
姜鑫 3a6867b25f style: 🎨 样式修改 2 years ago
姜鑫 dc7edc6f9c Merge pull request '更新 '.drone.yml'' (#6) from dev into test 2 years ago
姜鑫 f9a7f94eac 更新 '.drone.yml' 2 years ago
姜鑫 05cf0e26d2 Merge pull request 'ci: 🎡 修改' (#5) from dev into test 2 years ago
姜鑫 817028ec39 ci: 🎡 修改 2 years ago
  1. 6
      .drone.yml
  2. 4
      public/static/offline/JSON/getConfig.json
  3. 2
      public/static/offline/JSON/getDevCoordinateByIP.json
  4. 19
      src/components/ListItem/ListItem.vue

6
.drone.yml

@ -20,7 +20,7 @@ volumes:
path: /data/drone/docker/sock
- name: node
host:
path: /data/drone/node_modules-navigation
path: /data/drone/node_modules-navigation-customer
- name: localtime
host:
path: /etc/localtime
@ -136,7 +136,7 @@ steps:
commands:
# # 自动授权
# - export projectCode="projectCode=project-inluar4ppcxvciefgb_ila"
- export name="导视_测试版" # 应用名称(自行填写 必填)
- export name="永旺集团顾客心声大屏展示端标准版_测试版" # 应用名称(自行填写 必填)
- export version=$(cat .tags) # 应用版本
- export sourceId="8" # 应用来源id(默认为8 即测试环境专用) //如需更改查看测试环境平台级下应用管理新增应用的/api/platform/v1/platformProgram/platformProgramAdd接口
- export genre="localpack" # 应用类型 本地资源包 [outchain, localpack]
@ -158,7 +158,7 @@ steps:
cdn_url: 'https://qianmu-iot.1000my.com'
# genre: "Samsung"
commands:
- export name="导视_正式版" # 应用名称(自行填写)
- export name="永旺集团顾客心声大屏展示端标准版_正式版" # 应用名称(自行填写)
- export version=$(cat .tags) # 应用版本
- export sourceId="3" # 应用来源id
- export genre="localpack" # 应用类型 本地资源包

4
public/static/offline/JSON/getConfig.json

@ -7,10 +7,10 @@
"entryCode": "QD3QZd7_rr0jkDYR2qtc7",
"title": "配置文件",
"content": {
"interfaceUrl": "https://project-iot.test.1000my.com/api",
"interfaceUrl": "https://iot.1000my.com/api",
"mobileNav": "https://qianmu-iot.1000my.com/SuZhou_JinDi_Square-szjds_react-test/index.html#/",
"handWriteUrl": "http://saas.1000my.com:8014/words"
}
}
]
}
}

2
public/static/offline/JSON/getDevCoordinateByIP.json

@ -17,7 +17,7 @@
"mac": "30B49EC47D5E",
"location": "51",
"angle": "0",
"projectCode": "project-200",
"projectCode": "project-ao3xebi-o6mwtgswdr-jfa",
"regionCode": "",
"lensCoordinate": "",
"orientationCoordinate": "",

19
src/components/ListItem/ListItem.vue

@ -1,21 +1,23 @@
<template>
<div class="relative flex flex-wrap space-x-6 rounded-xl bg-white pl-6 pr-[6px] pt-6 shadow-[3px_3px_0_0px_rgba(0,0,0,0.1)]">
<div class="flex-1 justify-between">
<div class="mb-2 flex items-center gap-x-2.5 text-justify text-16 font-normal leading-4.5 text-black/40">
<div
class="custom relative grid grid-cols-2 flex-wrap gap-x-6 rounded-xl bg-white pl-6 pr-[6px] pt-6 shadow-[3px_3px_0_0px_rgba(0,0,0,0.1)]"
>
<div class="flex-1">
<div class="mb-2 flex items-center gap-x-2.5 text-justify text-16 leading-4.5 text-black/40">
<img src="../../assets/images/q.svg" class="size-7" alt="" />
{{ formatTime(customer.createTime) }}
</div>
<ScrollView class="relative h-[356px]" :list="customer.content">
<div class="whitespace-normal pr-3.5 text-justify !text-24 font-normal leading-normal text-black/50">{{ customer.content }}</div>
<div class="pr-3.5 text-justify !text-24 text-black/50">{{ customer.content }}</div>
</ScrollView>
</div>
<div class="flex-1">
<div class="mb-2 flex items-center gap-x-2.5 text-justify text-16 font-normal leading-4.5 text-black/40">
<div class="mb-2 flex items-center gap-x-2.5 text-justify text-16 leading-4.5 text-black/40">
<img src="../../assets/images/a.svg" class="size-7" alt="" />
{{ formatTime(customer.replyTime) }}
</div>
<ScrollView class="relative h-[356px]" observe-image :list="customer.disposeDes">
<div class="whitespace-normal pr-3.5 text-justify !text-24 font-normal leading-normal text-[#333333]">
<div class="pr-3.5 text-justify !text-24 text-[#333333]">
<div v-html="customer.disposeDes"></div>
<div class="flex items-center pt-4 text-20">
总经理:{{ customer.managerSignature }}
@ -48,3 +50,8 @@ function formatTime(time: string) {
return `${year}-${month}-${day} ${hour}:${minute}`
}
</script>
<style>
.custom * {
font-size: 24px !important;
}
</style>

Loading…
Cancel
Save