zoukankan      html  css  js  c++  java
  • freemarker与vue使用图片路径获取问题,可双单引号一起使用则可

                                            <el-table :data="leftPage.datas" style=" 100%"  @selection-change="handleSelectionChange1">
                                                <el-table-column type="selection"  width="55"></el-table-column>
                                                <el-table-column type="index" width="20"></el-table-column>
                                                <el-table-column prop="img" label="图片"  width="100">
                                                    <template scope="scope">
                                                        <img :src="'${imgServer}'+scope.row.img" width="50px" height="50px">
                                                    </template>
                                                </el-table-column>
                                                <el-table-column prop="name" label="名称" ></el-table-column>
                                                  <el-table-column prop="price" label="价格"  width="80"></el-table-column>
                                                  <el-table-column prop="disPrice" label="优惠价"  width="80"></el-table-column>
                                                  <el-table-column prop="type" label="类型" width="100"></el-table-column>
                                                  <el-table-column prop="designer.name" label="设计师" width="100"></el-table-column>
                                            </el-table>

  • 相关阅读:
    由AbstractQueuedSynchronizer和ReentrantLock来看模版方法模式
    Java并发编程-CAS
    Java并发编程-volatile
    Java并发编程-synchronized
    学习几个协议
    邻接矩阵存储简单路径(1070)
    输出利用先序遍历创建的二叉树的层次遍历序列(0980)
    中缀表达式转换为后缀表达式(1042)
    特定字符序列的判断(1028)
    舞伴问题(1027)
  • 原文地址:https://www.cnblogs.com/youxiu326/p/10540782.html
Copyright © 2011-2022 走看看