Commit 54cf2234 by qinjianhui

fix: 移动图片位置

parent a291be25
......@@ -75,7 +75,7 @@
style="width: 160px"
>
<img
:src="`../../../src/assets/${item.icon}`"
:src="`/images/icon/${item.icon.split('/').pop()}`"
style="height: 20px; margin: 5px 10px 0 0"
/>
<span :title="item.type">{{ item.type }}</span>
......@@ -1065,8 +1065,8 @@
:title="wayDialogTitle"
>
<el-table
v-loading="isChangeWayLoading"
ref="changeWayRef"
v-loading="isChangeWayLoading"
height="400px"
class="production-client-table"
:data="logisticsWayData"
......@@ -1883,9 +1883,7 @@ const rightChange = async (code: string) => {
navigator.clipboard.writeText(str)
ElMessage.success('复制成功')
} else if (code === 'copy_shopNumber') {
const str = cardSelection.value
.map((item) => item.shopNumber)
.join()
const str = cardSelection.value.map((item) => item.shopNumber).join()
navigator.clipboard.writeText(str)
ElMessage.success('复制成功')
}
......@@ -2507,6 +2505,7 @@ const handleExceptionCommand = (command: number) => {
exceptionStatus.value = command
search()
}
</script>
<style lang="scss" scoped>
.header-filter-form {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment