Skip to content

Commit c125376

Browse files
YunaiVgitee-org
authored andcommitted
!173 fix ui-admin warning
Merge pull request !173 from supine-win/master
2 parents c113423 + 4eaa025 commit c125376

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

src/views/bpm/processInstance/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
</el-table-column>
5959
<el-table-column label="当前审批任务" align="center" prop="tasks">
6060
<template slot-scope="scope">
61-
<el-button v-for="task in scope.row.tasks" type="text" @click="handleFormDetail(task.id)">
61+
<el-button v-for="task in scope.row.tasks" :key="task.id" type="text" @click="handleFormDetail(task.id)">
6262
<span>{{ task.name }}</span>
6363
</el-button>
6464
</template>

src/views/bpm/taskAssignRule/taskAssignRuleDialog.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</el-table-column>
1313
<el-table-column label="规则范围" align="center" prop="options" width="440px">
1414
<template slot-scope="scope">
15-
<el-tag size="medium" v-if="scope.row.options" v-for="option in scope.row.options">
15+
<el-tag size="medium" v-if="scope.row.options" :key="option" v-for="option in scope.row.options">
1616
{{ getAssignRuleOptionName(scope.row.type, option) }}
1717
</el-tag>
1818
</template>

src/views/pay/refund/index.vue

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
<!-- <el-table-column label="商户名称" align="center" prop="merchantName" width="120"/>-->
7575
<!-- <el-table-column label="应用名称" align="center" prop="appName" width="120"/>-->
7676
<el-table-column label="支付渠道" align="center" width="130">
77-
<template v-slot="scope">
77+
<template slot-scope="scope">
7878
<el-popover trigger="hover" placement="top">
7979
<p>商户名称: {{ scope.row.merchantName }}</p>
8080
<p>应用名称: {{ scope.row.appName }}</p>
@@ -88,7 +88,7 @@
8888
<!-- <el-table-column label="交易订单号" align="center" prop="tradeNo" width="140"/>-->
8989
<!-- <el-table-column label="商户订单编号" align="center" prop="merchantOrderId" width="140"/>-->
9090
<el-table-column label="商户订单号" align="left" width="230">
91-
<template v-slot="scope">
91+
<template slot-scope="scope">
9292
<p class="order-font">
9393
<el-tag size="mini">退款</el-tag>
9494
{{ scope.row.merchantRefundNo }}
@@ -100,7 +100,7 @@
100100
</template>
101101
</el-table-column>
102102
<el-table-column label="支付订单号" align="center" prop="merchantRefundNo" width="250">
103-
<template v-slot="scope">
103+
<template slot-scope="scope">
104104
<p class="order-font">
105105
<el-tag size="mini">交易</el-tag>
106106
{{ scope.row.tradeNo }}
@@ -112,7 +112,7 @@
112112
</template>
113113
</el-table-column>
114114
<el-table-column label="支付金额(元)" align="center" prop="payAmount" width="100">
115-
<template v-slot="scope" class="">
115+
<template slot-scope="scope" class="">
116116
¥{{ parseFloat(scope.row.payAmount / 100).toFixed(2) }}
117117
</template>
118118
</el-table-column>
@@ -122,17 +122,17 @@
122122
</template>
123123
</el-table-column>
124124
<el-table-column label="退款类型" align="center" prop="type" width="80">
125-
<template v-slot="scope">
125+
<template slot-scope="scope">
126126
<dict-tag :type="DICT_TYPE.PAY_REFUND_ORDER_TYPE" :value="scope.row.type" />
127127
</template>
128128
</el-table-column>
129129
<el-table-column label="退款状态" align="center" prop="status">
130-
<template v-slot="scope">
130+
<template slot-scope="scope">
131131
<dict-tag :type="DICT_TYPE.PAY_REFUND_ORDER_STATUS" :value="scope.row.status" />
132132
</template>
133133
</el-table-column>
134134
<el-table-column label="回调状态" align="center" prop="notifyStatus">
135-
<template v-slot="scope">
135+
<template slot-scope="scope">
136136
<dict-tag :type="DICT_TYPE.PAY_ORDER_NOTIFY_STATUS" :value="scope.row.notifyStatus" />
137137
</template>
138138
</el-table-column>
@@ -183,7 +183,7 @@
183183
<el-tag class="tag-purple" size="mini">{{ parseFloat(refundDetail.refundAmount / 100).toFixed(2) }}</el-tag>
184184
</el-descriptions-item>
185185
<el-descriptions-item label="退款类型">
186-
<template v-slot="scope">
186+
<template slot-scope="scope">
187187
<dict-tag :type="DICT_TYPE.PAY_REFUND_ORDER_TYPE" :value="refundDetail.type" />
188188
</template>
189189
</el-descriptions-item>

src/views/system/oauth2/client/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
</el-table-column>
5151
<el-table-column label="授权类型" align="center" prop="authorizedGrantTypes">
5252
<template slot-scope="scope">
53-
<el-tag :disable-transitions="true" v-for="(authorizedGrantType, index) in scope.row.authorizedGrantTypes" :index="index">
53+
<el-tag :disable-transitions="true" :key="index" v-for="(authorizedGrantType, index) in scope.row.authorizedGrantTypes" :index="index">
5454
{{ authorizedGrantType }}
5555
</el-tag>
5656
</template>

src/views/system/sensitiveWord/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<el-table-column label="描述" align="center" prop="description"/>
5555
<el-table-column label="标签" align="center" prop="tags">
5656
<template slot-scope="scope">
57-
<el-tag :disable-transitions="true" v-for="(tag, index) in scope.row.tags" :index="index">
57+
<el-tag :disable-transitions="true" :key="index" v-for="(tag, index) in scope.row.tags" :index="index">
5858
{{ tag }}
5959
</el-tag>
6060
</template>

src/views/system/sms/smsTemplate.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@
147147
<el-form-item label="手机号" prop="mobile">
148148
<el-input v-model="sendSmsForm.mobile" placeholder="请输入手机号" />
149149
</el-form-item>
150-
<el-form-item v-for="param in sendSmsForm.params" :label="'参数 {' + param + '}'" :prop="'templateParams.' + param">
150+
<el-form-item v-for="param in sendSmsForm.params" :key="param" :label="'参数 {' + param + '}'" :prop="'templateParams.' + param">
151151
<el-input v-model="sendSmsForm.templateParams[param]" :placeholder="'请输入 ' + param + ' 参数'" />
152152
</el-form-item>
153153
</el-form>

0 commit comments

Comments
 (0)