This commit is contained in:
hezhengao 2024-04-15 14:54:03 +08:00
parent f194291538
commit 93e60dbc04
2 changed files with 5 additions and 5 deletions

View File

@ -14,7 +14,7 @@
</template> </template>
<script> <script>
import logoImg from '@/assets/logo/logo.png' import logoImg from '@/assets/images/logo.jpg'
import variables from '@/assets/styles/variables.scss' import variables from '@/assets/styles/variables.scss'
export default { export default {

View File

@ -164,7 +164,7 @@ export default {
// //
openerweima(row) { openerweima(row) {
this.titles=row.projectName 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 this.codeOpen = true
}, },
@ -204,7 +204,7 @@ export default {
handleAdd() { handleAdd() {
this.reset(); this.reset();
this.open = true; this.open = true;
this.title = "添加微信用户"; this.title = "添加项目";
}, },
/** 修改按钮操作 */ /** 修改按钮操作 */
handleUpdate(row) { handleUpdate(row) {
@ -213,7 +213,7 @@ export default {
getProject(id).then(response => { getProject(id).then(response => {
this.form = response.data; this.form = response.data;
this.open = true; this.open = true;
this.title = "修改微信用户"; this.title = "修改项目";
}); });
}, },
/** 提交按钮 */ /** 提交按钮 */
@ -239,7 +239,7 @@ export default {
/** 删除按钮操作 */ /** 删除按钮操作 */
handleDelete(row) { handleDelete(row) {
const ids = row.id || this.ids; const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除微信用户编号为"' + ids + '"的数据项?').then(function () { this.$modal.confirm('是否确认删除数据项?').then(function () {
return delProject(ids); return delProject(ids);
}).then(() => { }).then(() => {
this.getList(); this.getList();