wangfei 6 år sedan
förälder
incheckning
3df061be68

+ 1
- 1
src/pages/system/channelManager/channelList/index.vue Visa fil

@@ -124,7 +124,7 @@ export default {
124 124
       this.$router.push({ name: 'editChannel', query: { id: row.ChannelId } })
125 125
     },
126 126
     handleDelete (index, row) { // 删除
127
-      let name = '确认删除渠道“' + row.ChannelName + '”?'
127
+      let name = '确定删除此数据?'
128 128
       this.$confirm(name, '提示', {
129 129
         confirmButtonText: '确定',
130 130
         cancelButtonText: '取消',

+ 9
- 1
src/pages/system/newOrder/caseRecord/index.vue Visa fil

@@ -3,7 +3,7 @@
3 3
     <div class="system-table-search">
4 4
       <div class="flex-h">
5 5
         <div class="flex-item flex-h">
6
-          <el-button size="mini" type="success" @click='addVisible = true'>新增</el-button>
6
+          <el-button size="mini" type="success" @click='handleAdd'>新增</el-button>
7 7
         </div>
8 8
         <ul>
9 9
           <li>
@@ -214,6 +214,14 @@ export default {
214 214
     handleReport (row) {
215 215
       this.GetOrdersByRecord({id: row.RecordId, callback: this.ordersExport})
216 216
     },
217
+    handleAdd () {
218
+      this.detail = {
219
+        CaseId: '',
220
+        Month: '',
221
+        Num: 0,
222
+      }
223
+      this.addVisible = true
224
+    }
217 225
   },
218 226
   mounted () {
219 227
     this.getList()