Commit 54cf2234 by qinjianhui

fix: 移动图片位置

parent a291be25
...@@ -75,7 +75,7 @@ ...@@ -75,7 +75,7 @@
style="width: 160px" style="width: 160px"
> >
<img <img
:src="`../../../src/assets/${item.icon}`" :src="`/images/icon/${item.icon.split('/').pop()}`"
style="height: 20px; margin: 5px 10px 0 0" style="height: 20px; margin: 5px 10px 0 0"
/> />
<span :title="item.type">{{ item.type }}</span> <span :title="item.type">{{ item.type }}</span>
...@@ -1065,8 +1065,8 @@ ...@@ -1065,8 +1065,8 @@
:title="wayDialogTitle" :title="wayDialogTitle"
> >
<el-table <el-table
v-loading="isChangeWayLoading"
ref="changeWayRef" ref="changeWayRef"
v-loading="isChangeWayLoading"
height="400px" height="400px"
class="production-client-table" class="production-client-table"
:data="logisticsWayData" :data="logisticsWayData"
...@@ -1883,9 +1883,7 @@ const rightChange = async (code: string) => { ...@@ -1883,9 +1883,7 @@ const rightChange = async (code: string) => {
navigator.clipboard.writeText(str) navigator.clipboard.writeText(str)
ElMessage.success('复制成功') ElMessage.success('复制成功')
} else if (code === 'copy_shopNumber') { } else if (code === 'copy_shopNumber') {
const str = cardSelection.value const str = cardSelection.value.map((item) => item.shopNumber).join()
.map((item) => item.shopNumber)
.join()
navigator.clipboard.writeText(str) navigator.clipboard.writeText(str)
ElMessage.success('复制成功') ElMessage.success('复制成功')
} }
...@@ -2507,6 +2505,7 @@ const handleExceptionCommand = (command: number) => { ...@@ -2507,6 +2505,7 @@ const handleExceptionCommand = (command: number) => {
exceptionStatus.value = command exceptionStatus.value = command
search() search()
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.header-filter-form { .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