Explorar o código

fix: slot-scope 已过期 ==》 v-slot

xingyu %!s(int64=2) %!d(string=hai) anos
pai
achega
0bd0bbd536
Modificáronse 29 ficheiros con 118 adicións e 118 borrados
  1. 4 4
      yudao-ui-admin/src/components/bpmnProcessDesigner/package/penal/form/ElementForm.vue
  2. 2 2
      yudao-ui-admin/src/components/bpmnProcessDesigner/package/penal/listeners/ElementListeners.vue
  3. 2 2
      yudao-ui-admin/src/components/bpmnProcessDesigner/package/penal/listeners/UserTaskListeners.vue
  4. 2 2
      yudao-ui-admin/src/components/bpmnProcessDesigner/package/penal/listeners/template.js
  5. 1 1
      yudao-ui-admin/src/components/bpmnProcessDesigner/package/penal/properties/ElementProperties.vue
  6. 1 1
      yudao-ui-admin/src/layout/components/Message/index.vue
  7. 1 1
      yudao-ui-admin/src/views/infra/build/RightPanel.vue
  8. 3 3
      yudao-ui-admin/src/views/mall/product/property/index.vue
  9. 2 2
      yudao-ui-admin/src/views/mall/product/property/value.vue
  10. 16 16
      yudao-ui-admin/src/views/mall/product/spu/index.vue
  11. 11 11
      yudao-ui-admin/src/views/mall/product/spu/save.vue
  12. 6 6
      yudao-ui-admin/src/views/mall/promotion/coupon/index.vue
  13. 4 4
      yudao-ui-admin/src/views/mall/promotion/couponTemplate/index.vue
  14. 9 9
      yudao-ui-admin/src/views/mall/promotion/discountActivity/index.vue
  15. 4 4
      yudao-ui-admin/src/views/mall/promotion/rewardActivity/index.vue
  16. 11 11
      yudao-ui-admin/src/views/mall/promotion/seckill/seckillActivity/index.vue
  17. 4 4
      yudao-ui-admin/src/views/mall/promotion/seckill/seckillTime/index.vue
  18. 1 1
      yudao-ui-admin/src/views/mall/trade/afterSale/index.vue
  19. 4 4
      yudao-ui-admin/src/views/mall/trade/order/detail.vue
  20. 4 4
      yudao-ui-admin/src/views/mall/trade/order/index.vue
  21. 2 2
      yudao-ui-admin/src/views/mp/account/index.vue
  22. 3 3
      yudao-ui-admin/src/views/mp/autoReply/index.vue
  23. 1 1
      yudao-ui-admin/src/views/mp/material/index.vue
  24. 4 4
      yudao-ui-admin/src/views/mp/message/index.vue
  25. 4 4
      yudao-ui-admin/src/views/mp/mpuser/index.vue
  26. 2 2
      yudao-ui-admin/src/views/mp/tag/index.vue
  27. 3 3
      yudao-ui-admin/src/views/system/notify/my/index.vue
  28. 3 3
      yudao-ui-admin/src/views/system/notify/template/index.vue
  29. 4 4
      yudao-ui-admin/src/views/system/role/index.vue

+ 4 - 4
yudao-ui-admin/src/components/bpmnProcessDesigner/package/penal/form/ElementForm.vue

@@ -21,7 +21,7 @@
         <el-table-column label="字段类型" prop="type" min-width="80px" :formatter="row => fieldType[row.type] || row.type" show-overflow-tooltip />
         <el-table-column label="默认值" prop="defaultValue" min-width="80px" show-overflow-tooltip />
         <el-table-column label="操作" width="90px">
-          <template slot-scope="{ row, $index }">
+          <template v-slot="{ row, $index }">
             <el-button size="mini" type="text" @click="openFieldForm(row, $index)">编辑</el-button>
             <el-divider direction="vertical" />
             <el-button size="mini" type="text" style="color: #ff4d4f" @click="removeField(row, $index)">移除</el-button>
@@ -70,7 +70,7 @@
           <el-table-column label="枚举值编号" prop="id" min-width="100px" show-overflow-tooltip />
           <el-table-column label="枚举值名称" prop="name" min-width="100px" show-overflow-tooltip />
           <el-table-column label="操作" width="90px">
-            <template slot-scope="{ row, $index }">
+            <template v-slot="{ row, $index }">
               <el-button size="mini" type="text" @click="openFieldOptionForm(row, $index, 'enum')">编辑</el-button>
               <el-divider direction="vertical" />
               <el-button size="mini" type="text" style="color: #ff4d4f" @click="removeFieldOptionItem(row, $index, 'enum')">移除</el-button>
@@ -90,7 +90,7 @@
         <el-table-column label="约束名称" prop="name" min-width="100px" show-overflow-tooltip />
         <el-table-column label="约束配置" prop="config" min-width="100px" show-overflow-tooltip />
         <el-table-column label="操作" width="90px">
-          <template slot-scope="{ row, $index }">
+          <template v-slot="{ row, $index }">
             <el-button size="mini" type="text" @click="openFieldOptionForm(row, $index, 'constraint')">编辑</el-button>
             <el-divider direction="vertical" />
             <el-button size="mini" type="text" style="color: #ff4d4f" @click="removeFieldOptionItem(row, $index, 'constraint')">移除</el-button>
@@ -109,7 +109,7 @@
         <el-table-column label="属性编号" prop="id" min-width="100px" show-overflow-tooltip />
         <el-table-column label="属性值" prop="value" min-width="100px" show-overflow-tooltip />
         <el-table-column label="操作" width="90px">
-          <template slot-scope="{ row, $index }">
+          <template v-slot="{ row, $index }">
             <el-button size="mini" type="text" @click="openFieldOptionForm(row, $index, 'property')">编辑</el-button>
             <el-divider direction="vertical" />
             <el-button size="mini" type="text" style="color: #ff4d4f" @click="removeFieldOptionItem(row, $index, 'property')">移除</el-button>

