Compare commits

...

2 Commits

  1. 7
      CHANGELOG.md
  2. 2
      package-lock.json
  3. 2
      package.json
  4. 2
      src/App.vue
  5. 2
      src/components/ScrollListItem/ScrollListItem.vue

7
CHANGELOG.md

@ -2,6 +2,13 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
## [1.0.0-B.17](https://git.1000my.com/project_yongwangyun/YongWang_Customer/compare/v1.0.0-B.16...v1.0.0-B.17) (2024-01-16)
### Bug Fixes
* 🧩 修复问题文字过长时 超出矩形框 ([e9e0c3f](https://git.1000my.com/project_yongwangyun/YongWang_Customer/commit/e9e0c3f7342c19a3f778133117343c68ba97ff0a))
## [1.0.0-B.16](https://git.1000my.com/project_yongwangyun/YongWang_Customer/compare/v1.0.0-B.15...v1.0.0-B.16) (2024-01-05)
## [1.0.0-B.15](https://git.1000my.com/project_yongwangyun/YongWang_Customer/compare/v1.0.0-B.14...v1.0.0-B.15) (2024-01-05)

2
package-lock.json

@ -1,6 +1,6 @@
{
"name": "vue_cli_ts",
"version": "1.0.0-B.16",
"version": "1.0.0-B.17",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

2
package.json

@ -1,6 +1,6 @@
{
"name": "vue_cli_ts",
"version": "1.0.0-B.16",
"version": "1.0.0-B.17",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",

2
src/App.vue

@ -26,7 +26,7 @@ function _getCustomerList() {
}
getCustomerList(config.value.smallUrl, params).then(({ code, data }) => {
if (code === HTTP_CODE.ERR_OK) {
customerList.value = [...data.list, ...customerList.value]
customerList.value = data.list
}
})
}

2
src/components/ScrollListItem/ScrollListItem.vue

@ -14,7 +14,7 @@
</div>
{{ formatDate(customer.addTime) }}
</div>
<ScrollView class="relative h-[380px]" scrollbar :list="customer.suggestionContent">
<ScrollView class="relative h-[355px]" scrollbar :list="customer.suggestionContent">
<div class="text-[#C70082] text-24 font-normal leading-normal whitespace-normal pr-[14px]">
<div v-html="customer.suggestionContent"></div>
</div>

Loading…
Cancel
Save