Browse Source

Merge branch 'dev' of http://git.ycjcjy.com/SpaceOfCheng/admin into dev

keyman1995 6 years ago
parent
commit
37a52c102f

+ 1
- 1
src/pages/system/channelManager/channelList/index.vue View File

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

+ 9
- 1
src/pages/system/newOrder/caseRecord/index.vue View File

3
     <div class="system-table-search">
3
     <div class="system-table-search">
4
       <div class="flex-h">
4
       <div class="flex-h">
5
         <div class="flex-item flex-h">
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
         </div>
7
         </div>
8
         <ul>
8
         <ul>
9
           <li>
9
           <li>
214
     handleReport (row) {
214
     handleReport (row) {
215
       this.GetOrdersByRecord({id: row.RecordId, callback: this.ordersExport})
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
   mounted () {
226
   mounted () {
219
     this.getList()
227
     this.getList()