+ 2 - 2
yudao-ui-admin/src/components/bpmnProcessDesigner/package/penal/listeners/ElementListeners.vue

@@ -5,7 +5,7 @@
       <el-table-column label="事件类型" min-width="100px" prop="event" />
       <el-table-column label="监听器类型" min-width="100px" show-overflow-tooltip :formatter="row => listenerTypeObject[row.listenerType]" />
       <el-table-column label="操作" width="90px">
-        <template slot-scope="{ row, $index }">
+        <template v-slot="{ row, $index }">
           <el-button size="mini" type="text" @click="openListenerForm(row, $index)">编辑</el-button>
           <el-divider direction="vertical" />
           <el-button size="mini" type="text" style="color: #ff4d4f" @click="removeListener(row, $index)">移除</el-button>
@@ -108,7 +108,7 @@
         <el-table-column label="字段类型" min-width="80px" show-overflow-tooltip :formatter="row => fieldTypeObject[row.fieldType]" />
         <el-table-column label="字段值/表达式" min-width="100px" show-overflow-tooltip :formatter="row => row.string || row.expression" />
         <el-table-column label="操作" width="100px">
-          <template slot-scope="{ row, $index }">
+          <template v-slot="{ row, $index }">
             <el-button size="mini" type="text" @click="openListenerFieldForm(row, $index)">编辑</el-button>
             <el-divider direction="vertical" />
             <el-button size="mini" type="text" style="color: #ff4d4f" @click="removeListenerField(row, $index)">移除</el-button>

+ 2 - 2
yudao-ui-admin/src/components/bpmnProcessDesigner/package/penal/listeners/UserTaskListeners.vue

@@ -6,7 +6,7 @@
       <el-table-column label="事件id" min-width="80px" prop="id" show-overflow-tooltip />
       <el-table-column label="监听器类型" min-width="80px" show-overflow-tooltip :formatter="row => listenerTypeObject[row.listenerType]" />
       <el-table-column label="操作" width="90px">
-        <template slot-scope="{ row, $index }">
+        <template v-slot="{ row, $index }">
           <el-button size="mini" type="text" @click="openListenerForm(row, $index)">编辑</el-button>
           <el-divider direction="vertical" />
           <el-button size="mini" type="text" style="color: #ff4d4f" @click="removeListener(row, $index)">移除</el-button>
@@ -132,7 +132,7 @@
         <el-table-column label="字段类型" min-width="80px" show-overflow-tooltip :formatter="row => fieldTypeObject[row.fieldType]" />
         <el-table-column label="字段值/表达式" min-width="100px" show-overflow-tooltip :formatter="row => row.string || row.expression" />
         <el-table-column label="操作" width="100px">
-          <template slot-scope="{ row, $index }">
+          <template v-slot="{ row, $index }">
             <el-button size="mini" type="text" @click="openListenerFieldForm(row, $index)">编辑</el-button>
             <el-divider direction="vertical" />
             <el-button size="mini" type="text" style="color: #ff4d4f" @click="removeListenerField(row, $index)">移除</el-button>

+ 2 - 2
yudao-ui-admin/src/components/bpmnProcessDesigner/package/penal/listeners/template.js

