Changes
This commit is contained in:
parent
f194291538
commit
93e60dbc04
|
@ -14,7 +14,7 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import logoImg from '@/assets/logo/logo.png'
|
||||
import logoImg from '@/assets/images/logo.jpg'
|
||||
import variables from '@/assets/styles/variables.scss'
|
||||
|
||||
export default {
|
||||
|
|
|
@ -164,7 +164,7 @@ export default {
|
|||
//二维码
|
||||
openerweima(row) {
|
||||
this.titles=row.projectName
|
||||
this.texturl = `http://58.223.177.154:8082?id=${row.id}`
|
||||
this.texturl = `https://xiaofangweibao.jsxinyuansu.com/pages/index?id=${row.id}`
|
||||
this.codeOpen = true
|
||||
},
|
||||
|
||||
|
@ -204,7 +204,7 @@ export default {
|
|||
handleAdd() {
|
||||
this.reset();
|
||||
this.open = true;
|
||||
this.title = "添加微信用户";
|
||||
this.title = "添加项目";
|
||||
},
|
||||
/** 修改按钮操作 */
|
||||
handleUpdate(row) {
|
||||
|
@ -213,7 +213,7 @@ export default {
|
|||
getProject(id).then(response => {
|
||||
this.form = response.data;
|
||||
this.open = true;
|
||||
this.title = "修改微信用户";
|
||||
this.title = "修改项目";
|
||||
});
|
||||
},
|
||||
/** 提交按钮 */
|
||||
|
@ -239,7 +239,7 @@ export default {
|
|||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
const ids = row.id || this.ids;
|
||||
this.$modal.confirm('是否确认删除微信用户编号为"' + ids + '"的数据项?').then(function () {
|
||||
this.$modal.confirm('是否确认删除数据项?').then(function () {
|
||||
return delProject(ids);
|
||||
}).then(() => {
|
||||
this.getList();
|
||||
|
|
Loading…
Reference in New Issue