@@ -6,7 +6,7 @@ export const template = isTaskListener => {
       <el-table-column label="事件类型" min-width="100px" prop="event" />
       <el-table-column label="监听器类型" min-width="100px" show-overflow-tooltip :formatter="row => listenerTypeObject[row.listenerType]" />
       <el-table-column label="操作" width="90px">
-        <template slot-scope="{ row, $index }">
+        <template v-slot="{ row, $index }">
           <el-button size="mini" type="text" @click="openListenerForm(row, $index)">编辑</el-button>
           <el-divider direction="vertical" />
           <el-button size="mini" type="text" style="color: #ff4d4f" @click="removeListener(row, $index)">移除</el-button>
@@ -124,7 +124,7 @@ export const template = isTaskListener => {
         <el-table-column label="字段类型" min-width="80px" show-overflow-tooltip :formatter="row => fieldTypeObject[row.fieldType]" />
         <el-table-column label="字段值/表达式" min-width="100px" show-overflow-tooltip :formatter="row => row.string || row.expression" />
         <el-table-column label="操作" width="100px">
-          <template slot-scope="{ row, $index }">
+          <template v-slot="{ row, $index }">
             <el-button size="mini" type="text" @click="openListenerFieldForm(row, $index)">编辑</el-button>
             <el-divider direction="vertical" />
             <el-button size="mini" type="text" style="color: #ff4d4f" @click="removeListenerField(row, $index)">移除</el-button>

+ 1 - 1
yudao-ui-admin/src/components/bpmnProcessDesigner/package/penal/properties/ElementProperties.vue

@@ -5,7 +5,7 @@
       <el-table-column label="属性名" prop="name" min-width="100px" show-overflow-tooltip />
       <el-table-column label="属性值" prop="value" min-width="100px" show-overflow-tooltip />
       <el-table-column label="操作" width="90px">
-        <template slot-scope="{ row, $index }">
+        <template v-slot="{ row, $index }">
           <el-button size="mini" type="text" @click="openAttributesForm(row, $index)">编辑</el-button>
           <el-divider direction="vertical" />
           <el-button size="mini" type="text" style="color: #ff4d4f" @click="removeAttributes(row, $index)">移除</el-button>

+ 1 - 1
yudao-ui-admin/src/layout/components/Message/index.vue

@@ -10,7 +10,7 @@
       <el-table v-loading="loading" :data="list">
         <el-table-column width="120" property="templateNickname" label="发送人" />
         <el-table-column width="180" property="createTime" label="发送时间">
-          <template slot-scope="scope">
+          <template v-slot="scope">
             <span>{{ parseTime(scope.row.createTime) }}</span>
           </template>
         </el-table-column>

+ 1 - 1
yudao-ui-admin/src/views/infra/build/RightPanel.vue

@@ -554,7 +554,7 @@
               default-expand-all
               draggable
             >
-              <span slot-scope="{ node, data }">
+              <span v-slot="{ node, data }">
                 <span class="node-label">
                   <svg-icon class="node-icon" :icon-class="data.__config__?data.__config__.tagIcon:data.tagIcon" />
                   {{ node.label }}

+ 3 - 3
yudao-ui-admin/src/views/mall/product/property/index.vue

@@ -29,7 +29,7 @@
     <el-table v-loading="loading" :data="list">
       <el-table-column label="编号" align="center" prop="id" />
       <el-table-column label="名称" align="center" :show-overflow-tooltip="true">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <router-link :to="'/property/value/' + scope.row.id" class="link-type">
             <span>{{ scope.row.name }}</span>
           </router-link>
@@ -37,12 +37,12 @@
       </el-table-column>
       <el-table-column label="备注" align="center" prop="remark" />
       <el-table-column label="创建时间" align="center" prop="createTime" width="180">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <span>{{ parseTime(scope.row.createTime) }}</span>
         </template>
       </el-table-column>
       <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
                      v-hasPermi="['product:property:update']">修改</el-button>
           <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"

+ 2 - 2
yudao-ui-admin/src/views/mall/product/property/value.vue

@@ -29,12 +29,12 @@
       <el-table-column label="名称" align="center" prop="name"/>
       <el-table-column label="备注" align="center" prop="remark" :show-overflow-tooltip="true"/>
       <el-table-column label="创建时间" align="center" prop="createTime" width="180">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <span>{{ parseTime(scope.row.createTime) }}</span>
         </template>
       </el-table-column>
       <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
                      v-hasPermi="['system:dict:update']">修改
           </el-button>

+ 16 - 16
yudao-ui-admin/src/views/mall/product/spu/index.vue

@@ -67,7 +67,7 @@
         <!-- 列表 -->
         <el-table v-loading="loading" :data="list">
           <el-table-column label="商品信息" align="center" width="260">
-            <template slot-scope="scope">
+            <template v-slot="scope">
               <div class="product-info">
                 <img v-if="scope.row.picUrls" :src="scope.row.picUrls[0]" alt="分类图片" class="img-height" />
                 <div class="message">{{ scope.row.name }}</div>
@@ -80,17 +80,17 @@
           <el-table-column label="销量" align="center" prop="salesCount"/>
           <el-table-column label="排序" align="center" prop="sort"/>
           <el-table-column label="创建时间" align="center" prop="createTime" width="180">
-            <template slot-scope="scope">
+            <template v-slot="scope">
               <span>{{ parseTime(scope.row.createTime) }}</span>
             </template>
           </el-table-column>
           <el-table-column label="状态" align="center" prop="status">
-            <template slot-scope="scope">
+            <template v-slot="scope">
               <dict-tag :type="DICT_TYPE.PRODUCT_SPU_STATUS" :value="scope.row.status"/>
             </template>
           </el-table-column>
           <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
-            <template slot-scope="scope">
+            <template v-slot="scope">
               <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
                          v-hasPermi="['product:spu:update']">修改</el-button>
               <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
@@ -105,7 +105,7 @@
         <!-- 列表 -->
         <el-table v-loading="loading" :data="list">
           <el-table-column label="商品信息" align="center" width="260">
-            <template slot-scope="scope">
+            <template v-slot="scope">
               <div class="product-info">
                 <img v-if="scope.row.picUrls" :src="scope.row.picUrls[0]" alt="分类图片" class="img-height"/>
                 <div class="message">{{ scope.row.name }}</div>
@@ -117,17 +117,17 @@
           <el-table-column label="销量" align="center" prop="salesCount"/>
           <el-table-column label="排序" align="center" prop="sort"/>
           <el-table-column label="创建时间" align="center" prop="createTime" width="180">
-            <template slot-scope="scope">
+            <template v-slot="scope">
               <span>{{ parseTime(scope.row.createTime) }}</span>
             </template>
           </el-table-column>
           <el-table-column label="状态" align="center" prop="status">
-            <template slot-scope="scope">
+            <template v-slot="scope">
               <dict-tag :type="DICT_TYPE.PRODUCT_SPU_STATUS" :value="scope.row.status"/>
             </template>
           </el-table-column>
           <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
-            <template slot-scope="scope">
+            <template v-slot="scope">
               <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
                          v-hasPermi="['product:spu:update']">修改</el-button>
               <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
@@ -142,7 +142,7 @@
         <!-- 列表 -->
         <el-table v-loading="loading" :data="list">
           <el-table-column label="商品信息" align="center" width="260">
-            <template slot-scope="scope">
+            <template v-slot="scope">
               <div class="product-info">
                 <img v-if="scope.row.picUrls" :src="scope.row.picUrls[0]" alt="分类图片" class="img-height"/>
                 <div class="message">{{ scope.row.name }}</div>
@@ -154,17 +154,17 @@
           <el-table-column label="销量" align="center" prop="salesCount"/>
           <el-table-column label="排序" align="center" prop="sort"/>
           <el-table-column label="创建时间" align="center" prop="createTime" width="180">
-            <template slot-scope="scope">
+            <template v-slot="scope">
               <span>{{ parseTime(scope.row.createTime) }}</span>
             </template>
           </el-table-column>
           <el-table-column label="状态" align="center" prop="status">
-            <template slot-scope="scope">
+            <template v-slot="scope">
               <dict-tag :type="DICT_TYPE.PRODUCT_SPU_STATUS" :value="scope.row.status"/>
             </template>
           </el-table-column>
           <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
-            <template slot-scope="scope">
+            <template v-slot="scope">
               <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
                          v-hasPermi="['product:spu:update']">修改</el-button>
               <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
@@ -179,7 +179,7 @@
         <!-- 列表 -->
         <el-table v-loading="loading" :data="list">
           <el-table-column label="商品信息" align="center" width="260">
-            <template slot-scope="scope">
+            <template v-slot="scope">
               <div class="product-info">
                 <img v-if="scope.row.picUrls" :src="scope.row.picUrls[0]" alt="分类图片" class="img-height"/>
                 <div class="message">{{ scope.row.name }}</div>
@@ -191,17 +191,17 @@
           <el-table-column label="销量" align="center" prop="salesCount"/>
           <el-table-column label="排序" align="center" prop="sort"/>
           <el-table-column label="创建时间" align="center" prop="createTime" width="180">
-            <template slot-scope="scope">
+            <template v-slot="scope">
               <span>{{ parseTime(scope.row.createTime) }}</span>
             </template>
           </el-table-column>
           <el-table-column label="状态" align="center" prop="status">
-            <template slot-scope="scope">
+            <template v-slot="scope">
               <dict-tag :type="DICT_TYPE.PRODUCT_SPU_STATUS" :value="scope.row.status"/>
             </template>
           </el-table-column>
           <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
-            <template slot-scope="scope">
+            <template v-slot="scope">
               <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
                          v-hasPermi="['product:spu:update']">修改</el-button>
               <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"

+ 11 - 11
yudao-ui-admin/src/views/mall/product/spu/save.vue

@@ -69,18 +69,18 @@
               <template v-if="this.specSwitch">
                 <el-table-column :key="index" v-for="(item, index) in dynamicSpec.filter(v => v.specName !== undefined)"
                                  :label="item.specName">
-                  <template slot-scope="scope">
+                  <template v-slot="scope">
                     <el-input v-if="scope.row.spec" v-model="scope.row.spec[index]" disabled/>
                   </template>
                 </el-table-column>
               </template>
               <el-table-column label="规格图片" width="120px" :render-header="addRedStar" key="90">
-                <template slot-scope="scope">
+                <template v-slot="scope">
                   <ImageUpload v-model="scope.row.picUrl" :limit="1" :isShowTip="false" style="width: 100px; height: 50px"/>
                 </template>
               </el-table-column>
               <el-table-column label="市场价(元)" :render-header="addRedStar" key="92">
-                <template slot-scope="scope">
+                <template v-slot="scope">
                   <el-form-item :prop="'rates.'+ scope.$index + '.marketPrice'" :rules="[{required: true, trigger: 'change'}]">
                     <el-input v-model="scope.row.marketPrice"
                               oninput="value= value.match(/\d+(\.\d{0,2})?/) ? value.match(/\d+(\.\d{0,2})?/)[0] : ''"/>
@@ -88,7 +88,7 @@
                 </template>
               </el-table-column>
               <el-table-column label="销售价(元)" :render-header="addRedStar" key="93">
-                <template slot-scope="scope">
+                <template v-slot="scope">
                   <el-form-item :prop="'rates.'+ scope.$index + '.price'"
                                 :rules="[{required: true, trigger: 'change'}]">
                     <el-input v-model="scope.row.price"
@@ -97,7 +97,7 @@
                 </template>
               </el-table-column>
               <el-table-column label="成本价" :render-header="addRedStar" key="94">
-                <template slot-scope="scope">
+                <template v-slot="scope">
                   <el-form-item :prop="'rates.'+ scope.$index + '.costPrice'"
                                 :rules="[{required: true, trigger: 'change'}]">
                     <el-input v-model="scope.row.costPrice"
@@ -106,35 +106,35 @@
                 </template>
               </el-table-column>
               <el-table-column label="库存" :render-header="addRedStar" key="95">
-                <template slot-scope="scope">
+                <template v-slot="scope">
                   <el-form-item :prop="'rates.'+ scope.$index + '.stock'" :rules="[{required: true, trigger: 'change'}]">
                     <el-input v-model="scope.row.stock" oninput="value=value.replace(/^(0+)|[^\d]+/g,'')"></el-input>
                   </el-form-item>
                 </template>
               </el-table-column>
               <el-table-column label="预警库存" key="96">
-                <template slot-scope="scope">
+                <template v-slot="scope">
                   <el-input v-model="scope.row.warnStock" oninput="value=value.replace(/^(0+)|[^\d]+/g,'')"></el-input>
                 </template>
               </el-table-column>
               <el-table-column label="体积" key="97">
-                <template slot-scope="scope">
+                <template v-slot="scope">
                   <el-input v-model="scope.row.volume" />
                 </template>
               </el-table-column>
               <el-table-column label="重量" key="98">
-                <template slot-scope="scope">
+                <template v-slot="scope">
                   <el-input v-model="scope.row.weight" />
                 </template>
               </el-table-column>
               <el-table-column label="条码" key="99">
-                <template slot-scope="scope">
+                <template v-slot="scope">
                   <el-input v-model="scope.row.barCode" />
                 </template>
               </el-table-column>
               <template v-if="this.specSwitch">
                 <el-table-column fixed="right" label="操作" width="50" key="100">
-                  <template slot-scope="scope">
+                  <template v-slot="scope">
                     <el-button @click="scope.row.status = 1" type="text" size="small"
                                v-show="scope.row.status === undefined || scope.row.status === 0 ">禁用
                     </el-button>

+ 6 - 6
yudao-ui-admin/src/views/mall/promotion/coupon/index.vue

@@ -30,32 +30,32 @@
       <el-table-column label="会员信息" align="center" prop="nickname" /> <!-- TODO 芋艿:以后支持头像,支持跳转 -->
       <el-table-column label="优惠劵" align="center" prop="name" />
       <el-table-column label="优惠券类型" align="center" prop="discountType">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <dict-tag :type="DICT_TYPE.PROMOTION_DISCOUNT_TYPE" :value="scope.row.discountType" />
         </template>
       </el-table-column>
       <el-table-column label="领取方式" align="center" prop="takeType">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <dict-tag :type="DICT_TYPE.PROMOTION_COUPON_TAKE_TYPE" :value="scope.row.takeType" />
         </template>
       </el-table-column>
       <el-table-column label="状态" align="center" prop="status">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <dict-tag :type="DICT_TYPE.PROMOTION_COUPON_STATUS" :value="scope.row.status" />
         </template>
       </el-table-column>
       <el-table-column label="领取时间" align="center" prop="createTime" width="180">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <span>{{ parseTime(scope.row.createTime) }}</span>
         </template>
       </el-table-column>
       <el-table-column label="使用时间" align="center" prop="useTime" width="180">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <span>{{ parseTime(scope.row.useTime) }}</span>
         </template>
       </el-table-column>
       <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
                      v-hasPermi="['promotion:coupon:delete']">回收</el-button>
         </template>

+ 4 - 4
yudao-ui-admin/src/views/mall/promotion/couponTemplate/index.vue

@@ -44,7 +44,7 @@
     <el-table v-loading="loading" :data="list">
       <el-table-column label="优惠券名称" align="center" prop="name" />
       <el-table-column label="优惠券类型" align="center" prop="discountType">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <dict-tag :type="DICT_TYPE.PROMOTION_DISCOUNT_TYPE" :value="scope.row.discountType" />
         </template>
       </el-table-column>
@@ -54,17 +54,17 @@
       <el-table-column label="领取上限" align="center" prop="takeLimitCount" :formatter="takeLimitCountFormat" />
       <el-table-column label="有效期限" align="center" prop="validityType" width="180" :formatter="validityTypeFormat" />
       <el-table-column label="状态" align="center" prop="status">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <el-switch v-model="scope.row.status" :active-value="0" :inactive-value="1" @change="handleStatusChange(scope.row)"/>
         </template>
       </el-table-column>
       <el-table-column label="创建时间" align="center" prop="createTime" width="180">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <span>{{ parseTime(scope.row.createTime) }}</span>
         </template>
       </el-table-column>
       <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
                      v-hasPermi="['promotion:coupon-template:update']">修改</el-button>
           <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"

+ 9 - 9
yudao-ui-admin/src/views/mall/promotion/discountActivity/index.vue

@@ -35,23 +35,23 @@
     <el-table v-loading="loading" :data="list">
       <el-table-column label="活动名称" align="center" prop="name" />
       <el-table-column label="活动时间" align="center" prop="startTime" width="240">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <div>开始:{{ parseTime(scope.row.startTime) }}</div>
           <div>结束:{{ parseTime(scope.row.endTime) }}</div>
         </template>
       </el-table-column>
       <el-table-column label="状态" align="center" prop="status">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <dict-tag :type="DICT_TYPE.PROMOTION_ACTIVITY_STATUS" :value="scope.row.status" />
         </template>
       </el-table-column>
       <el-table-column label="创建时间" align="center" prop="createTime" width="180">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <span>{{ parseTime(scope.row.createTime) }}</span>
         </template>
       </el-table-column>
       <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
                      v-if="scope.row.status !== PromotionActivityStatusEnum.CLOSE.type"
                      v-hasPermi="['promotion:discount-activity:update']">修改</el-button>
@@ -92,18 +92,18 @@
           </el-select>
           <el-table v-loading="loading" :data="form.products">
             <el-table-column label="商品名称" align="center" width="200">
-              <template slot-scope="scope">
+              <template v-slot="scope">
                 {{ scope.row.spuName }} &nbsp; {{ scope.row.name}}
               </template>
             </el-table-column>
             <el-table-column label="商品价格" align="center" prop="price">
-              <template slot-scope="scope">
+              <template v-slot="scope">
                 ¥{{ (scope.row.price / 100.0).toFixed(2) }}
               </template>
             </el-table-column>
             <el-table-column label="库存" align="center" prop="stock" />
             <el-table-column label="优惠类型" align="center" property="discountType">
-              <template slot-scope="scope">
+              <template v-slot="scope">
                 <el-select v-model="scope.row.discountType" placeholder="请选择优惠类型">
                   <el-option v-for="dict in getDictDatas(DICT_TYPE.PROMOTION_DISCOUNT_TYPE)"
                              :key="dict.value" :label="dict.label" :value="parseInt(dict.value)"/>
@@ -111,7 +111,7 @@
               </template>
             </el-table-column>
             <el-table-column label="优惠" align="center" prop="startTime" width="250">
-              <template slot-scope="scope">
+              <template v-slot="scope">
                 <el-form-item v-if="scope.row.discountType === PromotionDiscountTypeEnum.PRICE.type" prop="discountPrice">
                   减 <el-input-number v-model="scope.row.discountPrice" placeholder="请输入优惠金额"
                                       style="width: 190px" :precision="2" :min="0" :max="scope.row.price / 100.0 - 0.01" /> 元
@@ -123,7 +123,7 @@
               </template>
             </el-table-column>
             <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
-              <template slot-scope="scope">
+              <template v-slot="scope">
                 <el-button size="mini" type="text" icon="el-icon-delete" @click="removeFormSku(scope.row.skuId)">删除</el-button>
               </template>
             </el-table-column>

+ 4 - 4
yudao-ui-admin/src/views/mall/promotion/rewardActivity/index.vue

@@ -31,23 +31,23 @@
     <el-table v-loading="loading" :data="list">
       <el-table-column label="活动名称" align="center" prop="name" />
       <el-table-column label="活动时间" align="center" prop="startTime" width="240">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <div>开始:{{ parseTime(scope.row.startTime) }}</div>
           <div>结束:{{ parseTime(scope.row.endTime) }}</div>
         </template>
       </el-table-column>
       <el-table-column label="状态" align="center" prop="status">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <dict-tag :type="DICT_TYPE.PROMOTION_ACTIVITY_STATUS" :value="scope.row.status" />
         </template>
       </el-table-column>
       <el-table-column label="创建时间" align="center" prop="createTime" width="180">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <span>{{ parseTime(scope.row.createTime) }}</span>
         </template>
       </el-table-column>
       <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
                      v-if="scope.row.status !== PromotionActivityStatusEnum.CLOSE.type"
                      v-hasPermi="['promotion:reward-activity:update']">修改</el-button>

+ 11 - 11
yudao-ui-admin/src/views/mall/promotion/seckill/seckillActivity/index.vue

@@ -47,12 +47,12 @@
         <el-table v-loading="loading" :data="list">
             <el-table-column label="活动名称" align="center" prop="name" />
             <el-table-column label="活动状态" align="center" prop="status">
-                <template slot-scope="scope">
+                <template v-slot="scope">
                     <dict-tag :type="DICT_TYPE.PROMOTION_ACTIVITY_STATUS" :value="scope.row.status" />
                 </template>
             </el-table-column>
             <el-table-column label="参与场次" prop="timeIds" width="250">
-                <template slot-scope="scope">
+                <template v-slot="scope">
                     <span v-for="item in seckillTimeList" :key="item.id"
                         v-if="scope.row.timeIds.includes(item.id)">
                         <el-tag style="margin:4px;" size="small">{{ item.name }}</el-tag>
@@ -60,7 +60,7 @@
                 </template>
             </el-table-column>
             <el-table-column label="活动开始时间" align="center" prop="startTime" width="190">
-                <template slot-scope="scope">
+                <template v-slot="scope">
                     <span>{{ "开始: " + parseTime(scope.row.startTime) }}</span>
                     <span>{{ "结束: " + parseTime(scope.row.endTime) }}</span>
                 </template>
@@ -69,12 +69,12 @@
             <el-table-column label="付款订单数" align="center" prop="orderCount" />
             <el-table-column label="付款人数" align="center" prop="userCount" />
             <el-table-column label="创建时间" align="center" prop="createTime" width="180">
-                <template slot-scope="scope">
+                <template v-slot="scope">
                     <span>{{ parseTime(scope.row.createTime) }}</span>
                 </template>
             </el-table-column>
             <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
-                <template slot-scope="scope">
+                <template v-slot="scope">
                     <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
                         v-hasPermi="['promotion:seckill-activity:update']">修改</el-button>
                     <el-button size="mini" type="text" icon="el-icon-close" @click="handleClose(scope.row)"
@@ -137,37 +137,37 @@
                         <el-table-column type="selection" width="55">
                         </el-table-column>
                         <el-table-column label="商品名称" align="center" width="200">
-                            <template slot-scope="scope">
+                            <template v-slot="scope">
                                 {{ scope.row.spuName }} &nbsp; {{ scope.row.name }}
                             </template>
                         </el-table-column>
                         <el-table-column label="商品价格" align="center" prop="price">
-                            <template slot-scope="scope">
+                            <template v-slot="scope">
                                 ¥{{ (scope.row.price / 100.0).toFixed(2) }}
                             </template>
                         </el-table-column>
                         <el-table-column label="库存" align="center" prop="productStock" />
                         <el-table-column label="限购(0为不限购)" align="center" width="150">
-                            <template slot-scope="scope">
+                            <template v-slot="scope">
                                 <el-input-number v-model="scope.row.limitBuyCount" size="mini" :min="0" :max="10000">
                                 </el-input-number>
                             </template>
                         </el-table-column>
                         <el-table-column label="秒杀价(元)" align="center" width="150">
-                            <template slot-scope="scope">
+                            <template v-slot="scope">
                                 <el-input-number v-model="scope.row.seckillPrice" size="mini" :precision="2" :min="0"
                                     :max="10000">
                                 </el-input-number>
                             </template>
                         </el-table-column>
                         <el-table-column label="秒杀库存" align="center" width="150" prop="seckillStock">
-                            <template slot-scope="scope">
+                            <template v-slot="scope">
                                 <el-input-number v-model="scope.row.seckillStock" size="mini" :min="0" :max="10000">
                                 </el-input-number>
                             </template>
                         </el-table-column>
                         <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
-                            <template slot-scope="scope">
+                            <template v-slot="scope">
                                 <el-button size="mini" type="text" icon="el-icon-delete"
                                     @click="removeFormSku(scope.row.skuId)">删除
                                 </el-button>

+ 4 - 4
yudao-ui-admin/src/views/mall/promotion/seckill/seckillTime/index.vue

@@ -14,23 +14,23 @@
     <el-table v-loading="loading" :data="list">
       <el-table-column label="秒杀时段名称" align="center" prop="name" />
       <el-table-column label="开始时间点" align="center" prop="startTime" width="180">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <span>{{ scope.row.startTime }}</span>
         </template>
       </el-table-column>
       <el-table-column label="结束时间点" align="center" prop="endTime" width="180">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <span>{{ scope.row.endTime }}</span>
         </template>
       </el-table-column>
       <el-table-column label="秒杀活动数量" align="center" prop="seckillActivityCount" />
       <el-table-column label="创建时间" align="center" prop="createTime" width="180">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <span>{{ parseTime(scope.row.createTime) }}</span>
         </template>
       </el-table-column>
       <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <el-button size="mini" type="text" icon="el-icon-view" @click="handleOpenSeckillActivity(scope.row)">
             查看秒杀活动</el-button>
           <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"

+ 1 - 1
yudao-ui-admin/src/views/mall/trade/afterSale/index.vue

@@ -57,7 +57,7 @@
       <el-table-column label="订单编号" align="center" prop="orderNo" /> <!-- TODO 芋艿:未来要加个订单链接 -->
       <el-table-column label="商品信息" align="center" prop="spuName" width="auto" min-width="300">
         <!-- TODO @小红:样式不太对,辛苦改改 -->
-<!--        <div slot-scope="{ row }" class="goods-info">-->
+<!--        <div v-slot="{ row }" class="goods-info">-->
 <!--          <img :src="row.picUrl"/>-->
 <!--          <span class="ellipsis-2" :title="row.name">{{row.name}}</span>-->
 <!--        </div>-->

+ 4 - 4
yudao-ui-admin/src/views/mall/trade/order/detail.vue

@@ -56,25 +56,25 @@
       <el-descriptions-item labelClassName="no-colon">
         <el-table :data="order.items" border>
           <el-table-column prop="spuName" label="商品" width="700">
-            <template slot-scope="{ row }">
+            <template v-slot="{ row }">
               {{row.spuName}}
               <el-tag size="medium" v-for="property in row.properties" :key="property.propertyId">
                 {{property.propertyName}}:{{property.valueName}}</el-tag>
             </template>
           </el-table-column>
           <el-table-column prop="originalUnitPrice" label="单价(元)" width="180">
-            <template slot-scope="{ row }">
+            <template v-slot="{ row }">
               ¥{{ (row.originalUnitPrice / 100.0).toFixed(2) }}
             </template>
           </el-table-column>
           <el-table-column prop="count" label="数量" width="180"/>
           <el-table-column prop="originalPrice" label="小计(元)" width="180">
-            <template slot-scope="{ row }">
+            <template v-slot="{ row }">
               ¥{{ (row.originalPrice / 100.0).toFixed(2) }}
             </template>
           </el-table-column>
           <el-table-column prop="afterSaleStatus" label="退款状态">
-            <template slot-scope="{ row }">
+            <template v-slot="{ row }">
               <dict-tag :type="DICT_TYPE.TRADE_ORDER_ITEM_AFTER_SALE_STATUS" :value="row.afterSaleStatus" />
             </template>
           </el-table-column>

+ 4 - 4
yudao-ui-admin/src/views/mall/trade/order/index.vue

@@ -71,7 +71,7 @@
         <!-- 列表 -->
         <el-table v-loading="loading" :data="list" :show-header="false" class="order-table">
           <el-table-column>
-            <template slot-scope="{ row }">
+            <template v-slot="{ row }">
               <el-row type="flex" align="middle">
                 <el-col :span="5">
                   订单号:{{row.no}}
@@ -94,7 +94,7 @@
               <!-- 订单下的商品 -->
               <el-table :data="row.items" border :show-header="true">
                 <el-table-column label="商品" prop="goods" header-align="center" width="auto" min-width="300">
-                  <template slot-scope="{ row, $index }">
+                  <template v-slot="{ row, $index }">
                     <div class="goods-info">
                       <img :src="row.picUrl"/>
                       <span class="ellipsis-2" :title="row.spuName">{{row.spuName}}</span>
@@ -105,7 +105,7 @@
                   </template>
                 </el-table-column>
                 <el-table-column label="单价(元)/数量" prop="fee" align="center" width="115">
-                  <template slot-scope="{ row }">
+                  <template v-slot="{ row }">
                     <div>¥{{ (row.originalUnitPrice / 100.0).toFixed(2) }}</div>
                     <div>{{row.count}} 件</div>
                   </template>
@@ -114,7 +114,7 @@
                 <el-table-column label="实付金额(元)" prop="amount" align="center" width="100"/>
                 <!-- TODO @小程:这里应该是一个订单下,多个商品,只展示订单上的收件信息;使用 order.receiverXXX 开头的字段 -->
                 <el-table-column label="买家/收货人" prop="buyer" header-align="center" width="auto" min-width="300">
-                  <template slot-scope="{ row }">
+                  <template v-slot="{ row }">
                     <!-- TODO @芋艿:以后增加一个会员详情界面 -->
                     <div>{{row.buyer}}</div>
                     <div>{{row.receiver}}{{row.tel}}</div>

+ 2 - 2
yudao-ui-admin/src/views/mp/account/index.vue

@@ -44,12 +44,12 @@
       </el-table-column>
       <el-table-column label="备注" align="center" prop="remark"/>
 <!--      <el-table-column label="创建时间" align="center" prop="createTime" width="180">-->
-<!--        <template slot-scope="scope">-->
+<!--        <template v-slot="scope">-->
 <!--          <span>{{ parseTime(scope.row.createTime) }}</span>-->
 <!--        </template>-->
 <!--      </el-table-column>-->
       <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
                      v-hasPermi="['mp:account:update']">修改
           </el-button>

+ 3 - 3
yudao-ui-admin/src/views/mp/autoReply/index.vue

@@ -79,7 +79,7 @@ SOFTWARE.
         </template>
       </el-table-column>
       <el-table-column label="回复内容" align="center">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <div v-if="scope.row.responseMessageType === 'text'">{{ scope.row.responseContent }}</div>
           <div v-else-if="scope.row.responseMessageType === 'voice'">
             <wx-voice-player :url="scope.row.responseMediaUrl" />
@@ -103,12 +103,12 @@ SOFTWARE.
         </template>
       </el-table-column>
       <el-table-column label="创建时间" align="center" prop="createTime" width="180">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <span>{{ parseTime(scope.row.createTime) }}</span>
         </template>
       </el-table-column>
       <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
                      v-hasPermi="['mp:auto-reply:update']">修改
           </el-button>

+ 1 - 1
yudao-ui-admin/src/views/mp/material/index.vue

@@ -94,7 +94,7 @@ SOFTWARE.
             </template>
           </el-table-column>
           <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
-            <template slot-scope="scope">
+            <template v-slot="scope">
               <el-button type="text" icon="el-icon-download" size="small" plain @click="handleDownload(scope.row)">下载</el-button>
               <el-button type="text" icon="el-icon-delete" size="small" plain @click="handleDelete(scope.row)"
                          v-hasPermi="['mp:material:delete']">删除</el-button>

+ 4 - 4
yudao-ui-admin/src/views/mp/message/index.vue

@@ -37,20 +37,20 @@
     <!-- 列表 -->
     <el-table v-loading="loading" :data="list">
       <el-table-column label="发送时间" align="center" prop="createTime" width="180">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <span>{{ parseTime(scope.row.createTime) }}</span>
         </template>
       </el-table-column>
       <el-table-column label="消息类型" align="center" prop="type" width="80"/>
       <el-table-column label="发送方" align="center" prop="sendFrom" width="80">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <el-tag v-if="scope.row.sendFrom === 1" type="success">粉丝</el-tag>
           <el-tag v-else type="info">公众号</el-tag>
         </template>
       </el-table-column>
       <el-table-column label="用户标识" align="center" prop="openid" width="300" />
       <el-table-column label="内容" prop="content">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <!-- 【事件】区域 -->
           <div v-if="scope.row.type === 'event' && scope.row.event === 'subscribe'">
             <el-tag type="success" size="mini">关注</el-tag>
@@ -118,7 +118,7 @@
         </template>
       </el-table-column>
       <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <el-button size="mini" type="text" icon="el-icon-edit" @click="handleSend(scope.row)"
                      v-hasPermi="['mp:message:send']">消息
           </el-button>

+ 4 - 4
yudao-ui-admin/src/views/mp/mpuser/index.vue

@@ -38,25 +38,25 @@
       <el-table-column label="昵称" align="center" prop="nickname" />
       <el-table-column label="备注" align="center" prop="remark" />
       <el-table-column label="标签" align="center" prop="tagIds" width="200">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <span v-for="(tagId, index) in scope.row.tagIds" :key="index">
             <el-tag>{{ tags.find(tag => tag.tagId === tagId)?.name }} </el-tag>&nbsp;
           </span>
         </template>
       </el-table-column>
       <el-table-column label="订阅状态" align="center" prop="subscribeStatus">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <el-tag v-if="scope.row.subscribeStatus === 0" type="success">已订阅</el-tag>
           <el-tag v-else type="danger">未订阅</el-tag>
         </template>
       </el-table-column>
       <el-table-column label="订阅时间" align="center" prop="subscribeTime" width="180">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <span>{{ parseTime(scope.row.subscribeTime) }}</span>
         </template>
       </el-table-column>
       <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
                      v-hasPermi="['mp:user:update']">修改</el-button>
         </template>

+ 2 - 2
yudao-ui-admin/src/views/mp/tag/index.vue

@@ -39,12 +39,12 @@
       <el-table-column label="标签名称" align="center" prop="name"/>
       <el-table-column label="粉丝数" align="center" prop="count"/>
       <el-table-column label="创建时间" align="center" prop="createTime" width="180">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <span>{{ parseTime(scope.row.createTime) }}</span>
         </template>
       </el-table-column>
       <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
                      v-hasPermi="['mp:tag:update']">修改
           </el-button>

+ 3 - 3
yudao-ui-admin/src/views/system/notify/my/index.vue

@@ -36,7 +36,7 @@
       <el-table-column type="selection" width="55" />
       <el-table-column label="发送人" align="center" prop="templateNickname" width="120" />
       <el-table-column label="发送时间" align="center" prop="createTime" width="180">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <span>{{ parseTime(scope.row.createTime) }}</span>
         </template>
       </el-table-column>
@@ -47,12 +47,12 @@
       </el-table-column>
       <el-table-column label="内容" align="center" prop="templateContent" />
       <el-table-column label="是否已读" align="center" prop="readStatus" width="80">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <dict-tag :type="DICT_TYPE.INFRA_BOOLEAN_STRING" :value="scope.row.readStatus"/>
         </template>
       </el-table-column>
       <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="150">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <el-button v-show="!scope.row.readStatus" size="mini" type="text" icon="el-icon-check" @click="handleUpdateSingle(scope.row)">已读</el-button>
         </template>
       </el-table-column>

+ 3 - 3
yudao-ui-admin/src/views/system/notify/template/index.vue

@@ -47,18 +47,18 @@
       <el-table-column label="发送人名称" align="center" prop="nickname" />
       <el-table-column label="模板内容" align="center" prop="content" width="300" />
       <el-table-column label="开启状态" align="center" prop="status">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <dict-tag :type="DICT_TYPE.COMMON_STATUS" :value="scope.row.status"/>
         </template>
       </el-table-column>
       <el-table-column label="备注" align="center" prop="remark" />
       <el-table-column label="创建时间" align="center" prop="createTime" width="180">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <span>{{ parseTime(scope.row.createTime) }}</span>
         </template>
       </el-table-column>
       <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="150">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <el-button size="mini" type="text" icon="el-icon-share" @click="handleSendNotify(scope.row)"
                      v-hasPermi="['system:notify-template:send-notify']">测试</el-button>
           <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"

+ 4 - 4
yudao-ui-admin/src/views/system/role/index.vue

@@ -43,23 +43,23 @@
       <el-table-column label="角色名称" prop="name" :show-overflow-tooltip="true" width="150" />
       <el-table-column label="角色标识" prop="code" :show-overflow-tooltip="true" width="150" />
       <el-table-column label="角色类型" prop="type" width="80">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <dict-tag :type="DICT_TYPE.SYSTEM_ROLE_TYPE" :value="scope.row.type"/>
         </template>
       </el-table-column>
       <el-table-column label="显示顺序" prop="sort" width="100" />
       <el-table-column label="状态" align="center" width="100">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <el-switch v-model="scope.row.status" :active-value="0" :inactive-value="1" @change="handleStatusChange(scope.row)"/>
         </template>
       </el-table-column>
       <el-table-column label="创建时间" align="center" prop="createTime" width="180">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <span>{{ parseTime(scope.row.createTime) }}</span>
         </template>
       </el-table-column>
       <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
-        <template slot-scope="scope">
+        <template v-slot="scope">
           <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
                      v-hasPermi="['system:role:update']">修改</el-button>
           <el-button size="mini" type="text" icon="el-icon-circle-check" @click="handleMenu(scope.row)"